2014-02-09 108 views
0

我已安装wordpress并将所有文件添加到我的Web服务器。当我试图访问myWebsite /博客/可湿性粉剂管理员/ instal.php我得到以下错误:Wordpress安装问题

Warning: require(/customers/8/0/1/eitweb.co.uk/httpd.www/blog/wp-includes/functions.wp- 
scripts.php): failed to open stream: No such file or directory in 
/customers/8/0/1/eitweb.co.uk/httpd.www/blog/wp-includes/script-loader.php on line 31 Fatal 
error: require(): Failed opening required '/customers/8/0/1/eitweb.co.uk/httpd.www/blog/wp- 
includes/functions.wp-scripts.php' (include_path='.:/usr/share/php') in 
/customers/8/0/1/eitweb.co.uk/httpd.www/blog/wp-includes/script-loader.php on line 31 

我想安装word的时候按下我不知道怎么样。我曾经看到过一些关于类似问题的帖子,但没有解决这个问题的东西。任何帮助将非常感激。

回答

0

问题出在文件权限...给你的wordpress目录下面的权限。

使您的网络服务器的所有者的文件。示例

chown -R www-data:wordpress /path/to/your/wordpress 

...然后以root身份执行。

find /path/to/your/wordpress/install/ -type d -exec chmod 755 {} \; 
find /path/to/your/wordpress/install/ -type f -exec chmod 644 {} \; 
+0

感谢您的回复,我使用Windows 7操作系统,如果有帮助? 我的网站地址是eitweb.co.uk我不确定如何使用你给我抱歉的代码。 –

+0

与您的网络托管公司交谈...他们会知道该怎么做。 –