• Welcome to Web Hosting Community Forum for Webmasters - Web hosting Forum.
 

Recommended Providers

Fully Managed WordPress Hosting
lc_banner_leadgen_3
Fully Managed WordPress Hosting

WordPress Theme

Divi WordPress Theme
WPZOOM

Forum Membership

Forum Membership

Need help to increase max_upload_packets

Started by sharp, October 20, 2008, 06:37:09 PM

sharp

Hello
am new on these things i have dedicated server and i dont know how to increase max_upload_packets can any one help me plz?

Kevin

Hi,

Are you referring to maximum file size upload limit (upload_max_filesize) in php.ini or maximum allowed packet for mysql (max_allowed_packet)?

To increase the file upload limit for php, just edit your php.ini and set the desired value for upload_max_filesize. You may need to restart Apache or IIS after modifying the php.ini file. To know the php configuration path, just create a new file with .php extension and write the below code:

<?php
phpinfo
();
?>
Look at the path set for "Loaded Configuration File".

And to increase the MySQL packet, edit your my.cnf (Linux server) or my.conf (windows), and set the desired value for max_allowed_packet. You will need to restart mysql after making the changes.

Kevin