I created this Facebook application using ion_auth. In some browsers, when authorizing an application, it does not register the user on my server.
I checked the log files and found out about it
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
now line 378 config.php is like
function __autoload($class) { if (strpos($class, 'CI_') !== 0) { @include_once(APPPATH . 'core/' . $class . EXT); } }
ion_auth and go2 are libraries that are on automatic loading ... and they are actually in the libraries folder.
any ideas?
source share