管理面板无法在wordpress中访问[重复]

This question already has an answer here:

I have deployed the wordpress blog on my site sqlhelps.com. The site is hosted on asp.netdiscount server. I cannot access the sqlhelps.com/wp-admin. The error is as follows :

Warning: require_once(E:\web\sqlhelpscom\htdocs/wp-admin/includes/user.php): failed to open stream: No such file or directory in E:\web\sqlhelpscom\htdocs\wp-admin\includes\admin.php on line 60 Fatal error: require_once(): Failed opening required 'E:\web\sqlhelpscom\htdocs/wp-admin/includes/user.php' (include_path='.;C:\php\pear') in E:\web\sqlhelpscom\htdocs\wp-admin\includes\admin.php on line 60

Can anyone please help me out with this?

</div>

Either user.php is not available on your server or you are giving the wrong path as you can see error is :

No such file or directory in E:\web\.......

In E:\web\sqlhelpscom\htdocs\wp-admin\includes\admin.php on line 60, try changing

require_once(E:\web\sqlhelpscom\htdocs/wp-admin/includes/user.php)

to

require_once(E:\web\sqlhelpscom\htdocs\wp-admin\includes\user.php)

so all the slashes are going the same way.

Jason