tags:

views:

47

answers:

1

hi,

I need to incrase the php file upload limit of 8MB on an IIS server.

I don't have access to configuration files, so I was wondering how to increase it (I need something similar to .htaccess for apache..

thanks

+3  A: 

The PHP configuration upload_max_filesize is what you want to change.

Unfortunately it can only be changed from php.ini. If you don't have access to php.ini, you're out of luck (on IIS).

Charles