How do I change my upload_max_filesize?

Locate the php.ini file in the folder your upload script resides in.  If none exists, create a new text file called php.ini.
In the php.ini file, locate the line called 'upload_max_filesize = 2M'.
Modify that entry to read 'upload_max_filesize = 10M', or whatever your script requires. (M = megabytes)
That's it!
  • 126 Users Found This Useful
Was this answer helpful?

Related Articles

phpWebSite

Q: What is phpWebSite? A:  phpWebsite is a powerful CMS with a document manager,...

How do I view the php information page?

Create a page named phpinfo.php and insert the below code into it.  Pull this page up in...

Do you support mod_php?

Due to security precautions, we currently do not have, or have plans to have, a system with mod_php.

How can I execute php code as .htm or .html files?

In your .htaccess file insert this line of code: AddType application/x-httpd-php5 .php .html

Protecting the php.ini File from Being Viewed

To prevent people viewing your php.ini file via a browser, a few lines need to be pasted into the...