软件资源管理下载系统全新带勋章功能 + Uniapp前端https://www.njymz.com/6366.html
搭建教程:
(php必须开启fileinfo扩展,否则导出卡密时会出现错误)
- 下载源码到服务器目录
- 解压源码
- 设置运行目录为public(重要)
- 配置伪静态(详情看下方)
- 修改数据库账号密码(config/database.php)
- 访问域名即可
- 安装完成
- 开始使用
- 后台:登录账号:admin 密码:123456 登录后台:http://域名/admin/
伪静态(重要)
Apache环境
html
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
`
Nginx环境
`html
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
`
错误处理:
其他
当服务器报这样的错误解决方法:
“`html
致命错误: Call to undefined function think\response\finfo_open()
“`
相关文档:[php报think\response\finfo_open()错误解决方法]
致命错误: Call to undefined function think\response\finfo_open()
后面排查了一下,原来是服务的php扩展没安装,我用的宝塔,所以就说下宝塔怎么安装!
我们先看一下项目的php版本,然后去软件商店找到相对应的php版本
点开设置,安装这个fileinfo这个扩展
然后项目就正常了!!
本文来自投稿,不代表本站立场,如若转载,请注明出处: