Install

System Requirements

To run GYM One, you simply need a PHP web server with at least 100 MB of disk space and the following requirements:

  • PHP 8.1 or higher
  • URL Rewrite
  • Bcmath PHP extension
  • Calendar PHP extension
  • Random PHP extension
  • Readline PHP extension
  • Mysqlnd PHP extension
  • Bz2 PHP extension
  • Simplexml PHP extension
  • Apache2handler PHP extension
  • OpenSSL PHP extension
  • Curl PHP extension
  • Fileinfo PHP extension
  • Gd PHP extension
  • Gettext PHP extension
  • Mbstring PHP extension
  • Exif PHP extension
  • Mysqli PHP extension
  • Pdo_mysql PHP extension
  • Pdo_sqlite PHP extension
  • Phar PHP extension
  • Ftp PHP extension

Using MySQL database is highly recommended!

Requirements to install on a Linux-based server

In the case of shared hosting, the necessary requirements are probably already installed, so you can proceed directly with the installation!

If you use a VPS or dedicated server, you will probably need to install a web server, PHP and MySQL. On Ubuntu servers, you can do this with the following commands:

sudo apt update

sudo apt install apache2

sudo apt install php libapache2-mod-php php-mysql php-bcmath php-calendar php-readline php-mbstring php-curl php-gd php-xml php-zip php-openssl php-fileinfo php-ftp php-pdo php-mysqli php-simplexml php-bz2 php-exif php-pdo-sqlite php-xmlreader php-xmlwriter

sudo apt install mysql-server

sudo apt install phpmyadmin

sudo systemctl restart apache2

sudo mysql_secure_installation

Once you have installed the requirements, you need to configure the web server. Explanations can be found at the bottom of this page.

Install

GYM One offers an automatic installer that allows you to easily install the software by following these few steps:

  1. Download the latest version of the GYM One installer from our website!

  2. Unzip the installer to the main folder of your website.

  3. Set read/write permissions for the main folder of the web server:

    chmod -R 777 /var/www/gymone

    (just replace /var/www/gymone with the location of your site)

    chown -R www-data:www-data /var/www/gymone

    (for /var/www/gymone, type the location of your site, and for www-data, type the web server user)

  4. Go to your website and follow the installation steps.

Once the installation is complete, to avoid problems, make sure that the website cannot be accessed directly from the IP address of the server (e.g. http://0.0.0.0).

Web server configuration

Apache2

If you use Apache2, you may need to enable URL rewriting.

First enable the 'rewrite' mode:

a2enmod rewrite

You then need to modify the Apache2 configuration (by default in /etc/apache2/sites-available/000-default.conf) and add the following lines to the VirtualHost tags (replacing var/www/gymone with your site location) to allow URL rewriting:

<Directory "/var/www/gymone">
    Options FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>

Finally, you just need to restart Apache2:

service apache2 restart