I ian0366 Verified User Joined May 21, 2005 Messages 10 Aug 2, 2005 #1 I need to check that LimitRequestBody is set to "0" in the php.conf. Could someone tell me the path via ssh. I can't seem to locate it thanks ian
I need to check that LimitRequestBody is set to "0" in the php.conf. Could someone tell me the path via ssh. I can't seem to locate it thanks ian
jmstacey Verified User Joined Feb 12, 2004 Messages 3,887 Location Colorado Aug 3, 2005 #2 It's usually /usr/local/lib/php.ini You can also use ini_get(); from within your php scripts to retrieve php setting from the php.ini HOWEVER, LimitRequestBody, is an Apache configuration: http://httpd.apache.org/docs/2.0/mod/core.html#limitrequestbody Apache's config can usually be found in /etc/httpd/conf/httpd.conf Last edited: Aug 3, 2005
It's usually /usr/local/lib/php.ini You can also use ini_get(); from within your php scripts to retrieve php setting from the php.ini HOWEVER, LimitRequestBody, is an Apache configuration: http://httpd.apache.org/docs/2.0/mod/core.html#limitrequestbody Apache's config can usually be found in /etc/httpd/conf/httpd.conf
I ian0366 Verified User Joined May 21, 2005 Messages 10 Aug 3, 2005 #3 Thanks for the info... -Cheers Ian