我使用 ion_auth 创建了这个 Facebook 应用程序。在某些浏览器中,当您授权应用程序时,它不会将用户登录到我的服务器上。
我检查了日志文件并发现了这一点
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 都是自动加载的库......它们实际上位于库文件夹中。
有任何想法吗?