开发者

Updated wordpress and my blog is displaying an error

开发者 https://www.devze.com 2023-03-10 13:08 出处:网络
I\'m new to wordpress, however I manged to install it and create a blog for a friend about a month ago. I updated word press an it\'s giving me this error:

I'm new to wordpress, however I manged to install it and create a blog for a friend about a month ago. I updated word press an it's giving me this error:

http://blog.make-upbytalitha.com/

I'm certain all fil开发者_如何转开发es are there.

Thanks for any help


This is most likely because you have installed wordpress into the wwwroot instead of a sub-directory. Wordpress by default assumes it will be installed in a sub-directory.

To solve this problem, modify the index.php file as follows if your WordPress installation is running in your root directory. You only need to change the following line:

require('./wp-blog-header.php');

To this:

require('wp-blog-header.php');

And then, everything should be working just fine.

0

精彩评论

暂无评论...
验证码 换一张
取 消