Could anyone tell me how to increase the files upload php from 2m "default to 9m ??
Could anyone tell me how to increase the files upload php from 2m "default to 9m ??
upload_max_filesize this option
However when i add the lines below in the .htaccess the interval server error apeear during
the web site load
php_value upload_max_filesize 10M
php_value post_max_size 20M
*i dont want to enable this for server wide just for particular user
If phpsuexec is enabled on your server, by adding any php value to your .htaccess file will give your internel server error. Try adding following to the VirtualHost entry of the domain in httpd.conf file.
<IfModule mod_php4.c>
php_admin_value upload_max_filesize = 20M
</IfModule>