The php.ini file is a special file for suPHP (pronounced sue-p-h-p).
The php.ini file is where you declare changes to your PHP settings. You can edit the existing php.ini, or create a new text file and name it php.ini.
Instead of having us create and setup the php.ini file for you, you can place your php.ini file in your Home Directory (/home/username/) yourself and then add this code to your primary .htaccess (/home/username/public_html/.htaccess). Be sure to replace "username" with your actual cPanel user name.
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/username
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
Some common changes that you must make when moving from non-secure php environment to suPHP:
For example, if your site had these settings in a .htaccess file:
php_flag upload_max_filesize 10M
php_value post_max_size 10M
php_value max_execution_time 30
SuExec users must put them in a php.ini file instead. Here is the proper syntax:
upload_max_filesize = 10M
post_max_size = 10M
max_execution_time = 30


