Hi folks, i really need help on this one, i am having exactly the same error message. my web.config file seems to be the problem. the file is as below, please can someone tell me where i am going wrong, i really need to get this site up and running.
Description:
HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /servererror.aspx
im guessing however that i can use any page to display here. does this mean that my main page isnt working since its given me error 500? do i have to have a .PHP file inplace for the main
page to be displayed? sorry, i know im hard work, im very new to this
example web.config file should be download from " http://www.ozdemir.info/web.config "
i hope that will work on your server. i only write the right information to web.config. that's it.
and more important : you must check your database server if it's working on sql 2005 server or not. you must fill the right sql part of web.config.if your server sql 2005 fill sql 2005 server's part delete other sql part from config file.
also i'm sorry for who wants web.config file from me, i can not answer you all because of hosting problems depend on mail server error. my mailbox swelled and can not get any mails. + i forgot my ASP.NET user password. good luck to all getting same error
message.
Hello, I have conflict in my web.config I got error here http://malaysiablog.info/member/
I got this error :
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 'nmmsmc.clsGlobal'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="nmmsmc.clsGlobal" %>
Source File: /global.asax Line: 1
Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053
Cecilisimo
Member
4 Points
2 Posts
Re: Server Error in '/' Application.
Oct 14, 2008 06:51 PM|LINK
Hi folks, i really need help on this one, i am having exactly the same error message. my web.config file seems to be the problem. the file is as below, please can someone tell me where i am going wrong, i really need to get this site up and running.
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<connectionStrings>
<connectionString=Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Domains\xxxxxxx.com\db\xxxxxxx.mdb;User
Id=xxxxxxx;Password=xxxxxxx; />
<appSettings/>
</connectionStrings>
<system.web>
<compilation debug="false" strict="false" explicit="true"/>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<authentication mode="Windows"/>
<customErrors defaultRedirect="xxxxxxx.html" mode="On">
<error statusCode="500" redirect="servererror.aspx" />
<error statusCode="404" redirect="filenotfound.aspx" />
<error statusCode="403" redirect="AccessDenied.aspx" />
</customErrors>
</system.web>
</configuration>
Thanks in advance
Paul
murtaza_t
Member
242 Points
57 Posts
Re: Server Error in '/' Application.
Oct 14, 2008 08:36 PM|LINK
The problem seems to be in the above setting, your web.config should look some what like this:
<?xml version="1.0"?> <configuration> <appSettings> <add key="ConnectionString" value="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\anydatabase.mdb" /> </appSettings> <connectionStrings/> <system.web> <compilation debug="false" strict="false" explicit="true"/> <pages> <namespaces> <clear/> <add namespace="System"/> <add namespace="System.Collections"/> <add namespace="System.Collections.Specialized"/> <add namespace="System.Configuration"/> <add namespace="System.Text"/> <add namespace="System.Text.RegularExpressions"/> <add namespace="System.Web"/> <add namespace="System.Web.Caching"/> <add namespace="System.Web.SessionState"/> <add namespace="System.Web.Security"/> <add namespace="System.Web.Profile"/> <add namespace="System.Web.UI"/> <add namespace="System.Web.UI.WebControls"/> <add namespace="System.Web.UI.WebControls.WebParts"/> <add namespace="System.Web.UI.HtmlControls"/> </namespaces> </pages> <authentication mode="Windows"/> <customErrors mode="RemoteOnly" defaultRedirect="xxxxxxx.html"> <error statusCode="500" redirect="servererror.aspx" /> <error statusCode="404" redirect="filenotfound.aspx" /> <error statusCode="403" redirect="AccessDenied.aspx" /> </customErrors> </system.web> </configuration>Regards,
Murtaza
Web Hosting UK | VPS Hosting
Cecilisimo
Member
4 Points
2 Posts
Re: Server Error in '/' Application.
Oct 14, 2008 08:52 PM|LINK
wow you're good. im on to this error now
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.Requested URL: /servererror.aspx
im guessing however that i can use any page to display here. does this mean that my main page isnt working since its given me error 500? do i have to have a .PHP file inplace for the main page to be displayed? sorry, i know im hard work, im very new to this
ozdemir
Member
9 Points
5 Posts
Re: Server Error in '/' Application.
Nov 06, 2008 07:57 PM|LINK
example web.config file should be download from " http://www.ozdemir.info/web.config "
i hope that will work on your server. i only write the right information to web.config. that's it.
and more important : you must check your database server if it's working on sql 2005 server or not. you must fill the right sql part of web.config.if your server sql 2005 fill sql 2005 server's part delete other sql part from config file.
good luck to you all.[cool]
ozdemir
Member
9 Points
5 Posts
Re: Server Error in '/' Application.
Nov 06, 2008 08:05 PM|LINK
also i'm sorry for who wants web.config file from me, i can not answer you all because of hosting problems depend on mail server error. my mailbox swelled and can not get any mails. + i forgot my ASP.NET user password. good luck to all getting same error message.
Nasrun
Member
2 Points
1 Post
Re: Server Error in '/' Application.
Aug 14, 2009 08:07 AM|LINK
Hello, I have conflict in my web.config I got error here http://malaysiablog.info/member/
I got this error :
Hope you all can help..
Thanks
nasrun