Link to home
Start Free TrialLog in
Avatar of preluderd
preluderd

asked on

How to up "Maximum upload file size" in WordPress running on IIS7

I am having troubles increasing the size of the "Maximum upload file size" in wordpress running on IIS7 - FastCGI that comes with Plesk 9.5.  I have tried to modify the php.ini file located in C:\WIndows\php.ini and changing the value 'upload_max_filesize' to a higher size and nothing.

I have also tried opening IIS Manager selecting the website and double clicking on 'ASP' then changing the 'Maximum Request Entity Body Limit'  As well as adding

<system.web>
      <httpRuntime maxRequestLength="102400" />
</system.web>

to the web.config
wordpress-new-media.jpg
ASKER CERTIFIED SOLUTION
Avatar of jeremyjared74
jeremyjared74
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of preluderd
preluderd

ASKER

Also creating a php file called info.php in the root directory of WordPress and adding this code:
<?php
phpinfo();
?>
View this page and look at the "Loaded Configuration File" to make sure you are editing the correct php.ini file
Wow, that was fast. It took me a little longer to get it working.