mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Updated changelog with more instructions
This commit is contained in:
26
CHANGELOG
26
CHANGELOG
@@ -1,12 +1,36 @@
|
|||||||
queXS 1.14.0 - Changes since 1.13.1
|
queXS 1.14.0 - Changes since 1.13.1
|
||||||
|
|
||||||
|
|
||||||
|
Changes for session authentication:
|
||||||
|
|
||||||
|
queXS now uses the Limesurvey session based authentication system to authenticate all users.
|
||||||
|
Sessions are stored in the lime_sessions table and are managed by adodb.
|
||||||
|
|
||||||
|
If this is a fresh install - you can ignore the notes below. Otherwise - please read through
|
||||||
|
the following for converting from directory based authentication to session based authentication.
|
||||||
|
|
||||||
File changes for session authentication:
|
File changes for session authentication:
|
||||||
|
|
||||||
If you have copied or used
|
If you have used the example .htaccess files or created your own, and you want to move to purely
|
||||||
|
session based authentication, you can remove these files. They are typcially at these locations:
|
||||||
|
|
||||||
|
.htaccess
|
||||||
|
client/.htaccess
|
||||||
|
admin/.htaccess
|
||||||
|
include/limesurvey/.htaccess
|
||||||
|
include/limesurvey/admin/.htaccess
|
||||||
|
|
||||||
|
This will remove restrictions for access via directory based authentication and rely solely on session authentication.
|
||||||
|
|
||||||
Database changes for session authentication:
|
Database changes for session authentication:
|
||||||
|
|
||||||
|
These queries will:
|
||||||
|
1. Make the first queXS user an admin user, and assign them the password "password"
|
||||||
|
2. Make all other users regular users, and assign them the password "password"
|
||||||
|
3. Make all clients regular clients, and assign them the password "password"
|
||||||
|
|
||||||
|
Once you have run these - please go to the operator management page and update passwords for all users.
|
||||||
|
|
||||||
/* Make the first user the admin user - with default password of: password */
|
/* Make the first user the admin user - with default password of: password */
|
||||||
INSERT INTO `lime_users` (`users_name`, `password`, `full_name`, `parent_id`, `lang`, `superadmin`)
|
INSERT INTO `lime_users` (`users_name`, `password`, `full_name`, `parent_id`, `lang`, `superadmin`)
|
||||||
SELECT username, '0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438', firstName, 0, 'auto', 1
|
SELECT username, '0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438', firstName, 0, 'auto', 1
|
||||||
|
|||||||
Reference in New Issue
Block a user