Questions tagged [registration]

Registration is a process through which a person or entity provides some necessary information about himself to the company or other entity he/it wants to be registered with.

2601 questions
0
votes
1 answer

Drupal 7 events in multiple places - many to many relationship

We need to make many-to-many references in Drupal 7. We have 2 entities named : sport activities fitness clubs (physical places) Here are some rules concerning the entity relation : each sport activities can be practised in different fitness…
davidvera
  • 673
  • 11
  • 29
0
votes
1 answer

Android User Registration

I'm toying with Android at the moment as a learning experience and one of the things i'd like to do is make a basic app that when the app is launched for the first time the user is requested to register/login, these registration details are then…
0
votes
0 answers

Wordpress spam Admin account

I noticed that there is someone who registers himself as admin, his role is "Administrator", and can change my website settings. I keep delete him, and he then adds himself again. I just get email confirmation "New User Registeration", and then I…
0
votes
2 answers

sfDoctrineGuard Plugin and registration form

Since yesterday i'm trying to develop a form in ajax, inserting data to sf_guard_user table and a table called user (here is the profile). The guard table has two collumns "email" and "password" to login, and "user" to retrieve data once logged…
Federico Hoerth
  • 255
  • 3
  • 8
0
votes
3 answers

How to check if a textbox has any text in it? C#

I'm creating a registration form, and I need to make sure that all of the fields are filled in. If they aren't, the user will get a message box when they click "register" stating that they need to fill all fields in. It would be set like this: If…
Corey
  • 31
  • 3
0
votes
2 answers

grails registration page

I use grails and I have few registration pages.When user enter few textField values, with "Next" link user have to go to the other page.... After user entered all values data have to be saved. My problem is that I do not know how to take one page's…
Bella
  • 185
  • 1
  • 7
  • 19
0
votes
1 answer

Domain Ownership Criteria (.eu)

Depending on the outcome of discussions political in the UK, we may lose the right to hold .eu domains on the 29th of the month. This is mandated by EurID who hold authority over the .eu…
Rob
  • 143
  • 5
0
votes
1 answer

Spring MVC default Authentication How to add a user / registration

When I include spring-boot-starter-security in my project, it automatically creates a new database Table "users" which leads me to believe that it would automatically authenticate against entries in that table when trying to login on the login-page…
Juliette
  • 606
  • 7
  • 25
0
votes
3 answers

db2 database couldn't check if username already exists

I am creating a simple registration page using IBM Db2 and PHP and all my data is saved in the Db2 database. However, I can't keep the constraint of already existing username. It is registering the user even if the username is already there in Db2.…
0
votes
1 answer

Keycloak login and register actions not https

I have nginx that will handle https, but the login and register forms of keycloak have http actions and I can't find a way to set them to https. Making them to https in the browser works correctly. There are two…
Borislav Stoilov
  • 1,684
  • 1
  • 13
  • 28
0
votes
1 answer

Verifying password hash in PHP

I know this should be simple but I'm having some trouble trying to verify the password hash during login. Had this in my registration handler: else { $hash = password_hash($pass, PASSWORD_BCRYPT); $query = "INSERT INTO users (user_name,…
0
votes
0 answers

FOSUserBundle doesn't detect duplicated username

If I override register.html.twig from FOSUserBundle, registration does work properly but when a duplicated username or email is entered, instead of showing an error message I get a UniqueConstraintViolationException. I saw this solution but it…
K. Weber
  • 2,411
  • 5
  • 37
  • 62
0
votes
0 answers

iPhone app crash when registering for push notification

I am finalizing an IOS app (xcode9, swift 4) using pushpad. When the app installs it asks the user to register "Notifications", then runs NetworkService: PushNotificationsNetworkable and more specifically : self.networkRequest(request, session:…
0
votes
2 answers

how to validate unique combination of two fields in Laravel?

I am trying to add validation constraints on the registration of a new user and I want the combination of two fields be unique in the database. The error that i get is from the database saying i have a integrity constraint violation. the table I…
Red Eyez
  • 157
  • 2
  • 13
0
votes
1 answer

Symfony - sfGuardPlugin - Registration

I'm new in Symfony community so sorry if I'm asking about the topic which was already discussed. I'm trying to use sfGuardPlugin in my project. Everything seems to be ok. The problem is that I don't really know how to easy implement registration…