如何防止codeigniter创建Memcache目录

时间:2015-05-01 10:01:51

标签: php codeigniter google-app-engine

我正在使用codeigniter开发一个网络应用程序。当我在本地运行它时,Codeigniter在应用程序文件夹中创建一个文件夹。但是,同样的应用程序在Google App Engine上引发了错误,原因是GAE具有只读文件系统。

我试图阻止codeigniter创建此文件夹,但到目前为止还没有取得任何成功。

P.S。我是codeigniter的新手。

1 个答案:

答案 0 :(得分:2)

更改app / config / config.php中的以下行应解决问题。

$config['sess_driver'] = 'memcached';
$config['sess_save_path'] = 'localhost:11211';

请注意,只要格式为sess_save_path,您为<hostname>:<port>设置的值并不重要。