Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

David Jarrin
PLUS
David Jarrin
Courses Plus Student 11,182 Points

getting to the wordpress admin page when developing locally

So I have started developing a site locally with wordpress. When I type in localhost: 85 all I get to choose from is the site I am developing and when I click on that its just my blank site. This is most likely wildly simple but I forgot, how do I get to the wordpress admin screen?

2 Answers

Chris Shaw
Chris Shaw
26,676 Points

Hi David,

You can access the WordPress admin panel by appending /wp-admin to the URL, log in using the username and password you set during the install and you're set.

David Jarrin
David Jarrin
Courses Plus Student 11,182 Points

I get a page that says Object Not Found! and a couple of links leading me back to the page I spoke of before that has my blank site.....I might have deleted something?

Chris Shaw
Chris Shaw
26,676 Points

In the folder where the server is pointing to do you have an wp-admin folder or any other folder/file starting with wp-? If you don't that either means you're in the wrong directory or don't have WordPress installed.

Come to think about it when you first install WordPress it takes you to the admin panel, I would recommend watching Local WordPress Development if you already aren't/haven't just to make sure nothing was overlooked.

David Jarrin
PLUS
David Jarrin
Courses Plus Student 11,182 Points

ya I do, I have it with this file path C:\xampp\htdocs\sharkysbarandgrill\wp-admin

Chris Shaw
Chris Shaw
26,676 Points

Based on the path you've give need to use the following address because your site is in a subfolder.

http://localhost/sharkysbarandgrill/wp-admin

David Jarrin
David Jarrin
Courses Plus Student 11,182 Points

yep as soon as I added the port I got there, thanks!

Chris Shaw
Chris Shaw
26,676 Points

No worries, let us know if you need anything else =)