Initially, I thought I had a problem with loading libraries due to using Modular Extensions inside Codeigniter.
However I have discovered even with a clean install of codeigniter I am unable to load libraries such as the Session library
or even the Migration library.
I always get similar error messages usually to do with loading files.
Here is my error message I have when using the Session library.
Note: If i don't use libraries everything works fine.
Error:
A PHP Error was encountered
Severity: Warning
Message: mkdir() [function.mkdir]: Invalid argument
Filename: drivers/Session_files_driver.php
Line Number: 117
Backtrace:
File: index.php
Line: 301
Function: require_once
An uncaught Exception was encountered
Type: Exception
Message: Session: Configured save path '' is not a directory, doesn't exist or cannot be created.
Filename: systemlibrariesSessiondriversSession_files_driver.php
Line Number: 119
Backtrace:
File: index.php
Line: 301
Function: require_once
I feel like this is some form of permissions issue, but whether I am using AMPPS, MAMP (Windows) or XAMP I always get this problem.
Does anyone have any ideas
OS: Windows 8.1
Webserver: AMPPS/MAMP(Windows)/XAMP - All have the problem.
Codeigniter: v3.0.0
Config:
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
EDIT:
Resolved.
It's important now that you use the CI3 Documentation, When using the database method for sessions please ensure you use the updated SQL to create the table.
CREATE TABLE IF NOT EXISTS `ci_sessions` (
`id` varchar(40) NOT NULL,
`ip_address` varchar(45) NOT NULL,
`timestamp` int(10) unsigned DEFAULT 0 NOT NULL,
`data` blob NOT NULL,
PRIMARY KEY (id),
KEY `ci_sessions_timestamp` (`timestamp`)
);
As found here. I hope this helps anyone out with similar problems.
Also for the initial problem if you are using the files
driver please ensure you set the $config['sess_save_path']
to something like 'ci_sessions'
or wherever you wish to store. Please see @Tpojka answer for more information.
See Question&Answers more detail:
os