Kohana Auth在IE中無法驗證。我已經從第2版的討論中讀了一些關於從user_agent更改爲user_ip的內容......大概在AUTH模塊的ORM文件中,這怎麼解決我的問題。Kohana 3在IE中的驗證
在第2節另一篇文章建議使用此
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* @package Session
*
* Session driver name.
*/
$config['driver'] = 'native';
/**
* Number of page loads before the session id is regenerated.
* A value of 0 will disable automatic session id regeneration.
*/
$config['regenerate'] = 0;
// KLUDGE: Windows XP SP3 running IE-7 and 8
// http://bit.ly/gPcV67
$config['validate'] = array('ip_address');
他們不提在哪裏然而使用這個。
我們在測試中發現了這種類型(這是關於軟件工程在學校中缺乏重要性的線索?),並且在此時使用AUTH非常困難。我一直在頭撞牆,幾個小時過去了,幾乎沒有到過。
請幫助! 謝謝 -David
我一直收到這個錯誤,並且你發佈的鏈接和我發現的鏈接都有這個錯誤。 ErrorException [可恢復錯誤]:傳遞給Kohana_Arr :: merge()的參數2必須是一個數組,給定的整數,在第53行調用system/classes/kohana/config/file.php並定義爲 – david 2011-04-11 17:38:52
不要緊,I得到它了。最終的解決方案如下,但你指出我在正確的方向,所以我給你信貸的解決方案 – david 2011-04-11 17:55:15