Sunday, June 29, 2008

Changing the php directive

Changing the php directive/setting with the help of .htaccess
To change the php directive/setting add following in .htaccess file in your DocumentRoot.

Code:
--------------------------------------------------
php_flag register_globals on
php_value register_globals off
php_value max_execution_time 60
php_value upload_max_filesize 16777216
php_value post_max_size 16777216
--------------------------------------------------

No comments: