我确实将网站移到了另一台服务器上,现在我不断收到相同的错误,页面会冻结。但是当我将网站的备份放在 xampp 上时,它确实可以工作吗?
这是重复的代码
Warning: is_dir(): open_basedir restriction in effect. File(/var/home/lapermanen/domains/lapermanence.vdbc.nl/public_html/wp-content) is not within the allowed path(s): (/var/home/cyclosport/:/tmp/:/var/tmp/:/usr/local/php56/lib/:/usr/local/php54/lib/:/usr/local/php55/lib/:/usr/local/lib/php/) in /var/home/cyclosport/domains/cyclosportive.coersonline.nl/public_html/wp-includes/functions.php on line 158
谢谢。
访问控制
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase //
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . //index.php [L]
</IfModule>
# END WordPress
答案1
您的 PHP 脚本不在您的系统允许的 PHP 脚本位置内。
您可以通过修改open_basedir
PHP.INI 中的设置来解决此问题,或者将脚本移动到错误消息中列出的目录之一。