この Facebook アプリは、ion_auth を使用して作成しました。一部のブラウザーでは、アプリを承認すると、サーバーにユーザーがログインしません。
ログファイルを確認したところ、これがわかりました
ERROR - 2013-06-10 00:00:01 --> Severity: Warning --> include_once(application/core/MY_Ion_auth.php): failed to open stream: No such file or directory /var/www/html/application/config/production/config.php 378
ERROR - 2013-06-10 00:00:01 --> Severity: Warning --> include_once(): Failed opening 'application/core/MY_Ion_auth.php' for inclusion (include_path='.:/usr/share/pear:/usr/share/php') /var/www/html/application/config/production/config.php 378
config.php の 378 行目は次のようになります。
function __autoload($class)
{
if (strpos($class, 'CI_') !== 0) {
@include_once(APPPATH . 'core/' . $class . EXT);
}
}
ion_auth と go2 はどちらも自動ロードされているライブラリであり、実際にはライブラリ フォルダーにあります。
何か案は?