Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
5k views

Using ASP .NET Membership and Profile with MVC, how can I create a user and set it to HttpContext.Current.User?

I implemented a custom Profile object in code as described by Joel here: http://stackoverflow.com/questions/426609/asp-net-membership-how-to-assign-profile-values I can't get it to work when I'm ...
2
votes
3answers
2k views

set blank password for PostgreSQL user

i use postgresql command 'createuser myusername' . it prompts me for password always. if i leave password blank . it gives an error that no password specified. i simply want to create a user with ...
2
votes
2answers
177 views

MembershipUser class CreateUser password parameter

I'm using the ASP.NET Configuration for my users and their roles. I'm also using the MembershipUser class with its function CreateUser. I have it working, but was curious about something. When I add ...
1
vote
1answer
65 views

How to call the CreateUser method from a webreference

I've ran out of things to try, so I hope someone can help me with this. I'm creating a "Register" page. When a user clicks the "Register" button, their information (email, username, password) needs ...
1
vote
2answers
167 views

why dosn't MySQL like the user 'a'@'b' when I just dropped them from mysql.user?

This is what I did. mysql> CREATE USER 'matrix'@'%.something.com' IDENTIFIED BY 'weak'; ERROR 1396 (HY000): Operation CREATE USER failed for 'matrix'@'%.something.com' mysql> CREATE USER ...
0
votes
2answers
38 views

How can I create a user account in my User table using Entity Framework Migrations?

Previously I used a database initializer to seed or pre-populate my tables when creating them using Code First. This all worked great but I wanted to move on to using the EF 4.3 migrations. I updated ...
0
votes
1answer
74 views

Add a user in Cakephp authentication tutorial

There is a problem when I write add() function for UsersController. public function add(){ if ($this->request->is('post')) { if ...
0
votes
2answers
98 views

Unique ID of CreateUSer Button in CreateUserWizard asp.net

I made a custom FindControl function to find a control within all childs of one control I pass in parameter. But I don't manage to have a hand over the button used to create a user ,in a ...
0
votes
1answer
67 views

mysql: cannot create user after delete the user with phpmyadmin

I was trying to create a mysql user with: $ mysql5 -u root -p $ [enter password] $ create user 'name'@'localhost' indentified by '123456'; Then I accidentally deleted the user while using ...
0
votes
1answer
200 views

Asp.net Membership Provider custom CreateUser

I am trying to get my custom "CREATEUSER" to work but I think I'm having problems in my web.config. Thanks to help here, I've gotten the MEMBERSHIP section written but my MEMBERSHIP.CREATEUSER ...
0
votes
1answer
201 views

ASP.Net membership Provider: Custom Create User

My textbook states that the default for a valid password, "requires that you enter at least seven characters with one of them being a non-alphanumeric." I am definitely doing that. The error I'm ...
0
votes
0answers
207 views

How to call a CreateUser .net Web Service with android using ksoap

I am trying to call a create user .net web service from a server using ksoap. However when i run this set of codes, i would get a "07-13 07:49:30.355: WARN/System.err(352): ...
0
votes
0answers
68 views

.net membership provider, createuser fails… sometimes ¿?

On a WinForm project with Membership Provider (with SQL-Server configured on app.config) When I debug this for first time: Provider.Membership.CreateUser(username, password, null, null, null, true, ...
0
votes
1answer
174 views

.net mvc email as username returning error - InvalidProviderUserKey

I have a .Net MVC application that I am trying to use an email address as the username. I implemented the logic from this article where the username is masked as the email. However, when I try to call ...
0
votes
1answer
77 views

user is being created with Membership.CreateUser and when I pass the line it is being automatically deleted from table

I'm trying to create a user using Membership.CreateUser. After I pass the following line: MembershipUser newUser = Membership.CreateUser(_UserName, _Password, _UserName); I check the ...
0
votes
2answers
681 views

Postgres createuser.exe silent execution from batch script

I am finding myself with the issue of needing to execute the postgres createuser.exe from a batch script and cannot get it to stop prompting me with the following: Enter name of role to add: my ...