1

我正在尝试帮助将第三方主题安装到 WordPress 安装中,当我单击“实时预览”或“激活”主题时收到以下三个错误代码:

警告:session_start() [function.session-start]: open(/var/chroot/home/content/66/5232766/tmp/sess_1n0eifrftmjfu96hop17kihi35, O_RDWR) failed: No such file or directory (2) in /home/content/第 461 行的 66/5232766/html/wp-content/themes/Drlawyer/functions.php

警告:session_start() [function.session-start]:无法发送会话 cookie - 已发送的标头(输出开始于 /home/content/66/5232766/html/wp-content/themes/Drlawyer/functions.php:461 ) 在第 461 行的 /home/content/66/5232766/html/wp-content/themes/Drlawyer/functions.php

警告:session_start() [function.session-start]:无法发送会话缓存限制器 - 标头已发送(输出开始于 /home/content/66/5232766/html/wp-content/themes/Drlawyer/functions.php:461 ) 在第 461 行的 /home/content/66/5232766/html/wp-content/themes/Drlawyer/functions.php

我该如何解决这些问题?

4

1 回答 1

0

尝试评论该行并删除您的添加

function cp_admin_init() // { if (!session_id()) session_start(); }

如果这是 Godaddy 托管,您可能需要这样做(我一直遇到这个问题)将其添加到您的 php5.ini 文件中,然后您需要从 Godaddy 托管控制面板中终止所有进程,它会起作用。检查您的 phpinfo.php 文件以确保它已完成

upload_tmp_dir = /var/chroot/home/content/56/10594156/html/temp
session.save_path = /var/chroot/home/content/56/10594156/html/temp

当然将路径更改为您的路径,然后在您的根目录中创建一个 /temp 目录,并且 CHMOD 777 Godaddy 由于某种原因与 tmp/ 目录有问题

于 2013-03-14T18:18:11.663 回答