R: |
PHP's upload_max_filesize value is set server wide to 2 MB
but can be modified (as with some other PHP variables) by
users via a .htaccess file.
There should be a file in your public_html directory
called '.htaccess' - you may need to enable to viewing of
hidden files in your FTP software before it can be seen. If
there is no .htaccess file in place it can be created and
uploaded.
Edit this file and add the following line:
php_value upload_max_filesize "6M"
* Replace the number 6 with the new limit you wish to set in
MB
After doing this, the upload_max_filesize limit will be changed
for that account and can be seen by viewing a phpinfo page.
× close
|