1.去Chevereto下载官方免费代码:

https://github.com/Chevereto/Chevereto-Free

2.将压缩包上传到网站根目录,并在宝塔文件程序里解压缩压缩包

4
4

查看app文件包里有没有settings.php如果有,赋予777权限

如果打开网站时提示:Chevereto can’t create the app/settings.php file. You must manually create this file.这是app目录缺少settings.php文件

需要在app目录下新建一个空文件命名:settings.php赋予777权限

3.浏览器输入域名,进行安装

进入域名后显示404,这是伪静态没设置

location / {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}
try_files $uri $uri/ /api.php;
}
location /admin {
try_files $uri /admin/index.php?$args;
}

在宝塔面板点击网站,找到域名网站,点击设置-伪静态,在空白处输入以上代码,保存!

3
3

4.进行程序安装

1.连接database 输入namepassword

2
2

2.输入后台admin信息,点击Install Chevereto完成安装

2
2

3.进入点击设置修改个人信息,语言,时区,等后台信息

6
6

4.点击仪表盘-设置可以对网站进行各种设置

4
4

https://chevereto.com/docs/install