Skip to content
Anton Romanov edited this page Jun 22, 2017 · 7 revisions

System requirements

  • Apache web server (mod_rewrite module required).
  • PHP 7.0 or higher (Multibyte String, GD, SimpleXML, DOM extensions required).
  • MySQL database.

Common installation

  1. Download the latest version of Cadmium CMS and unzip it.
  2. Upload contents of the www directory into the root directory of your web server.
  3. CHMOD following directories to 755 (or 777):
  • /engine/System/Classes/Addons
  • /engine/System/Data
  • /engine/System/Languages
  • /engine/System/Templates
  • /uploads
  1. Create a MySQL database.
  2. Go to your-site.com/install.php and follow installation instructions.

Installing in a subdirectory

This guide describes installing in a directory named /custom/dir.

  1. Download the latest version of Cadmium CMS and unzip it.
  2. Open www/.htaccess in a text editor and edit two lines of the file:
  • Replace SetEnv INSTALL_PATH / with SetEnv INSTALL_PATH /custom/dir
  • Replace RewriteBase / with RewriteBase /custom/dir
  1. Upload contents of the www directory into the /custom/dir directory on your server.
  2. CHMOD following directories to 755 (or 777):
  • /custom/dir/engine/System/Data
  • /custom/dir/uploads
  1. Create a MySQL database.
  2. Go to your-site.com/custom/dir/install.php and follow installation instructions.
Clone this wiki locally