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
Comment #1
moshe weitzman@drupal.org commentedit 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.
Comment #2
moshe weitzman@drupal.org commentedand google on the error mentioned - open_basedir restriction in effect
Comment #3
fellow commentedThank 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!
Comment #4
maksimova commentedI 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
Comment #5
snlnz commentedthis 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.
Comment #6
rameshbabu.g commentedComment #7
sgwood commentedchanged "/tmp" to "tmp" in the D7 directory admin/config/media/file-system.
this solved the issue for me
Comment #8
chlee commented#7 Did the trick for me as well.