# 默然iApp后台管理系统 **Repository Path**: zengcan/moranht ## Basic Information - **Project Name**: 默然iApp后台管理系统 - **Description**: 默然iapp后台管理系统 - **Primary Language**: PHP - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: http://mrht.moranblog.cn/ - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 33 - **Created**: 2022-06-03 - **Last Updated**: 2025-11-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 默然iapp后台管理系统 #### 介绍 默然iapp后台管理系统是一个基于[Thinkphp](https://www.thinkphp.cn/) 的后台管理系统,提供了基本的应用管理、用户管理 、卡密管理 、笔记管理 、邮箱管理 、商城管理 、论坛管理 、附件管理等功能。 #### 软件架构 thinkphp5.1+mysql实现(php>7.1) #### 安装教程 Tips:如果您使用的是宝塔系统,请您在应用商店里一键安装,省时省力 (php必须开启fileinfo扩展,否则导出卡密时会出现错误) 1. 下载源码到服务器目录 2. 解压源码 3. 设置运行目录为public(重要) 4. 配置伪静态(详情看下方) 5. 修改数据库账号密码(config/database.php) 6. 导入数据库(mrht.sql) 7. 访问域名即可 8. 安装完成 9. 开始使用 10. 后台:登录账号:admin 密码:123456 登录后台:http://域名/admin/ #### 伪静态(重要) ## Apache环境 ```html Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] ``` ## Nginx环境 ```html location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; } } ``` #### 特别鸣谢 [笔下光年 / Light Year Admin v4](https://gitee.com/yinqi/Light-Year-Admin-Template-v4) #### 其他 当服务器报这样的错误解决方法: ```html 致命错误: Call to undefined function think\response\finfo_open() ``` 相关文档:[php报think\response\finfo_open()错误解决方法](https://moranblog.cn/45.html) #### 更新介绍 1.0版本:于2022年4月16日正式发布 1.1版本: - 更新在线更新功能