https://github.com/octobercms/install
Installation wizard for October CMS
https://github.com/octobercms/install
Last synced: 2 months ago
JSON representation
Installation wizard for October CMS
- Host: GitHub
- URL: https://github.com/octobercms/install
- Owner: octobercms
- Created: 2013-12-23T07:34:16.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-09-26T01:57:12.000Z (9 months ago)
- Last Synced: 2025-03-28T17:08:14.560Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 1.16 MB
- Stars: 123
- Watchers: 11
- Forks: 91
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation Wizard for October CMS
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.
1. Prepare a directory on your server that is empty. It can be a sub-directory, domain root or a sub-domain.
1. [Download the installer archive file](https://github.com/octobercms/install/archive/master.zip).
1. Unpack the installer archive to the prepared directory.
1. Grant writing permissions on the installation directory and all its subdirectories and files.
1. Navigate to the install.php script in your web browser.
1. Follow the installation instructions.### Minimum System Requirements
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### OS Dependencies
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:
```bash
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
```## Installation with Command Line (Composer)
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**:
```bash
composer create-project october/october myoctober
```For further information, visit the [documentation for installation instructions](https://docs.octobercms.com/3.x/setup/installation.html).