|
楼主 |
发表于 2008-11-21 17:56:47
|
显示全部楼层
问题出在.htaccess
- RewriteEngine on
- RewriteCond $1 !^(index\.php|js|css|images|tmp|public|robots\.txt)
- RewriteRule ^(.*)$ /index.php/$1 [L]
复制代码
对tmp文件做一个设置就成了,
不过我在用的过程中发现另一个问题,我现在用的是CI 1.7
在和freakauth结合的时候出现了一些新的问题
就是在 file: application/models/usermodel.php 中的getAdmins()
其中的$this->db->where_in('role',array('admin','superadmin'));
这样用之后,生成的sql为
$sql = "select id from (prex_user) where `role='admin'` and role='superadmin'";
注意`role='admin'`
我想应该是版本的问题.
我改为$this->db->where_in('role',array('admin','superadmin'));就没有问题.
现在没有时间,有时间要去追一下代码,可能是CI的一个BUG(猜测) |
|