Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created a web application using asp.net 4 MVC3 and the ASP.NET membership provider. The application worked fine on the localhost. I deployed the app: I set up the web.config to work with the production server, and created the membership tables on the host server database. However, when I hit the log in button, the website redirects to an error page. I was told there might be a bug in the ASP.NET 4 authentication, but I am not sure this is the problem. How can I fix this so that log in will be possible?

share|improve this question
4  
What is the error that you are getting? – RubbleFord Oct 29 '12 at 8:00
I don't get an error. The web application is redirected to the error view I created myself, in the shared folder. – OrenSL Oct 29 '12 at 10:59
@OrenSL - you need to disable custom errors in web.config to see the error, or view the page from a browser on the server. – Mystere Man Oct 29 '12 at 16:02

closed as too localized by 3nigma, Aristos, Uwe Keim, Jon B, RivieraKid Oct 29 '12 at 13:55

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Don't believe everything someone tells you.

Deploying a site with membership takes more than just recreating the tables. You also must recreate all the stored procedures, and the views.

You do this by running aspnet_regsql.exe -S <server> -U <login id> -P <password> -d <database> -A all

share|improve this answer
I did do that (with the wizard). I even created a script for the aspnetdb only, and ran it on the production server. But to no avail... – OrenSL Oct 29 '12 at 11:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.