Hi-
I'm upgrading some scripts from php3 to 4.0.3pl1 that live on a shared server. I don't have access to php.ini, so any changes I make to directives need to be done through .htaccess. I can't seem to change the setting for post_max_size at all and it's hanging me up. File uploads all stop at 8mb now, but they need to be as large as 100mb. Here's how htaccess looks:
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php-source .phps
AddType application/x-httpd-php .php3
php_value post_max_size 104857600
php_value upload_max_filesize 104857600
php_value memory_limit 104857600
php_value max_execution_time 240
php_value file_uploads 3
php_flag magic_quotes_gpc off
Anyone see any problems with this? or is post_max_size maybe just not customizable, meaning i need to look for a new ISP?
Any insights would be helpful.
Thanks