Re: [users@httpd] php admin value ignored

2012-05-16 Thread Nick Edwards
OMFG! thank you! the vhost log value was owne rwx--, after setting 1770, the scripts works happily. Thanks Nik On 5/16/12, Noel Butler wrote: > If you have it defined to use /srv/foo.net/tmp/ and it wants to > use /tmp it's probably because httpd/php can't write to that directory, > check

Re: [users@httpd] php admin value ignored

2012-05-15 Thread Noel Butler
If you have it defined to use /srv/foo.net/tmp/ and it wants to use /tmp it's probably because httpd/php can't write to that directory, check your permissions, set 1770 on /srv/foo.net/tmp/ On Tue, 2012-05-15 at 17:26 +1000, Nick Edwards wrote: > Hi, > > Although I did not include it in my s

Re: [users@httpd] php admin value ignored

2012-05-15 Thread Nick Edwards
Hi, Although I did not include it in my snippage, I already have php_admin_value session.save_path /srv/foo.net/sess/ Should it make a difference if thats not the same as tmp ? Thanks. On 5/15/12, Alex Domoradov wrote: > Try to something like this > > php_admin_value open_basedir /usr/local/

Re: [users@httpd] php admin value ignored

2012-05-15 Thread Alex Domoradov
Try to something like this php_admin_value open_basedir /usr/local/lib/php/:/srv/foo.net/ php_admin_value upload_tmp_dir /srv/foo.net/tmp/ php_admin_value session.save_path /srv/foo.net/tmp/ On Tue, May 15, 2012 at 9:46 AM, Nick Edwards wrote: > Hi, > > in httpd.conf each virtual host has > ...

[users@httpd] php admin value ignored

2012-05-14 Thread Nick Edwards
Hi, in httpd.conf each virtual host has ... php_admin_value open_basedir "/usr/local/lib/php/:/srv/foo.net/" php_admin_value upload_tmp_dir /srv/foo.net/tmp/ ... But a phpmailer script is complain PHP Warning: Unknown: open_basedir restriction in effect. File(/tmp) is not within the allowed pat