This article mainly introduces the installation steps of October in the Laravel project. It has certain reference value. Now I share it with you. Friends in need can refer to it.
October is A free, open source, self-hosted CMS platform based on the laravel PHP framework. The laravel application ranks second on the github platform, you can use it to study. Official description: October is a content management system (CMS) and web platform whose sole purpose is to make your development workflow simple. It was born out of frustration with the existing system. We feel that building websites has become a convoluted and confusing process that leaves developers unsatisfied. We want to switch you over to the simpler side and get back to the basics. Let's install and test it with ytkah
1. Environmental requirements
PHP version 7.0 或更高 PDO PHP Extension cURL PHP Extension OpenSSL PHP Extension Mbstring PHP Library ZipArchive PHP Library GD PHP Library
2. Installation, there are two methods, wizard installation and composer install
2.1 Wizard
Download the installation package http://octobercms.com/download, unzip it to the root directory, set the writable permissions of the folder and subfolders, and visit www.*** .com/install.php to install
Check whether the system environment meets the requirements, click agree to continue
Set the database Connection, administrator account, background path settings, etc.
Click start from a theme to start downloading the cms main file package for installation. Wait patiently. It may take a long time and may take some time. Set the timeout of apache or nginx
2.2 composer install
composer create-project october/october myoctober
Open config/cms.php and set
'disableCoreUpdates' => true,
If you want to use the development version, you can set composer.json
"october/rain": "dev-develop as 1.0", "october/system": "dev-develop", "october/backend": "dev-develop", "october/cms": "dev-develop", "laravel/framework": "5.5.*@dev",
Open config/database.php and modify the database Information, very important (this system does not have .env configured, you can configure it yourself if necessary), run
composer install
The above is the entire content of this article, I hope it will be helpful to everyone Learning will be helpful. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
laravel5 under centos7 .6 How to install and use supervisor
The above is the detailed content of About the installation and configuration process of Laravel October. For more information, please follow other related articles on the PHP Chinese website!