|
|
Rank: Newbie Groups: Member
Joined: 3/5/2008 Posts: 6 Points: 18
|
When I go to http://www."mydomain".com/myl/default.aspx I get a message saying I need to add the following code to my "web.config" file on root server in order to view error messages: <!-- Web.Config Configuration File -->
<configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> I assume this means config.aspx, but I tried adding the code there and it didn't help. Any ideas?
|
|
Rank: Newbie Groups: Member
Joined: 3/5/2008 Posts: 6 Points: 18
|
Got web.config working. Now I get this message:
Server Error in '/' Application.
Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'MailYouLikev3._default'.
Source Error:
Line 1: Line 2: <%@ Page CodeBehind="default.aspx.vb" Language="vb" AutoEventWireup="false" Inherits="MailYouLikev3._default" %>
Source File: C:\Inetpub\vhosts\______.com\httpdocs\myl\default.aspx Line: 2
|
|
 Rank: Administration Groups: Administration
Joined: 7/1/2008 Posts: 256 Points: 574
|
Hi ! Please copy the bin folder to httpdocs folder and also copy it under myl folder Thanks Suhail kaleem mailyoulike.com
|
|
Rank: Newbie Groups: Member
Joined: 1/20/2005 Posts: 2 Points: 6 Location: Ireland
|
I get the same error on installation:
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> Where and how do I had the above code
|
|
 Rank: Administration Groups: Administration
Joined: 7/1/2008 Posts: 256 Points: 574
|
Hi !
The code is already added in your version of mailyoulike just make sure you have copied the bin directory content to your root folder bin directory Let me know if you have any questions Thanks Suhail kaleem mailyoulike.com
|
|
|
Guest |