hosting mojo 2.2.7.9 on Plesk and getting web.config ERROR

Post here for help with installing or upgrading mojoPortal pre-compiled release packages. When posting in this forum, please provide all relevant details. You may also want to review the installation or upgrading documentation.

If you have questions about using the source code or working with mojoPortal in Visual Studio, please post in the Developer forum.

Post here for help with installation of mojoPortal pre-compiled release packages

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.

You may also want to review the installation or upgrading documentation.

If you have questions about using the source code or working with mojoPortal in Visual Studio, please post in the Developer forum.

This thread is closed to new posts. You must sign in to post in the forums.
4/14/2009 3:12:11 AM
n
Gravatar
Total Posts 7

hosting mojo 2.2.7.9 on Plesk and getting web.config ERROR

 hi! i am trying to host mojo portal 2.2.7.9 on Plesk but getting the following error. i have changed <customErrors mode="On"/> to <customErrors mode="Off"/> but its showing the same error page..pls help!!!!:

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>

 

4/14/2009 7:05:17 AM
Gravatar
Total Posts 18439

Re: hosting mojo 2.2.7.9 on Plesk and getting web.config ERROR

Hi,

That means the error is happening before any error handler can get to it. If you have accesws to the Event Viewer on the machine you could probably get the error message and that would provide a clue to the problem.

Make sure the IIS user has read permission on the entire web and has write/modify permission on the /Data folder.

I would make sure the site is configured for 2.0 .NET and not 1.1. and probably you are hosted in Medium Trust so maybe the steps for medium trust configuration will help. 

Hope it helps,

Joe

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