第一次在這裏發佈喜歡的網站。codeigniter tank_auth無法查看默認表格
所以我開始使用CodeIgniter,並希望將acl添加到我的網站。 搜索並閱讀了很多,並決定與坦克認證一起去。使用
: 笨2.1.4
罐權威性主
IIS
下載一切跑到連接到數據庫,並沒有什麼...
我無法查看腳本在視圖/ auth文件夾中的register_form.php
或任何視圖,所有我得到的是一個空白頁面沒有錯誤或任何東西。我認爲它的路由問題,我嘗試了100個不同的東西,並無法得到任何東西旁邊的空白頁。
任何想法如何解決這個問題?
您的幫助將不勝感激。
$route['default_controller'] = 'auth/view';
$route['404_override'] = '';
編輯: 你有什麼我至今不....
,所以我改成這樣的路線: $路線[ 'default_controller'] = '認證/登錄'; $ route ['404_override'] ='';
全部啓用日誌記錄沒有任何顯示有
在開發利用策略模式 仍然沒有空白頁
編輯確信IM:
so sloved the problem it was with the database load ($this->ci->load->database();)
no error were showen only thing in log of CI was (Database Driver Class Initialized)
problem was that php 5.5 doesnt come enable , need to enable it.
locate the php.ini (cmd->run c:\php\php.exe --ini for location)
edit the next stuff in file:
extension=php_mysql.dll
extension=php_mysqli.dll
extension_dir = "C:\PHP\ext"
then make sure that in apachee httd.conf u have it ponted to the location of the right php.ini
PHPIniDir "C:\php\PHP.ini"
hopes this help some one in the future :)
檢查日誌的問題。如果需要更改日誌配置記錄一切。 – enapupe
只是沒有得到警告日期()在日誌庫中修復它,仍然沒有... – user3294177