Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
300 views
in Technique[技术] by (71.8m points)

php - Codeigniter cannot load libraries

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Working code;

$config['sess_save_path'] = sys_get_temp_dir();

This allows to execute the script.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...