The wizard installation is the recommended way to install October for non-technical users. It is simpler than the command-line installation and doesn't require any special skills.
- Prepare a directory on your server that is empty. It can be a sub-directory, domain root or a sub-domain.
- Download the installer archive file.
- Unpack the installer archive to the prepared directory.
- Grant writing permissions on the installation directory and all its subdirectories and files.
- Navigate to the install.php script in your web browser.
- Follow the installation instructions.
October CMS has a few system requirements:
- PHP version 8.0 or higher
- PDO PHP Extension
- cURL PHP Extension
- OpenSSL PHP Extension
- Mbstring PHP Extension
- ZipArchive PHP Extension
- GD PHP Extension
- SimpleXML PHP Extension
- 128MB or more allocated memory
Some OS distributions may require you to manually install some of the required PHP extensions.
When using Ubuntu, the following command can be run to install all required extensions:
sudo apt-get update &&
sudo apt-get install php php-ctype php-curl php-xml php-fileinfo php-gd php-json php-mbstring php-mysql php-sqlite3 php-zip
To install the platform using the command line, initialize a project using the create-project
command in the terminal. The following command creates a new project in a directory called myoctober:
composer create-project october/october myoctober
For further information, visit the documentation for installation instructions.