我正在尝试将 Joomla 设置为我制作的网站的 CMS。我的网站由 Globat 托管。当我尝试安装 Joomla 时,我收到此消息。
警告:未知:打开(/var/php_sessions/sess_cc24fb3a1ba0e66a653237dd88762ac6,O_RDWR)失败:第 0 行的未知中没有此类文件或目录(2)警告:未知:无法写入会话数据(文件)。请在第 0 行的 Unknown 中验证 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 应该是这样的。
谢谢!