Skip to content

Server requirements

The web application is based on the Fat-Free Framework so they share the same server requirements: please refer to the system requirements

  • PHP 8.2 or greater.
  • PHP CURL and JSON extensions enabled.
  • Your server must handle the PUT HTTP Method. Otherwise, please ask your webhost to enable it.
  • WooCommerce 7+
  • WordPress 6+

If you are using:

  • Apache Server: mod_rewrite and mod_headers must be enabled. There are some .htaccess files dedicated for Apache.
  • Windows Server, the corresponding web.config file is available. You can delete .htaccess files.
  • NGINX, be sure to convert the rewrite rules available in .htaccess to import them into your NGINX configuration. See Converting Apache rewrite rules to NGINX

This involves editing the server configuration file, typically located at `/etc/nginx/sites-available/yourdomain` or `/etc/nginx/nginx.conf`. Inside this file, you’ll need to include `try_files $uri $uri/ /index.php?$args;` within the server block to handle the rewriting. Ensure that you restart the NGINX server after making changes for them to take effect.