| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| This folder has no files. | |||
| Totals: 0 Items | 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.