how can i increase my uploading limit from 2M to 100M. 2M is the default uploading limit in php.ini file. Thanks in advance
Keep in mind that while you may be able to adjust the maximum file size limit, on many shared hosts there is a maximum script execution time that you cannot override which will often prevent users from uploading large files.
In php.ini, the directives look like: upload_max_filesize = 2M post_max_size = 2M Code (markup): You can override by placing the following in your .htaccess: php_value upload_max_filesize 20M php_value post_max_size 20M Code (markup):