How do I increase my PHP upload limit?

I think it's in the PHP.ini but you need to have access to it which you might not if it's not your own server. If you have no way to override it and have perl installed then you could write a simple perl script that does the upload action because the default limit on perl is 32MB.
 
Last edited:
Code:
php_value upload_max_filesize "8M"

that's the code for .htaccess - try it and see. not all hosts support it. you might need to play with "post_max_size" if you want more than 8mb.
 
Back
Top Bottom