bugs on instalation

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
3/20/2009 12:05:35 AM
Gravatar
Total Posts 2

bugs on instalation

Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

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>

 

3/20/2009 6:10:54 AM
Gravatar
Total Posts 18439

Re: bugs on instalation

Hi,

There is no way to diagnose the problem without seeing the error. By default errors are not shown because it gives potential information to hackers.

You can temporarily enable it to show errors by doing what it says, edit Web.config and set <customErrors mode="Off"/>

Its possible the errors are being logged in the mojoportal log (assuming file system permissions are configured correctly) at /Data/currentlog.config, if that file exists you can download it and see what errors are being logged. The newest/most important errors are at the bottom of the file. 

Once you have the error information I should be able to help.

Joe

You must sign in to post in the forums. This thread is closed to new posts.