Check that your PHP version and configuration is valid both for PHP Web & CLI. The following extensions are required:
In order to upgrade TRAX LRS from version 2.0.x, we recommend to install the last release of TRAX LRS
in a different location and then, to make a copy the .env
file from your previous installation.
Assuming that you want to install TRAX LRS in a folder named traxlrs:
git clone https://github.com/trax-project/trax2-extended-lrs traxlrs
cd traxlrs
composer install
The folders storage
and bootstrap/cache
must be writable both by the webserver and the console user.
Assuming that the ownership has been properly set, you should be able to assign a 0775
permission
to the folders and subfolders and a 644
permission to the files.
Check this post for further details: https://laracasts.com/discuss/channels/laravel/proper-folder-permissions.
If you are not sure how to configure this, you can use the following commands FOR TESTING PURPOSE ONLY.
chmod -R 777 bootstrap/cache
chmod -R 777 storage
For security reasons, only the public
folder should be accessible by the web server.
Create a virtual host and configure the document root to traxlrs/public
.
Create an empty database with the utf8mb4_unicode_ci
encoding.
Then, at the root of the application folder, make a copy of the .env.example
file,
rename it .env
and enter your database settings.
MySQL/MariaDB example:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=traxlrs
DB_USERNAME=root
DB_PASSWORD=
PostgreSQL example:
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=5432
DB_DATABASE=traxlrs
DB_USERNAME=postgres
DB_PASSWORD=aaaaaa
DB_SCHEMA=public
In the .env
file, you must set the public URL of your TRAX LRS application :
APP_URL=http://traxlrs.test
php artisan key:generate
php artisan migrate
You can now create an admin account with the following command. This will give your credentials to log into the application.
php artisan admin:create
Additional commands and options are documented in Users & Roles.
You should review all the configuration options of TRAX LRS before starting to use it. Please, refer to the configuration page to get more details.
TRAX LRS needs to perform some tasks on a regular basis. Please, refer to the CRON jobs page to get more details.
In the .env
file, change settings from:
APP_ENV=local
APP_DEBUG=true
To:
APP_ENV=production
APP_DEBUG=false
Finally, check the configuration documentation, as well as the performances optimization documentation.
If you get this error during the php artisan migrate
command, check your version of MySQL or MariaDB.
Since TRAX LRS 2.0.2, MySQL versions older than 5.7.7 are not supported anymore.
MariaDB versions older than 10.3 are not supported.
TRAX LRS has a /public/.htaccess
file with some Apache directives.
When these directives are ignored by Apache, this leads to a 404 error.
In this case, check the httpd.conf
file of Apache and try to set the AllowOverride
option to All
:
<Directory "path/to/laravel/project/public">
Allowoverride All
</Directory>