After installing the module (step by step: INSTALL.txt), and runing cron, I got:

warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../a) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.
warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../b) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.
warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../c) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.
warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../d) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.
warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../e) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.
....
warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../7) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.
warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../8) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.
warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/tmp/../9) is not within the allowed path(s): (/home/:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/public_html/includes/file.inc on line 641.

Comments

moshe weitzman@drupal.org’s picture

Status: Active » Closed (fixed)

it doesn't like the default /tmp dir. change that value to something in your own dir. you will likely have to create the dir and give permissions to apache to write there. sorry, no more help now.

moshe weitzman@drupal.org’s picture

and google on the error mentioned - open_basedir restriction in effect

fellow’s picture

Thank you moshe weitzman!!

I tried to create a folder "tmp2" in files dir., but unfortunately I got much more errors (including these) than before.

Thanks anyway!

maksimova’s picture

I had such message, move my drupal 5.5 from one server to another. I correct this problem with creating directory files/image/tmp chmod 777

snlnz’s picture

this worked for me. Thanks had me quite stumped but as soon as I checked the files path there wasn't a image/tmp folder so created it and set permissions then all was fine again.

Drupal 6.22
Issues was being targeted at ckeditor module.

rameshbabu.g’s picture

sgwood’s picture

changed "/tmp" to "tmp" in the D7 directory admin/config/media/file-system.
this solved the issue for me

chlee’s picture

#7 Did the trick for me as well.