Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
After I installed I noticed I got an error and it was because it added the following to my web.config
<httpErrors existingResponse="PassThrough">
but this already existed, so when I removed it, it worked, so my question is do I take my existing httpErrors and leave it as is:
httpErrors
<httpErrors errorMode="Detailed"> <remove statusCode="404" subStatusCode="-1" /> <error statusCode="404" prefixLanguageFilePath="" path="/error.aspx" responseMode="ExecuteURL" /> </httpErrors>
or do I add the existingResponse="PassThrough" to it, like so:
existingResponse="PassThrough"
<httpErrors errorMode="Detailed" existingResponse="PassThrough"> <remove statusCode="404" subStatusCode="-1" /> <error statusCode="404" prefixLanguageFilePath="" path="/error.aspx" responseMode="ExecuteURL" /> </httpErrors>
Hi Saied,
You need to have the 'existingResponse="PassThrough"' in your config for handling errors in your site.
Thanks,
Alex
I have installed this onto a 7.4.3 site and the 404 error page is not working - it is still using error404 setting in Umbraco Setting config.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Do I have to keep existingResponse="PassThrough"
Hi,
After I installed I noticed I got an error and it was because it added the following to my web.config
<httpErrors existingResponse="PassThrough">
but this already existed, so when I removed it, it worked, so my question is do I take my existing
httpErrors
and leave it as is:or do I add the
existingResponse="PassThrough"
to it, like so:Hi Saied,
You need to have the 'existingResponse="PassThrough"' in your config for handling errors in your site.
Thanks,
Alex
I have installed this onto a 7.4.3 site and the 404 error page is not working - it is still using error404 setting in Umbraco Setting config.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.