Questions tagged [createuser]

144 questions
0
votes
1 answer

How to create user on domain with Google apps marketplace API?

We have application published with Google apps marketplace. we need to create user on domain where they install our app through API. I have tied the following php code but, i am getting 401 error. Please help. $oauthOptions = array( …
0
votes
1 answer

How to create a named database host

I am trying to set up a multi master mysql replication on two systems on a network. The two separate database servers are running mysql at localhost, How do I create a replication user for the hosts since they share the same name. I could do this,…
Chibuzo
  • 6,112
  • 3
  • 29
  • 51
0
votes
1 answer

MembershipUser.createUser not working and no exception is thrown

I'm having some problems getting MembershipUser.createUser to create a user in my database. I don´t get any errors either. This is the model: All required field are here... public class RegisterModel { [Required] [Display(Name =…
Guilherme Longo
  • 2,278
  • 7
  • 44
  • 64
0
votes
1 answer

netuseradd user already exists error

I receive user already exists error code when I try to create account programmaticaly in windows 7, although user does not exists. What may be the cause of this problem ? int wmain(int argc, wchar_t *argv[]) { USER_INFO_1 ui; ui.usri1_name…
user
  • 43
  • 5
0
votes
2 answers

How to create a User in Alfresco?

I tried creating a user. But when I tried, it displayed the following error: Failed to create the user: 05190030 Wrapped Exception (with status template): 05192817 Failed to execute script…
than1234
  • 53
  • 2
  • 10
0
votes
1 answer

How to create user without using Membership.CreateUser()?

Will someone please tell me how to create a user without using membership.createuser() and create user wizard in asp.net? I need to perform an additional insert on an existing table during CreateUser().
Krishanu Dey
  • 6,326
  • 7
  • 51
  • 69
0
votes
1 answer

After creating a user or if creation fails, any more attempts at saving returns MembershipCreteStatus more than once

I have a Silverlight web app using WCF and Membership.CreateUser to create new users. If I successfully create a user, then create another user, I get the "User sucessfully created" status message twice. Or if my first attempt at creating a new user…
Neill
  • 711
  • 2
  • 13
  • 32
-1
votes
1 answer

How to create a user in mySql, including password

I created a new user by inserting into the user table in mySql database - but it showed up an error saying there is no such column titled "password". Which column is responsible for password in user table in mySql database? mysql> INSERT INTO user …
Shivam Kasat
  • 35
  • 1
  • 6
-3
votes
1 answer

Creating database user with domain in C# doesn't work

I want to create a database User in C#. In Microsoft SQL Server Management Studio I just can create one with the following command: CREATE USER [DOMAIN\user] But when I try to do the same in C# I can't send a single backslash in the command. string…
Runner
  • 7
  • 5
1 2 3
9
10