mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Removed htaccess example files
Started updating changelog
This commit is contained in:
@@ -1,5 +0,0 @@
|
|||||||
AuthType Basic
|
|
||||||
AuthName "queXS CATI: Authentication Required"
|
|
||||||
AuthUserFile /var/opt/quexs/htpasswd
|
|
||||||
AuthGroupFile /var/opt/quexs/htgroup
|
|
||||||
require group interviewers
|
|
||||||
11
CHANGELOG
11
CHANGELOG
@@ -1,23 +1,28 @@
|
|||||||
queXS 1.14.0 - Changes since 1.13.1
|
queXS 1.14.0 - Changes since 1.13.1
|
||||||
|
|
||||||
|
|
||||||
|
File changes for session authentication:
|
||||||
|
|
||||||
|
If you have copied or used
|
||||||
|
|
||||||
Database changes for session authentication:
|
Database changes for session authentication:
|
||||||
|
|
||||||
/* 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
|
||||||
FROM operators
|
FROM operator
|
||||||
WHERE operator_id = 1;
|
WHERE operator_id = 1;
|
||||||
|
|
||||||
/* Make all other users operators - with default password of: password */
|
/* Make all other users operators - 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, 1, 'auto', 0
|
SELECT username, '0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438', firstName, 1, 'auto', 0
|
||||||
FROM operators
|
FROM operator
|
||||||
WHERE operator_id != 1;
|
WHERE operator_id != 1;
|
||||||
|
|
||||||
/* Make all clients - with default password of: password */
|
/* Make all clients - 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, 1, 'auto', 0
|
SELECT username, '0x35653838343839386461323830343731353164306535366638646336323932373733363033643064366161626264643632613131656637323164313534326438', firstName, 1, 'auto', 0
|
||||||
FROM clients
|
FROM client
|
||||||
WHERE 1;
|
WHERE 1;
|
||||||
|
|
||||||
/* Remove redundant table */
|
/* Remove redundant table */
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
AuthType Basic
|
|
||||||
AuthName "queXS CATI: Authentication Required"
|
|
||||||
AuthUserFile /var/opt/quexs/htpasswd
|
|
||||||
AuthGroupFile /var/opt/quexs/htgroup
|
|
||||||
require group admin
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
AuthType Basic
|
|
||||||
AuthName "queXS CATI: Authentication Required"
|
|
||||||
AuthUserFile /var/opt/quexs/htpasswd
|
|
||||||
AuthGroupFile /var/opt/quexs/htgroup
|
|
||||||
require group clients
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
AuthType None
|
|
||||||
Satisfy Any
|
|
||||||
Order Deny,Allow
|
|
||||||
Allow from All
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
AuthType Basic
|
|
||||||
AuthName "queXS CATI: Authentication Required"
|
|
||||||
AuthUserFile /var/opt/quexs/htpasswd
|
|
||||||
AuthGroupFile /var/opt/quexs/htgroup
|
|
||||||
require group admin
|
|
||||||
Satisfy Any
|
|
||||||
Order Deny,Allow
|
|
||||||
Deny from all
|
|
||||||
Reference in New Issue
Block a user