Name | Modified | Size | Downloads / Week |
---|---|---|---|
DB_Examples | 2013-12-22 | ||
database_queries | 2013-11-22 | ||
Old_Versions | 2013-09-07 | ||
Pictures | 2012-09-14 | ||
status_quo_v3.1.2.zip | 2014-04-21 | 981.5 kB | |
status_quo_v3.1.1.zip | 2014-03-28 | 981.3 kB | |
status_quo_v3.1.zip | 2013-12-27 | 979.3 kB | |
status_quo_v2.3.1.zip | 2013-11-26 | 981.6 kB | |
status_quo_v2.3.zip | 2013-11-22 | 932.9 kB | |
README.txt | 2013-10-01 | 1.4 kB | |
status_quo_v2.2.zip | 2013-10-01 | 922.0 kB | |
status_quo_v2.1.zip | 2013-09-08 | 922.0 kB | |
status_quo_v2.0.zip | 2013-09-07 | 922.0 kB | |
StatusQuo_v1.3.zip | 2012-09-14 | 938.0 kB | |
StatusQuo_v1.2.zip | 2012-09-12 | 937.7 kB | |
StatusQuo_v1.1.zip | 2012-09-06 | 936.4 kB | |
StatusQuo_v1.0.zip | 2012-09-06 | 936.5 kB | |
Totals: 17 Items | 11.4 MB | 0 |
HOW TO: 1. Use phpMyAdmin (http://www.phpmyadmin.net/) to install the blank database with the ZIP file (create_database.sql.zip). If you wish to use the DB_Examples, after you run the ZIP file (create_database.sql.zip) you may import the status_quo example tables with phpMyAdmin. 2. Next, copy the content of www to the respective folder of your machine and give the permissions 755. NOTES: * You may run the software in Windows with a WAMP server (http://www.wampserver.com/en/) * All users have the Password '1111' and the root user has the password 'root'. Use the refered DB_Examples if it's the first time you use this software. * Configure PHP to ingnore strict errors in the PHP.ini file: error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT * Since version 2.3, to select a Team or a Class, you should use the tab USE THIS IDENTITY or USE THIS CONTEXT while viewing a Team or a Class respectively. * The software expects the follwing access to the status_quo database in the Mysql: // For database access define('DB_SERVER', 'localhost'); define('DB_USER', 'status_quo'); define('DB_PASSWORD', 'foobar'); define('DB_NAME', 'status_quo'); * Same to type in the MySQL command line: GRANT ALL ON status_quo.* TO 'status_quo'@'localhost' IDENTIFIED BY 'foobar'; * See the file constants.php in the folder includes to further adjustments.