LoginSignup
3
3

More than 5 years have passed since last update.

GMOクラウド VPSサーバーにconcrete5 5.7.4.2をインストールする際のエラー回避

Last updated at Posted at 2015-08-03

GMOクラウド VPSサーバーにconcrete5 5.7.4.2をインストールする際にセッションハンドラに関するエラーが発生した場合は、下記のようにconcrete.phpを作成してから、インストールを実施するとエラーが回避される。

セッションハンドラをデータベースに変更する方法

下記を記載したconcrete.phpを作成し、application/config/の下へ配置する。

<?php

return array(
'session' => array(
'handler' => 'database'
)
);

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3