Wordpress Not Showing Up
- Started
- Last post
- 12 Responses
- dbloc
I've never had this problem before. I uploaded wordpress and it shows up as a dead link.
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404I uploaded a test index2.php and that comes up fine.
What the hell could it be????
- dbloc0
I've tried a few different versions of wordpress
- dbloc0
I install wordpress all the time. I've never had this problem
- mg330
Did you check your security settings on various files and folders? I've not gotten that error before, but it's the first thing I check when images or css is not working.
- Crack_Junkie0
link?
Try adding www. to front of domain. Sometimes the .htaccess file gets borked on WP updates.
- dbloc0
could be a DNS issue
- Crack_Junkie0
These steps are exactly what I would recommend: http://www.wpbeginner.com/wp-tut…
- mg330
- Centigrade0
Look at the functions.php file and delete any extra characters (including spaces) after the ?>
- dbloc0
got it...it was a dns issue. Thanks everyone!
- ideaist0
http://codex.wordpress.org/Movin…
"Suppose you accidentally changed the URIs where you cannot move the files. (but still can access the login page, through a redirection or something)
wp-login.php can be used to (re-)set the URIs. Find this line:
require( dirname(__FILE__) . '/wp-load.php' );
and insert the following lines below://FIXME: do comment/remove these hack lines. (once the database is updated)
update_option('siteurl', 'http://your.domain.name/the/pat... );
update_option('home', 'http://your.domain.name/the/pat... );
You're done. Test your site to make sure that it works right. If the change involves a new address for your blog, make sure you let people know the new address, and consider adding some redirection instructions in your .htaccess file to guide visitors to the new location."- DId you change the URIs before moving it? I made said mistake and easily fixed using this!ideaist
