Hi, I followed the directions in the Codex for Giving WordPress Its Own Directory, and now all my formatting (theme and child theme) have been lost, and I'm unable to access any wp-admin features for my site.
This is a case where I have wordpress installed in a subdirectory of my site, but I want users to be able to see the blog as if it is installed in the root directory.
Here are the steps I took:
1. I installed WordPress 3.3 fresh today into a subdirectory of my site, http://raftersofcedars.com/wordpress/.
2. I installed my plugins (Jetpack and TwentyEleven Theme Extensions), installed my child theme (a child of twentyeleven), and did all my other setup of user, colors, header, etc. Everything looked fine.
THEN
3. I followed the directions in the section of this Codex page labeled Using a pre-existing subdirectory install:
- In the General panel, I changed the "Site Address" setting to the root url (http://raftersofcedars.com)
- I clicked "save changes" and got the error message that the instructions tell you to ignore
- I copied (not moved) the index.php file from the wordpress directory on my server to the root directory. There was no .htaccess file so I didn't copy it. (I am set up to see all hidden files.)
- I opened the root directory's index.php file in a text editor (dreamweaver) and changed the line
require('./wp-blog-header.php');
to
require(./wordpress/wp-blog-header.php')
and uploaded the changed file back to the root directory on the server
When I go to my site, all the formatting from the theme and child theme is gone. My header and background image are there, and the color choices I made in "Theme Options" using the TwentyEleven Theme Extensions plugin are being used, but all all styling is missing. This is the same whether I access the site from http://raftersofcedars.com or http://raftersofcedars.com/wordpress/
When I try to go to http://raftersofcedars.com/wordpress/wp-admin/ I get redirected to raftersofcedars.com/wp-login, which doesn't exist so I get a 404 error.
I believe I performed all the steps in the Codex article exactly as written and I'm at a loss about why the results are so broken. I also can't figure out what steps I can do to reverse the change I made in the admin panel since I can't access it. This is a new blog with no content yet, but I really don't want to have to wipe out a day's work and start over, or have to abandon the plan for keeping the wordpress files in their own directory--to have all these files at the root of my site seems like it will become a mess.
Thank you for any suggestions you have!