Changing the upload limit size from 2MB to 110MB
-
This works with easyphp, phpmyadmin, mysql and apache setup in www.ads-software.com but will probably work with others.
1. Edit php.ini. You can find it here \apache\Apache2.2.11
2. Use Find tool and search for each of these separately and change
post_max_size = 8M
upload_max_filesize = 2M
max_execution_time = 30
memory_limit = 8MChange to:
post_max_size = 110M (see the sql statement filesize above)
upload_max_filesize = 110M
max_execution_time = 1000
memory_limit = 128M (based on RAM)Save php.ini
3. Edit my.ini, find it here, \mysql\my.ini
4. Use Find tool
max_allowed_packet = 110M
Save my.ini
5. Restart Your server (easyphp in my case)
- The topic ‘Changing the upload limit size from 2MB to 110MB’ is closed to new replies.