作成した Web サイトの CMS として Joomla をセットアップしようとしています。Globat でホストされているサイトを持っています。Joomla をインストールしようとすると、このメッセージが表示されます。
警告: 不明: open(/var/php_sessions/sess_cc24fb3a1ba0e66a653237dd88762ac6, O_RDWR) に失敗しました: No such file or directory (2) in Unknown on line 0 警告: 不明: セッション データ (ファイル) の書き込みに失敗しました。行 0 の不明で、session.save_path の現在の設定 (/var/php_sessions) が正しいことを確認してください。
PHP ini ファイルで php_session 行を確認したところ、適切なように見えます。これがスニペットです。
; NOTE 1: PHP will not create this directory structure automatically.
; You can use the script in the ext/session dir for that purpose.
; NOTE 2: See the section on garbage collection below if you choose to
; use subdirectories for session storage
;
; The file storage module creates files using mode 600 by default.
; You can change that by using
;
; session.save_path = "N;MODE;/path"
;
; where MODE is the octal representation of the mode. Note that this
; does not overwrite the process's umask.
; http://php.net/session.save-path
session.save_path = "/var/php_sessions"
; Whether to use cookies.
; http://php.net/session.use-cookies
session.use_cookies = 1
このエラーが発生する理由は誰にもありますか? save_path が本来あるべきものであるように見えます。
ありがとう!