我试图在运行Kali Linux的笔记本电脑上设置WordPress。一切正常,直到我安装WordPress和我正在使用的主题。我试图在基岩上使用根圣人。但在我完成安装过程后,我在管理员处收到通知:
Notice: Undefined index: host in /var/www/html/site/web/wp/wp-includes/theme.php on line 2937
Notice: Undefined index: host in /var/www/html/site/web/wp/wp-includes/theme.php on line 2937
Notice: Undefined index: host in /var/www/html/site/web/wp/wp-includes/theme.php on line 2999
Notice: Undefined index: host in /var/www/html/site/web/wp/wp-includes/theme.php on line 2999
在前端:
Notice: Undefined index: host in /var/www/html/site/web/wp/wp-includes/theme.php on line 2999
Notice: Undefined index: host in /var/www/html/site/web/wp/wp-includes/theme.php on line 2999
任何人都可以解释为什么我会收到这些通知吗?我一定错过了一些事情,但我已经多次完成了指示,而且我没有想法。感谢
答案 0 :(得分:5)
您可以定义WP_HOME& wp-config.php中的WP_SITEURL
define('WP_HOME','http://localhost/project_folder_name');
define('WP_SITEURL','http://localhost/project_folder_name');
答案 1 :(得分:1)
这也可能是由于siteurl
表中的home
和wp_options
选项错误引起的。
确保网址也有一个主机,http://example.com
而不只是example.com
。