Welcome Guest, Not a member yet? Register   Sign In
Unable to locate the specified class: Session.php [SOLVED]
#8

Bad Luck.
The report from my last post worked when I copied my application to a new test folder.
Back to the real app and the problem persists.
So I removed sessions driver from the autoload.php, making thr file look like below
PHP Code:
*
| -------------------------------------------------------------------
 Auto-load Packages
| -------------------------------------------------------------------
Prototype:
|
 $autoload['packages'] = array(APPPATH.'third_party''/usr/local/shared');
|
*/
$autoload['packages'] = array();

/*
| -------------------------------------------------------------------
|  Auto-load Libraries
| -------------------------------------------------------------------
| These are the classes located in system/libraries/ or your
| application/libraries/ directory, with the addition of the
| 'database' library, which is somewhat of a special case.
|
| Prototype:
|
|    $autoload['libraries'] = array('database', 'email', 'session');
|
| You can also supply an alternative library name to be assigned
| in the controller:
|
|    $autoload['libraries'] = array('user_agent' => 'ua');
*/
$autoload['libraries'] = array('template''ion_auth''database''form_validation''facebook''session');

/*
| -------------------------------------------------------------------
|  Auto-load Drivers
| -------------------------------------------------------------------
| These classes are located in system/libraries/ or in your
| application/libraries/ directory, but are also placed inside their
| own subdirectory and they extend the CI_Driver_Library class. They
| offer multiple interchangeable driver options.
|
| Prototype:
|
|    $autoload['drivers'] = array('cache');
|
| You can also supply an alternative property name to be assigned in
| the controller:
|
|    $autoload['drivers'] = array('cache' => 'cch');
|
*/
$autoload['drivers'] = array();

/*
| -------------------------------------------------------------------
|  Auto-load Helper Files
| -------------------------------------------------------------------
| Prototype:
|
|    $autoload['helper'] = array('url', 'file');
*/
$autoload['helper'] = array('url''facebook_helper');

/*
| -------------------------------------------------------------------
|  Auto-load Config files
| -------------------------------------------------------------------
| Prototype:
|
|    $autoload['config'] = array('config1', 'config2');
|
| NOTE: This item is intended for use ONLY if you have created custom
| config files.  Otherwise, leave it blank.
|
*/
$autoload['config'] = array();

/*
| -------------------------------------------------------------------
|  Auto-load Language files
| -------------------------------------------------------------------
| Prototype:
|
|    $autoload['language'] = array('lang1', 'lang2');
|
| NOTE: Do not include the "_lang" part of your file.  For example
| "codeigniter_lang.php" would be referenced as array('codeigniter');
|
*/
$autoload['language'] = array(); 
The I get the following error
Code:
An uncaught Exception was encountered
Type: Error

Message: Class 'CI_Ion_auth' not found

Filename: /home/indicxyz/airdata.com.ng/system/core/Common.php

Line Number: 196

Backtrace:

File: /home/indicxyz/airdata.com.ng/public/index.php
Line: 315
Function: require_once

Well, the system is just appending CI_ to all my libraries before attampting to autoload them.
This does not happen on the test copy, even when the sessions driver is not autloaded!
Any suggestions?
Reply


Messages In This Thread
RE: Unable to locate the specified class: Session.php [SOLVED] - by enelson - 04-21-2018, 04:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB