Description:
An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: The provider 'XmlSiteMapProvider' specified for the defaultProvider does not exist in the providers collection.
Source Error:
Line 20: <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
Line 21: <roleManager enabled="true"/>
Line 22: <siteMap defaultProvider="XmlSiteMapProvider" enabled="true">
Line 23: <providers>
Line 24: <add name="CustomizedMembershipProvider"
You do not have a siteMap provider named "XmlSiteMapProvider" defined. There is an "AspNetXmlSiteMapProvider" defined by default in the computer's web.config file. Is that what you were trying to use?
Description:
An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Provider must implement the class 'System.Web.SiteMapProvider'.
Source Error:
Line 23: <providers>
Line 24: <add name="CustomizedMembershipProvider"
Line 25: type="System.Web.Security.SqlMembershipProvider"
Line 26: connectionStringName="LocalSqlServer"
Line 27: enablePasswordRetrieval="false"
Add it as another provider between the <providers></providers> tags. Leave the membership provider as it is. Add another name of the provider above or below the membership provider. You can add more than one provider to your application. You just have add
it their seperate <add name...> tags. Also, your sitefile may be different.
Could not find stored procedure 'GetNonEmptyAlbums'.
Description:
An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Could not find stored procedure 'GetNonEmptyAlbums'.
Source Error:
Line 207: connection.Open();
Line 208: List<Album> list = new List<Album>();
Line 209: using (SqlDataReader reader = command.ExecuteReader()) {
Line 210: while (reader.Read()) {
Line 211: Album temp = new Album((int)reader["AlbumID"], 0, "", false);
The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe
(available in the framework installation directory), or upgrade the provider to a newer version.
Description:
An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Configuration.Provider.ProviderException: The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version.
You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.
Source Error:
Line 5: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Line 6:
Line 7: Dim usersall As MembershipUserCollection = Membership.GetAllUsers
Line 8: Dim userstoday As New MembershipUserCollection
Line 9:
[ProviderException: The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.]
System.Web.Util.SecUtility.CheckSchemaVersion(ProviderBase provider, SqlConnection connection, String[] features, String version, Int32& schemaVersionCheck) +758219
System.Web.Security.SqlMembershipProvider.CheckSchemaVersion(SqlConnection connection) +85
System.Web.Security.SqlMembershipProvider.GetAllUsers(Int32 pageIndex, Int32 pageSize, Int32& totalRecords) +1658
System.Web.Security.Membership.GetAllUsers(Int32 pageIndex, Int32 pageSize, Int32& totalRecords) +65
System.Web.Security.Membership.GetAllUsers() +26
UsersOnline_ascx.Page_Load(Object sender, EventArgs e) in E:\kunden\homepages\5\d205327401\UsersOnline.ascx.vb:7
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +47
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Control.LoadRecursive() +131
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1061
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
Execute the exe aspnet_regsql.exe and see if it works. This exe is located in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 if you are using XP and in WINNT if you using 2000.
Member
25 Points
30 Posts
Error Message
May 17, 2007 02:41 PM|Chrisk1152|LINK
I'm getting this error
Configuration Error
Parser Error Message: The provider 'XmlSiteMapProvider' specified for the defaultProvider does not exist in the providers collection.
Source Error:
here is the code
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="Personal" connectionString="server=mssql09.1and1.com;
initial catalog=db205332131; uid=dboxxxxxxxxx; Pwd=xxxxxxxxv"/>
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer" connectionString="server=mssql09.1and1.com;
initial catalog=db205332131; uid=dboxxxxxxxxx; Pwd=xxxxxxxxx"/>
</connectionStrings>
<system.web>
<pages styleSheetTheme="Black"/>
<customErrors mode="Off"/>
<compilation debug="false"/>
<authentication mode="Forms">
<forms loginUrl="Default.aspx" protection="Validation" timeout="300" />
</authentication>
<authorization>
<allow users="*"/>
</authorization>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<roleManager enabled="true"/>
<siteMap defaultProvider="XmlSiteMapProvider" enabled="true">
<providers>
<add name="CustomizedMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="LocalSqlServer"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
applicationName="/main"
requiresUniqueEmail="true"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7"
minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10"
passwordStrengthRegularExpression=""/>
</providers>
</siteMap>
</system.web>
<location path="Admin">
<system.web>
<authorization>
<allow roles="Administrators"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
</configuration>
Can you help?
</div>Member
420 Points
87 Posts
Re: Error Message
May 17, 2007 03:04 PM|vhariable|LINK
You do not have a siteMap provider named "XmlSiteMapProvider" defined. There is an "AspNetXmlSiteMapProvider" defined by default in the computer's web.config file. Is that what you were trying to use?
http://www.dagrind.com
Member
25 Points
30 Posts
Re: Error Message
May 17, 2007 03:11 PM|Chrisk1152|LINK
Server Error in '/' Application.
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.Parser Error Message: Provider must implement the class 'System.Web.SiteMapProvider'.
Source Error:
Source File: E:\kunden\homepages\5\d205327401\web.config Line: 25
Now I'm getting this error
Star
13199 Points
4777 Posts
Re: Error Message
May 17, 2007 03:12 PM|bullpit|LINK
Max
Let Me Google That For You!
Member
25 Points
30 Posts
Re: Error Message
May 17, 2007 03:37 PM|Chrisk1152|LINK
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="Personal" connectionString="server=mssql09.1and1.com;
initial catalog=db205332131; uid=dboxxxxxxxxx; Pwd=xxxxxxxxxx"/>
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer" connectionString="server=mssql09.1and1.com;
initial catalog=db205332131; uid=dboxxxxxxxxx; Pwd=xxxxxxxxxx"/>
</connectionStrings>
<system.web>
<pages styleSheetTheme="Black"/>
<customErrors mode="Off"/>
<compilation debug="true"/>
<authentication mode="Forms">
<forms loginUrl="Default.aspx" protection="Validation" timeout="300" />
</authentication>
<authorization>
<allow users="*"/>
</authorization>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<roleManager enabled="true"/>
<siteMap defaultProvider="AspNetXmlSiteMapProvider" enabled="true">
<providers>
<add name="CustomizedMembershipProvider"
[:)] type="System.Web.XmlSiteMapProvider"
[:)] siteMapFile="AspNetXmlSiteMapProvider.sitemap"
connectionStringName="LocalSqlServer"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
applicationName="/Main"
requiresUniqueEmail="true"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7"
minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10"
passwordStrengthRegularExpression=""/>
</providers>
</siteMap>
</system.web>
<location path="Admin">
<system.web>
<authorization>
<allow roles="Administrators"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
</configuration>
Is that how i add it? Smiley next to the edit.
Star
13199 Points
4777 Posts
Re: Error Message
May 17, 2007 04:00 PM|bullpit|LINK
Add it as another provider between the <providers></providers> tags. Leave the membership provider as it is. Add another name of the provider above or below the membership provider. You can add more than one provider to your application. You just have add it their seperate <add name...> tags. Also, your sitefile may be different.
<providers>
<add name=Provider1.../>
<add name=Provider2.../>
</providers>
Max
Let Me Google That For You!
Member
25 Points
30 Posts
Re: Error Message
May 17, 2007 04:27 PM|Chrisk1152|LINK
Server Error in '/' Application.
Could not find stored procedure 'GetNonEmptyAlbums'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Data.SqlClient.SqlException: Could not find stored procedure 'GetNonEmptyAlbums'.
Source Error:
Source File: e:\kunden\homepages\5\d205327401\App_Code\PhotoManager.cs Line: 209
Stack Trace:
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
Star
13199 Points
4777 Posts
Re: Error Message
May 17, 2007 04:41 PM|bullpit|LINK
http://forums.asp.net/p/1100101/1671856.aspx#1671856
Max
Let Me Google That For You!
Member
25 Points
30 Posts
Re: Error Message
May 22, 2007 10:42 AM|Chrisk1152|LINK
Server Error in '/' Application.
The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Configuration.Provider.ProviderException: The 'System.Web.Security.SqlMembershipProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.
Source Error:
Source File: E:\kunden\homepages\5\d205327401\UsersOnline.ascx.vb Line: 7
Stack Trace:
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
What's with this error?
Star
13199 Points
4777 Posts
Re: Error Message
May 22, 2007 11:17 AM|bullpit|LINK
Execute the exe aspnet_regsql.exe and see if it works. This exe is located in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 if you are using XP and in WINNT if you using 2000.
Max
Let Me Google That For You!
Member
25 Points
30 Posts
Re: Error Message
May 22, 2007 03:17 PM|Chrisk1152|LINK
OK I'm not getting an error anymore Now I'm not having all the page displayed.
Check
itMember
25 Points
30 Posts
Re: Error Message
May 22, 2007 03:17 PM|Chrisk1152|LINK
OK I'm not getting an error anymore Now I'm not having all the page displayed.
Check
Member
25 Points
30 Posts
Re: Error Message
May 22, 2007 03:17 PM|Chrisk1152|LINK
OK I'm not getting an error anymore Now I'm not having all the page displayed.
Check it out here.
http://www.shadowstalkersguild.net/default.aspx
Thanks Chris
Member
25 Points
30 Posts
Re: Error Message
May 22, 2007 03:17 PM|Chrisk1152|LINK