PDA

View Full Version : Unable to get to admin Installation problem


maxloxton
05-15-2006, 03:39 AM
Hello

I have recently installed wordpress again after few months on my website as I closed that down due to some problem. Now, it is not working. I have created everything but seems to be some problem. It gives me the following error when the installation is done and I ask it login.
it gives me this error.

Warning: file_get_contents(localhostadmin/templates/login_form.tpl): failed to open stream: No such file or directory in /home/holyshred/domains/holyshred.com/public_html/manager/admin/login.php on line 80

Warning: file_get_contents(localhostadmin/templates/header.tpl): failed to open stream: No such file or directory in /home/holyshred/domains/holyshred.com/public_html/manager/admin/header.php on line 6

Warning: file_get_contents(localhostadmin/templates/header.tpl): failed to open stream: No such file or directory in /home/holyshred/domains/holyshred.com/public_html/manager/admin/header.php on line 18

Warning: file_get_contents(localhost/admin/templates/footer.tpl): failed to open stream: No such file or directory in /home/holyshred/domains/holyshred.com/public_html/manager/admin/index.php on line 45

and doesn't go ahead.

The url of my website is

http://www.holyshred.com/manager/

Kindly help me out as soon as possible.

Regards
Yasir Nisar

boccio
05-15-2006, 08:35 AM
Looks to me like a bad path problem. You don't have trailing slash between localhost and admin:
Warning: file_get_contents(localhostadmin/templates/header.tpl):

I suppose it should be:
Warning: file_get_contents(localhost/admin/templates/header.tpl):

Check your include/conf.php file and correct $root and $url variables.

Hope this helped