💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# :-: 手动安装 ## 手动安装 1.创建数据库,倒入数据库文件 数据库文件目录/public/install/zhishifufei.sql 2.修改数据库连接文件 配置文件路径/application/database.php // 数据库类型 'type' => 'mysql', // 服务器地址 'hostname' => '127.0.0.1', // 数据库名 'database' => 'crmeb', // 用户名 'username' => 'user\_crmeb', // 密码 'password' => 'K3YWFKYAwh1cWJrG', // 端口 'hostport' => '3306', // 连接dsn 'dsn' => '', // 数据库连接参数 'params' => \[\], // 数据库编码默认采用utf8 'charset' => 'utf8', // 数据库表前缀 'prefix' => 'eb\_', // 数据库调试模式 'debug' => true, // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器) 'deploy' => 0, // 数据库读写是否分离 主从式有效 'rw\_separate' => false, // 读写分离后 主服务器数量 'master\_num' => 1, // 指定从服务器序号 'slave\_no' => '', // 是否严格检查字段是否存在 'fields\_strict' => false, // 数据集返回类型 'resultset\_type' => '\\think\\Collection', // 自动写入时间戳字段 'auto\_timestamp' => false, // 时间字段取出后的默认时间格式 'datetime\_format' => 'Y-m-d H:i:s', // 是否需要进行SQL性能分析 'sql\_explain' => false, 3. 修改目录权限(linux系统)777 /public /runtime 4. 后台登录: [http://域名/admin](http://xn--eqrt2g/admin) 默认账号:admin 密码:[123456](http://crmeb.com/) 5. 注释掉入口文件index.php ~~~ if(file_exists("./install/") && !file_exists("./install/install.lock")){ if($_SERVER['PHP_SELF'] != '/index.php'){ header("Content-type: text/html; charset=utf-8"); exit("请在域名根目录下安装,如:<br/> www.xxx.com/index.php 正确 <br/> www.xxx.com/www/index.php 错误,域名后面不能圈套目录, 但项目没有根目录存放限制,可以放在任意目录,apache虚拟主机配置一下即可"); } header('Location:/install/index.php'); exit(); } ~~~ 上一篇:[运行环境](https://help.crmeb.net/crmeb_zsff/1514720)下一篇:[win+phpstudy8 安装教程](https://help.crmeb.net/crmeb_zsff/1514722)