PHP sessions is failing to write on my websites on my server. Also, using a ftp script with ftp module, my server does not seem to recognize the server output. I think it's an issue with my server tmp file, but my sys admin says it's fine....However, unless I supress session data with @ I get errors. Sooo, how can I create a tmp folder for just the domain I am having issues with? Is that a php.ini, httpd.conf or can it be done though htaccess?
Hello, You should be able to do that in httpd.conf or php.ini. This is the value you may need to change: session.save_path = "/the/tmp/folder" You will need to make sure that /the/tmp/folder is CHMOD 0777. Jay
It may be, using the php_value Code (markup): php_admin_value Code (markup): php_admin_flag Code (markup): flags in your .htaccess file. Jay