Wednesday, 7 September 2011

Increasing upload size in PHP and MySQL

PHP.ini

You need to change the following bits of code in your PHP.ini file:
upload_max_filesize = 16M
max_execution_time = 120
max_input_time = 120
memory_limit = 64M
my.cnf

We're adding just one bit of code to the file:

max_allowed_packet=16M

No comments:

Post a Comment