"Unable to locate the specified class: Session.php"... |
Hi Guys,
After some years developing with CI i'm here to write about an issue i experiencing with v3.1.4 Starting with my code: application/core PHP Code: class FF_Controller extends CI_Controller PHP Code: abstract class FF_Model extends CI_Model application/controllers PHP Code: class Login extends FF_Controller application/config/autoload.php PHP Code: <?php application/models PHP Code: class User_model extends FF_Model Removing the autoload "session" entry all working. Looking in System/libraries seems that session.php does not exists. Nevertheless, that file seems to be in the Session subdirectory (system/libraries/session/). But load_class(...) is not looking inside that folder: PHP Code: // Look for the class first in the local application/libraries folder How can i set to work properly my session library? PS: loading it manually from the controller method does not change the result. I still get the error. Logs are pretty clean. Only debug infos not related to sessions. |
Messages In This Thread |
"Unable to locate the specified class: Session.php"... - by sslazio 1900 - 06-13-2017, 07:00 AM
RE: "Unable to locate the specified class: Session.php"... - by Martin7483 - 06-13-2017, 11:50 PM
RE: "Unable to locate the specified class: Session.php"... - by sslazio 1900 - 06-14-2017, 01:05 AM
RE: "Unable to locate the specified class: Session.php"... - by Martin7483 - 06-14-2017, 06:20 AM
RE: "Unable to locate the specified class: Session.php"... - by dave friend - 06-14-2017, 01:20 PM
|