new user
OpenID at registering as new user
Hi all,
there's one thing about this OpenID feature. I've been searching to find the answer for this question, but I didn't succeeded. The main idea is to use single login and password for variety of sites. So far so good. Correct me if I'm wrong, but if you're asking for new account, you have to provide some non-OpenID password in order to log in for the first time and only after that you're able to define your OpenID identity.
Would it be possible to skip defining non-OpenID password and to use OpenID identity straight at registering as a new user?
dalibor
Postgresql, Drupal 5.7, phpBB 3.0.0 - creating a new user (at the end of step install_module)
Fresh install this time with Drupal 5.7 and stabile release of phpBB3 forum.
First time i had problems with sequences.
This can be easy done like this:
connect with database:
~ $ psql drupal_db
To view sequence tables:
drupal_db=> \ds
And there i found sequence table that i looking for
drupal_db=> SELECT * FROM drupal_users_uid_seq;
First have to restart it
drupal_db=> ALTER SEQUENCE drupal_users_uid_seq RESTART WITH 1000;
and than fix minimal value
