surattb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Redundant “double” URL broken site weirdnessI completely overlooked HandySolo’s post, and sticking an http:// in front of both URLs in the database did indeed solve the problem.
I guess I must’ve been playing with the config options and assumed the “http://” was already hard-coded in one of the scripts or something. Sheesh.
Thanks for the help, everybody.
Forum: Fixing WordPress
In reply to: Redundant “double” URL broken site weirdnessThis just in from Dreamhost tech support:
“There looks to be a problem with the htaccess rewrite commands for this subdomain. It works if there are commands are disabled(although the pages dont render correctly) and doesnt work in the commands are in place.
We can only recommend removing the existing wordpress files, installing a fresh copy(the latest version) and running the applicatin again.”
Reinstalling’s not that big a deal, but I’m more interested in figuring out what the heck happened in the first place so I can try to make sure it doesn’t happen again. Grrr.
Forum: Fixing WordPress
In reply to: Redundant “double” URL broken site weirdnessI can’t log in because it’s automatically appending the second URL at the end when I click the “login” button on the wp-admin.php page, thus breaking the link: “http://billy.apexmediawire.com/wp-admin/billy.apexmediawire.com/wp-login.php?redirect_to=%2Fwp-admin%2F”.
I’ve tried manually editing the URL and reloading the page, but then it comes back with page not found.
Inside the MySQL database under wp_options, siteurl = billy.apexmediawire.com and home = billy.apexmediawire.com.
No redirect or subdirectory remapping is involved.
Thanks,
BillyForum: Fixing WordPress
In reply to: Redundant “double” URL broken site weirdnessI’ve also tried deleting .htaccess (after backing it up locally, of course), but it doesn’t appear to have had any effect.
And, naturally, I’ve tried emptying the WP cache a million times.
Ideas?
Forum: Fixing WordPress
In reply to: Redundant “double” URL broken site weirdnessBTW, here’s the current contents of .htaccess:
# BEGIN WordPress
#<IfModule mod_rewrite.c>
#RewriteEngine On
#RewriteBase billy.apexmediawire.com/
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule . billy.apexmediawire.com/index.php [L]
#</IfModule>#END WordPress