by Alan Hare.
Mary,
You will need to make changes in the php.ini and the web.config. IIS 7.x has a limit of 30mb. Change the values below to match your needs.
php.ini
- upload_max_filesize = 500M
- post_max_size = 500M
web.config
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="524288000"/>
</requestFiltering>
</security>
</system.webServer>
I would also suggest installing the windows PHP Manager via the Windows Web Installer.
Reference links:
- http://phpmanager.codeplex.com
- http://www.microsoft.com/web/platform/phponwindows.aspx
- http://www.microsoft.com/web/downloads/platform.aspx