How to change the max upload for particular user ?

F_A_H_D

Active Member
Sep 17, 2006
25
0
151
Could anyone tell me how to increase the files upload php from 2m "default to 9m ??
 

F_A_H_D

Active Member
Sep 17, 2006
25
0
151
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
 

pravin

Member
Jun 8, 2005
10
0
151
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>