Quote:
Originally Posted by rookie7
I might be wrong but I don't think you can upload more than 2 MB in most hosts since it is configured in php.ini . There's a way around that, but...I don't think your host will be happy if they found out. :nervous:
|
You are right about the 2MB. But you can go up to 11MB before VBulletin will reject the upload. This only applies for VBulletin uploads.
My hack does not rely on the VBulletin database so there are the following limitations per default:
- 2MB max due to php.ini
- 30 secs due to timeout set in php.ini
The second limitation can be altered via your php file by adding the following line at the beginning of your php file:
PHP Code:
ini_set("max_execution_time", "3600");
This will give you 10 minutes for uploading but please keep in mind, that many providers are preventing things like this and if you work around their limitation then your account will be disabled very quickly.
The first limitation can not be altered via script. So you need access to the php.ini file to be able to alter this setting.
Cheers,