Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
TestArena/INSTALLATION
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (36 sloc)
1.55 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installation Guide (TestArena v.3.1.1076) | |
1. Recommended requirements: | |
- PHP 5.6 | |
- Apache version 2.4 | |
- MySQL >= 5.5 | |
Additional non-standard php extensions: | |
- php_gd2 | |
- php_mbstring | |
Additional apache modules: | |
- mod_rewrite | |
2. Installation steps: | |
2.1. Extract files from the .zip file to an empty directory. Copy all the application files and directories to the directory on the server assigned for TestArena. | |
2.2. Modify the file /application/configs/application.ini applying your personal settings i.e.: | |
- database | |
- mailbox | |
- website adress (domain) | |
- recaptcha V2 publicKey and privateKey at http://www.google.com/recaptcha/admin | |
2.3. Direct a domain assigned in step 2.2 to the directory /public which contains the main index.php file. | |
2.4. Import the file located at /docs/change_log/testarena_db.sql to the created database. | |
2.5. Set write permissions for the following directories: | |
/public/upload | |
/public/captcha | |
/logs | |
/cache | |
/temp | |
and their subdirectories. | |
2.6. Change line 33 in /application/const.php | |
from: | |
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'development')); | |
to | |
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production')); | |
3. Predefined log in data: | |
Login: administrator@testarena.pl | |
Password: 12qwAS | |
4. Migration steps from 3.0 to 3.1: | |
In release 3.1.1076 there are many changes to application structure and logic. Anyone who want's to migrate from older versions of TestArena, please contact us at http://testarena.pl/kontakt to get help with migration. | |