devastator82 wrote
Thank you very much for suggestions.
I have set open base dir inside htdocs folder, and upload tmp folder inside.
Now uploads working properly.
Glad you fixed your issue. I'm guessing you'll find information related to your error in your PHP error logfile also. I refer to it often when writing code lol.
I set up Abyss to use a custom PHP error file. When setting up the interpreter, I use something like this in the "Arguments" section:
-d error_log=/public_html/logs/mysite-php_errors.log -d cgi.fix_pathinfo=0 -d upload_tmp_dir=/public_html/mysite/temp
(Note that you *might* have to list the logfile directory in the open_basedir setting...)
The benefit of doing it this way is that the logfile will be time-stamped. That helps me to know what errors were added most recently.
Notice I set the upload temp directory as an argument as well. You can set almost any PHP.ini setting in a per-host manner using arguments.