These forums are read-only and considered to be an archive. Please use the new Community for future interaction and posts.

Fileupload disabled in web.config?

When accessing fileultimate from the outside world I get fileupload disabled please check in the web.config (I'm sure this is not exact wording).  I looked in the FileUltimiate web.config and didn't see anything about turning it on.  Is there a setting I'm missing?
Jonathan Emmett 12/13/2012 6:08 AM
Oops just checked internally and its disabled there too.. error is "Upload module is inactive. Please check web.config settings."
Jonathan Emmett 12/13/2012 6:10 AM
Other than putting FileUltimate\web.config in your project, you need to add some upload related settings to your project's web.config (as noted in readme.txt):

3. Edit your project's root Web.config file add the following settings inside <configuration> tag.

        <system.webServer>
            <validation validateIntegratedModeConfiguration="false"/>
            <modules>
                <add name="FileUploaderModule" type="GleamTech.Web.UploadModule" preCondition="managedHandler"/>
            </modules>
        </system.webServer>
        <system.web>
            <httpModules>
                <add name="FileUploaderModule" type="GleamTech.Web.UploadModule"/>
            </httpModules>
        </system.web>

Cem Alacayir 12/13/2012 6:34 AM
My fault, thanks again Cem
Jonathan Emmett 12/13/2012 6:39 AM