We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm testing 3.2pre with my existing projects under LWC 3.1 and 3.2 before jcommunity upgrade.
As mentionned in issues docker-lizmap, we cannot use the lizmap_var directory created with an old version of LWC.
If we have hundrerd users in jauth.db, we need a tool to (auto-) convert the old to the new.
So, how to export from old and import in the new.
JLS
The text was updated successfully, but these errors were encountered:
This SQL has fixed the problem of old jauth.db with existing users.
I have simply added the new fields in jlx_user :
ALTER TABLE jlx_user ADD status INTEGER DEFAULT ''; ALTER TABLE jlx_user ADD keyactivate VARCHAR(50) DEFAULT ''; ALTER TABLE jlx_user ADD request_date datetime DEFAULT ''; ALTER TABLE jlx_user ADD create_date datetime DEFAULT ''; UPDATE jlx_user SET status = 1; UPDATE jlx_user SET create_date = '2018-03-27';
ALTER TABLE jlx_user ADD status INTEGER DEFAULT '';
ALTER TABLE jlx_user ADD keyactivate VARCHAR(50) DEFAULT '';
ALTER TABLE jlx_user ADD request_date datetime DEFAULT '';
ALTER TABLE jlx_user ADD create_date datetime DEFAULT '';
UPDATE jlx_user SET status = 1;
UPDATE jlx_user SET create_date = '2018-03-27';
I m not sure the 2 last lines are mandatory
Then, i replace (empty/blank) new version jauth.db by the old one edited with the above sql.
Sorry, something went wrong.
@laurentj this issue still remains ?
@jlstanus if you use a normal upgrade from 3.1 to 3.2, the database jauth.db will be updated.
@jlstanus We cannot reproduce the issue. If it still remain, please provide a full list of steps to help us to reproduce the issue.
Now it's ok.
Thanks
laurentj
No branches or pull requests
Hello,
I'm testing 3.2pre with my existing projects under LWC 3.1 and 3.2 before jcommunity upgrade.
As mentionned in issues docker-lizmap, we cannot use the lizmap_var directory created with an old version of LWC.
If we have hundrerd users in jauth.db, we need a tool to (auto-) convert the old to the new.
So, how to export from old and import in the new.
JLS
The text was updated successfully, but these errors were encountered: