Enabling php.ini on your shared hosting account

Create a new file called .htaccess in the root of your shared hosting

/home/accountname/public_html/.htaccess

Add the following lines to the top of the file

<IfModule mod_suphp.c>
suPHP_ConfigPath ./
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>

Create a php.ini file add the following lines to increase or decrease values

upload_max_filesize = 32MB
max_input_vars = 3000
memory_limit = 1024M
max_execution_time = 360
post_max_size = 32M