Custom Membership

Hey everyone,

I've developed a custom membership provider and it works great locally. When I move it to the jodo servers, I get this error.

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

My connection string is definately ok as I confirmed everything in there. My web.config membership tag looks like this

<membership defaultProvider="SpiritMovedMembershipProvider" userIsOnlineTimeWindow="15">
<providers>
<clear/>
<add name="SpiritMovedMembershipProvider"
type="SpiritMoved.MembershipProvider.SpiritMovedMembershipProvider"
connectionStringName="SpiritMovedConnectionString"
enablePasswordRetrieval="true"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
writeExceptionsToEventLog="false" />
</providers>
</membership>

Everything looks ok to me so I have no idea, any ideas?
 
Back
Top