mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Change default location of ADODB and update README
This commit is contained in:
13
README.md
13
README.md
@@ -2,7 +2,7 @@
|
||||
|
||||
An Open Source, web based, CATI system
|
||||
|
||||
queXS can operate your outbound telephone research centre. It integrates with the Asterisk VoIP Server, uses AAPOR Standard Outcome codes and only requires a web browser to operate.
|
||||
queXS can operate your outbound telephone research centre. It integrates with Limesurvey for questionnaire design and administration, the Asterisk VoIP Server, uses AAPOR Standard Outcome codes and only requires a web browser to operate.
|
||||
|
||||
Unless otherwise stated in the code, the code for queXS is licenced under the GPL-v2. All included code has been checked for compatability with this licence.
|
||||
|
||||
@@ -12,15 +12,15 @@ Development for queXS occurs on Launchpad: https://launchpad.net/quexs
|
||||
|
||||
If you have a previous version of queXS installed, please check the CHANGELOG file for details of how to upgrade
|
||||
|
||||
##Requirements
|
||||
##Requirements (Ubuntu 16.04)
|
||||
|
||||
`apt-get install php5 mysql-server php5-mysql unzip php5-mbstring
|
||||
`apt-get install php mysql-server php-mysql unzip php-mbstring libphp-adodb
|
||||
|
||||
##Installation (from 1.14.0)
|
||||
##Installation (from queXS 1.15.0)
|
||||
|
||||
```
|
||||
#Download and extract queXS to your webroot
|
||||
unzip quexs-1.14.1.zip -d /var/www/html
|
||||
unzip quexs-1.15.0.zip -d /var/www/html
|
||||
cd /var/www/html/quexs
|
||||
#Create a MySQL/mariadb database
|
||||
mysqladmin create quexs
|
||||
@@ -30,9 +30,6 @@ mysql -uroot quexs < database/quexs.sql
|
||||
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
|
||||
#Create the default config file
|
||||
cp config.inc.local.php.example config.inc.local.php
|
||||
#Update file permissions
|
||||
chown www-data:www-data -R include/limesurvey/tmp/
|
||||
chown www-data:www-data -R include/limesurvey/upload/
|
||||
```
|
||||
|
||||
Then browse to the queXS URL and login using the default credentials (admin/password)
|
||||
|
||||
@@ -172,7 +172,7 @@ if (!defined('PHP_EXEC')) define('PHP_EXEC', "php");
|
||||
/**
|
||||
* Path to ADODB
|
||||
*/
|
||||
if (!defined('ADODB_PATH')) define('ADODB_PATH',dirname(__FILE__).'/include/limesurvey/classes/adodb/');
|
||||
if (!defined('ADODB_PATH')) define('ADODB_PATH','/usr/share/php/adodb/');
|
||||
|
||||
/**
|
||||
* Whether to automatically assign a call as complete if VoIP disabled at the end of a completed questionnaire
|
||||
@@ -268,7 +268,7 @@ if (!defined('DB_USER')) define('DB_USER', 'quexs');
|
||||
if (!defined('DB_PASS')) define('DB_PASS', 'quexs');
|
||||
if (!defined('DB_HOST')) define('DB_HOST', 'localhost');
|
||||
if (!defined('DB_NAME')) define('DB_NAME', 'quexs');
|
||||
if (!defined('DB_TYPE')) define('DB_TYPE', 'mysqlt');
|
||||
if (!defined('DB_TYPE')) define('DB_TYPE', 'mysqli');
|
||||
|
||||
/**
|
||||
* The prefix for the limesurvey database
|
||||
|
||||
Reference in New Issue
Block a user