About the installation and configuration process of Laravel October

不言
Release: 2023-04-03 08:18:02
Original
2229 people have browsed it

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
Copy after login

 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

About the installation and configuration process of Laravel October

Check whether the system environment meets the requirements, click agree to continue

About the installation and configuration process of Laravel October

Set the database Connection, administrator account, background path settings, etc.

点击start from a theme开始下载October cms主文件包进行安装

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
Copy after login

Open config/cms.php and set

'disableCoreUpdates' => true,
Copy after login

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",
Copy after login

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
Copy after login

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:

Laravel development environment deployment homestead installation and configuration process (windows system)

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!