Tried contour a bit and when I uninstalled it the whole site crashed and gives a runtime error. Been at this for many long hours and cant fix it. PLEASE can somebody help me?
Ofcourse I forgot, sorry Tim, Im stressed as f-k :(
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
You need to follow the instructions on the error screen, open up the web.config file that should be in the root of the website, look for the text "customErrors" set the setting to "Off" and save the file. Reload your site and you should get the actual error message that is being generated, which should help track down the issue! If you have remote access to the server that the site lives on, you can also check the application error logs using the event viewer.
Hmmmmm, it looks like Contour hasn't un-installed properly, I suspect its left a DLL behind that it should have removed. Look in you "/bin" folder on the website, are there any files in there that start with "Umbraco.Forms" (e.g. "Umbraco.Forms.Core.dll")?
Contour crashed my site on uninstall gaaaaah!!!
Tried contour a bit and when I uninstalled it the whole site crashed and gives a runtime error. Been at this for many long hours and cant fix it. PLEASE can somebody help me?
Dave
Can you post the detailed error message that you are getting please?
Ofcourse I forgot, sorry Tim, Im stressed as f-k :(
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
Any thoughts?
D
You need to follow the instructions on the error screen, open up the web.config file that should be in the root of the website, look for the text "customErrors" set the setting to "Off" and save the file. Reload your site and you should get the actual error message that is being generated, which should help track down the issue! If you have remote access to the server that the site lives on, you can also check the application error logs using the event viewer.
Ah ok, thanks! Thats a lot of stuff for a front-end developer like me : /
The result is:
" Stack Trace:
Hmmmmm, it looks like Contour hasn't un-installed properly, I suspect its left a DLL behind that it should have removed. Look in you "/bin" folder on the website, are there any files in there that start with "Umbraco.Forms" (e.g. "Umbraco.Forms.Core.dll")?
There was and when i removed it the site works!! Thanks Tim, I owe u bigtime!!!
Dave
Excellent! Glad that sorted it out for you :)
is working on a reply...