Maximum Upload File Size Is there an easy way to increase the maximum file upload size (currently 2 megabytes)? The file upload size is set in your PHP configuration, php.ini , with the parameter upload_max_filesize . The setting can be changed in a number of different places depending on your webserver and the method it uses to run PHP. If your Webserver allows the modification of PHP settings through a .htaccess file (Apache + mod_php) add the following two lines to a .htaccess in the installed directory: php_value upload_max_filesize 15M php_value post_max_size 15M Otherwise you need to modify your php.ini (usually located in /etc/php5/php.ini , but refer to your administrator or distribution manual for the correct location): upload_max_filesize = 15M post_max_size = 15M After modifying the global php.ini you will need to restart the webserver to have changes take effect. Apache U...
Computer, Troubleshooting, Linux, Windows, Software, Hardware, Networking