info.php
<?php phpinfo(); ?>
set local max upload size in .htaccess file
php_value upload_max_filesize 90M // max size in Mb
php_value post_max_size 90M // upload size via POST method
php_value max_input_time 9600 // timeout value in seconds
to force php in html file, add the following to the .htaccess file
ForceType application/x-httpd-php
|