FAQ
Mistakes can happen, but not necessarily from GYM One, but here are the most common mistakes and their solutions.
The home page works, but the other pages give 404 errors
URL transcription is not activated, it just needs to be activated (see next question).
Apache2 URL rewrite
Edit the Apache2 configuration (by default in /etc/apache2/sites-available/000-default.conf
) and add these lines to the 'VirtualHost'
tags:
<Directory "/var/www/html">
AllowOverride All
</Directory>
Enable Apache2
rewrite module:
a2enmod rewrite
After that, restart Apache2:
service apache2 restart
When uploading an image, the file was not uploaded
The problem occurs when you upload an image larger than the maximum size allowed by PHP (2 MB by default).
In the PHP configuration (in the php.ini
file), you can change the maximum size allowed when uploading by changing the following values:
upload_max_filesize = 10M
post_max_size = 10M
It is strongly recommended that you do not change it, as large images can increase the load time of your site and affect search engine optimization. Instead, it is recommended to reduce the image size (below 1 MB).
HTTPS redirection on Apache2
Add these lines after RewriteEngine On
in the .htaccess
file to the main folder of your site:
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
Modify database data
You can modify the database data by editing the .env
file in the root directory of the site (you may need to activate hidden files).