Questions tagged [createuser]
144 questions
0
votes
1 answer
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 getting is, "The password answer supplied is…

Susan
- 1,822
- 8
- 47
- 69
0
votes
0 answers
create users with apex_util.create_user problem
I want to create a user in apex from db(in oracle).
this is my code:
declare
l_workspace_id number;
l_group_id number;
begin
l_workspace_id := apex_util.find_security_group_id('MS');
…

mona shiri
- 57
- 8
0
votes
1 answer
How do I create new resource once SCIM is integrated with my service provider?
I'm a SCIM newbie.
In SCIM work flow, I'm just curious how to create new user on service provider side.
If I create new user into local user table on service provider side, and then send a SCIM post user request. This request might fail due to…

scott1028
- 417
- 2
- 7
- 16
0
votes
1 answer
How to check if password expiry is disabled for a user in azure ad
I have a python code through which I am creating user in azure ad. Below is the code:
headers = {'Authorization': 'Bearer ' + token, 'Content-Type': 'application/json'}
user_data = {
"accountEnabled": True,
"displayName": new_username,
…

S Andrew
- 5,592
- 27
- 115
- 237
0
votes
2 answers
Ora-01031: insufficient privileges when I create the first user
I tried to create a user after creating tablespaces but there is an error at line 1, ORA-01031: insufficient privileges.
This is what I wrote and the effect ...
Enter user-name: sys as sysdba
Enter password:
Connected to:
Oracle Database 12c…
0
votes
1 answer
Set Sql to Single User mode From C# and Create Admin User
I have a c# winform application which connects to a database and read data.
This database is used by another app also. I just executed a query from my app to read some data.
I don't have the user and password of the database.
So I have to change…

Mostafa Bagheri
- 366
- 2
- 7
- 19
0
votes
1 answer
kubernetes - can't access the cluster with new user certificate
I want to create new user admin in kubernetes ,i do all the steps for creating and authorizing the certificates but when i want to access to api,i receive anuthorized error.
i do these steps to create user-admin:
1/ openssl genrsa -out user.key…

Sajjad Hadafi
- 347
- 1
- 7
- 18
0
votes
1 answer
MariaDB CREATE USER and GRANT PERMISSION not working for me
I am trying to add a user called admin in mariadb and grant them all permissions from any host.
I can see the users get added by examining the rows in mysql.user and after I create the user I see entries for 'admin'@'localost' and 'admin'@'%', but…

Nick Weavers
- 534
- 7
- 23
0
votes
1 answer
Creating a new user
Hi I am a student new to oracle application express.
I need help in creating a new user. Unfortunately I do not have the option available. I am looking for 'application access control. The screenshot that I will provide does not have that…

Sali Warrior
- 23
- 4
0
votes
0 answers
How to create user in keycloak using Nodejs / Nestjs. Getting AnyExceptionFilter:exception:JSON undefined
I'm implementating API for create users in keycloak using nestjs. Did I miss out anything?
I have 2 issues here.
im getting undefined in firstName and lastName
AnyExceptionFilter:exception:JSON undefined even I used dummy data for firstName and…

SKL
- 1,243
- 4
- 32
- 53
0
votes
1 answer
How to solve ORA-01031 - Error When Creating New User PL/SQL
I am trying to create new user in PL/SQL. I am getting an error as follows:
0
votes
1 answer
create user with extended claim with scim2 in wso2
I am trying to create a user with scim2 API in wso2 with my own extended claim
my API request
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"name": {
"familyName": "jackson",
"givenName": "kim"
},
…

ankalal
- 162
- 1
- 11
0
votes
1 answer
Django creating a new user using a form
I am trying to allow people to create an account by submitting a form. This is currently just continuing to a login screen but not creating the actual user or coming up with any errors. Debug is currently enabled.
I have tried adding an else…

Brent Lageson
- 11
- 2
0
votes
2 answers
Typo 3: Create user on FE login
The situation:
I build an authentication service that uses Basic Authentication to check if the user exists on an external database and fetches some data. The users in question only exist on the external database.
The problem:
Typo3 needs to have…

p.ott_plaspack
- 3
- 3
0
votes
1 answer
Drupal 8 CiviCRM Create user invalid session key
I have a custom module where i create custom registration forms for drupal users with different roles. It was working good till i installed CiviCRM
When a form is submitted, it says:
Sorry, due to an error, we are unable to fulfill your request…

Joris
- 119
- 9