Questions tagged [createuser]

144 questions
0
votes
1 answer

What am I doing wrong in my Accounts.createUser() configuration?

I cant seem to get beyond the Accounts.createUser() line in my code. What's wrong? I have: Router.route('/', { template: 'info', waitOn: function(){ return Meteor.subscribe('userData'); } }); I am able to correctly see the results of…
SirBT
  • 1,580
  • 5
  • 22
  • 51
0
votes
1 answer

UserInfo={NSLocalizedDescription=The email address is already in use by another account., error_name=ERROR_EMAIL_ALREADY_IN_USE}

Hey guys actually i am trying two things here:- trying to create a new account and trying to open a screen like which appears after login but it is showing "email already exist error". @IBAction func CreateAcccountButton(_ sender: AnyObject) { guard…
0
votes
1 answer

CREATE USER MySQL

Error with dropping tables: SQL query: DROP user IF EXISTS 's01'@'%'; MySQL said: Documentation #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'if…
Bartholomas
  • 51
  • 1
  • 10
0
votes
1 answer

Create a new user using emberfire

I am writing a EmberJS web application. I want to create and authenticate the user using firebase. I am using the emberfire https://github.com/firebase/emberfire I am not able to create a user using the emberfire. There is no info regarding user…
bjkpriyanka
  • 151
  • 1
  • 11
0
votes
1 answer

Android Firebase create new user not working

I am hoping someone can help me. Below is my code for my create/register user. I am using Android Studio and Firebase. For some reason, the code is not creating the new user. I can manually add users to the database however, I cannot create new…
0
votes
1 answer

Orientdb 2.2.2 "create user" in distributed setup returns ODistributedOperationException

Is the "create user" command supported in a distributed setup (version 2.2.2)? Any time I use it, I get a distributed operation exception (screenshot: https://www.dropbox.com/s/nd9m52i8dbk7r4t/Screenshot%202016-06-15%2010.51.13.png?dl=0) It seems…
Justin Killen
  • 728
  • 6
  • 19
0
votes
1 answer

Add user to SharePoint WebSite when having custom module and custom membership provider

I am having a custom http module and a custom membership and role provider for my sharepoint website. I have a scenario wherein I want to add user to sharepoint website. I am able to add it from custom membership provider(by EnsureUser method) but…
Vishal
  • 127
  • 9
0
votes
2 answers

Error to create user with API Google Admin-sdk

I have the following code which me serves to get information such as mailing list etc ... But when I try to create a new mails (user) I get the following error, hope you can help me I tried to find more information but only find old api . This is…
0
votes
1 answer

Django UserCreationForm add request.user.pk ?

Hi i need add request user pk to UserCreationForm. I try many times, but with out results. In my dashboard i have user owner and i have user seller. One model for all 3 types user. So Owner can create another user with role=seller, but for this i…
0
votes
1 answer

Oracle / Netbeans Login Issue

Oracle 11 XE / Netbeans 8.0.2 / Toad 12.7.1.11 Be forewarned: Noob on this stuff... So I logged into Oracle via Toad as SYS and created a new user (Jason). Ended the connection, and connected under the new user. No sweat. Created a simple 2-column…
user724198
0
votes
1 answer

Securely creating a new PostgreSQL user

I'm learning the ins and outs of web development and deployment in particular. I have a Ubuntu server, I have a unix user userX and I have PostgreSQL installed. I have a simple Python / Flask web application that will be ran under the userX unix…
0
votes
1 answer

Codeigniter dbforge library - assign db user to current database and add grant privileges

I am trying to create a db user and assigned him to the new database what already has been created using dbforge library: $this->dbforge->create_database( $oData->db_name ); My question is: What must do first - create user or create a database? How…
Pavel Kenarov
  • 944
  • 1
  • 9
  • 21
0
votes
2 answers

laravel 5: adding new user not working as expected

i'm trying to create a new user using the following code: $user = new User(); $arr = array( "username" => Input::get('username'), "pass" => Input::get('pass') ) $user->save($arr); it does add the record to the table but all fields are…
Fuxi
  • 7,611
  • 25
  • 93
  • 139
0
votes
0 answers

auth.$createUser thinks email and passwords are strings in Angular

Another weird one for today. I am creating a registration form in angularjs, the form sits inside a view folder called register.html. It is retrieved and displayed the ng-view in the homepage. The controller is also so set in a separate file with…
HGB
  • 2,157
  • 8
  • 43
  • 74
0
votes
0 answers

The Membership.CreateUser() method in ASP.NET returns InvalidAnswer status all the time

I am using AspNetSqlMembershipProvider to implement user management in my ASP.NET website. I have set up the database and the forms to accept user input as well. Everything works fine when I call the below…