Re: [PHP] /etc/php.init changes not honored

2008-01-14 Thread Richard Lynch
In phpinfo() output, PHP tells you where it is looking for its php.ini file. If you aren't changing a php.ini file in that location, then PHP isn't going to see it... On Thu, January 10, 2008 4:59 pm, Ryan H. Madison wrote: Hello, I am trying to increase upload_max_filesize beyond

RE: [PHP] /etc/php.init changes not honored

2008-01-11 Thread Jürgen Wind
I do not see an entry stating Loaded Configuration File in the output this only available since php 5.2 (iirc) -- View this message in context: http://www.nabble.com/-etc-php.init-changes-not-honored-tp14746039p14759509.html Sent from the PHP - General mailing list archive at Nabble.com. --

[PHP] /etc/php.init changes not honored

2008-01-10 Thread Ryan H. Madison
Hello, I am trying to increase upload_max_filesize beyond the 2M limit. I've set this in my /etc/php.ini file, but every time I look at the output of phpinfo(); the changes I make in /etc/php.init don't seem to be honored. This isn't limited to upload_max_filesize, I've changed

Re: [PHP] /etc/php.init changes not honored

2008-01-10 Thread Wolf
reload apache Ryan H. Madison [EMAIL PROTECTED] wrote: Hello, I am trying to increase upload_max_filesize beyond the 2M limit. I've set this in my /etc/php.ini file, but every time I look at the output of phpinfo(); the changes I make in /etc/php.init don't seem to

Re: [PHP] /etc/php.init changes not honored

2008-01-10 Thread Wolf
restart the server process that is reading it, otherwise the server is using the original settings. You can do some override by using the .htaccess file and setting specific things in specific folders, but if you are setting global changes, you have to restart the server process for the

RE: [PHP] /etc/php.init changes not honored

2008-01-10 Thread Ryan H. Madison
, January 10, 2008 3:04 PM To: Ryan H. Madison Cc: php-general@lists.php.net Subject: Re: [PHP] /etc/php.init changes not honored reload apache Ryan H. Madison [EMAIL PROTECTED] wrote: Hello, I am trying to increase upload_max_filesize beyond the 2M limit. I've set

Re: [PHP] /etc/php.init changes not honored

2008-01-10 Thread Eric Butera
On Jan 10, 2008 5:59 PM, Ryan H. Madison [EMAIL PROTECTED] wrote: Hello, I am trying to increase upload_max_filesize beyond the 2M limit. I've set this in my /etc/php.ini file, but every time I look at the output of phpinfo(); the changes I make in /etc/php.init don't seem to be

Re: [PHP] /etc/php.init changes not honored

2008-01-10 Thread Daniel Brown
On Jan 10, 2008 6:09 PM, Ryan H. Madison [EMAIL PROTECTED] wrote: Done several times in several different ways. - Same result in the phpinfo.php output. $ sudo apachectl graceful $ sudo apachectl stop $ sudo apachectl start $ sudo service httpd restart Stopping httpd:

RE: [PHP] /etc/php.init changes not honored

2008-01-10 Thread Ryan H. Madison
-Original Message- From: Eric Butera [mailto:[EMAIL PROTECTED] Sent: Thursday, January 10, 2008 3:16 PM To: Ryan H. Madison Cc: php-general@lists.php.net Subject: Re: [PHP] /etc/php.init changes not honored On Jan 10, 2008 5:59 PM, Ryan H. Madison [EMAIL PROTECTED] wrote: Hello