14 Star 66 Fork 24

Gitee 极速下载/openbi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/openBI-kwc/openBI
克隆/下载
FAQ.md 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
SR.李 提交于 4年前 . faq修改

常见问题

  • 安装部署后无法登录,提示500错误

    答:取消禁用php函数 putenv(在php.ini的disable_function中将 putenv删除)

  • 安装部署后无法登录,提示404错误

    答:web服务器新增伪静态

    ## nginx
    location / {
    	if (!-e $request_filename) {
    		rewrite ^(.*)$ /index.php?s=/$1 last; 			
    		break; 
    	} 
    }
    
    ## apache
    <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>
    
  • 若遇到乱码问题

    答:1.检查数据库字符集是否异常

    ​ 2.检查数据库版本(建议采用mysql5.6、mysql5.7)

     3.暂时不建议使用maridb
    
  • 样式异常问题

    答:推荐以下浏览器

      1. chrome(谷歌浏览器)
      	2. firefox(火狐浏览器)
      	3.  edge(新版edge)
    
  • 其他问题

    提交issue

    或者加qq群:328601229

Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/mirrors/openbi.git
git@gitee.com:mirrors/openbi.git
mirrors
openbi
openbi
main

搜索帮助