dralkyr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Thumbnail appearing with wrong dimensionsThanks for the reply, but that doesn’t really seem to solve my problem at all. When I am in the dashboard the thumbnails all appear correct in every instance, it is only on the site itself that it is wrong.
Forum: Plugins
In reply to: [Frontend Publishing] Can't edit ContentWill do. After doing so can I reactivate everything and have it all work?
Forum: Plugins
In reply to: [Frontend Publishing] Can't edit ContentAh. Okay, I deactivated the Construction mode.
Forum: Plugins
In reply to: [Frontend Publishing] Can't edit ContentI click on the link and it works just fine, interesting. You could just go to rockbridge.outdoorguide.us and click on Submit in the menu.
Forum: Networking WordPress
In reply to: 500 Internal Server Error on new Multi SiteJust changed it, still getting the error.
Forum: Networking WordPress
In reply to: 500 Internal Server Error on new Multi SiteAlso, I can access the primary site outdoorguide.us and the wp-admin there, just not the site or dashboard for rockbridge.outdoorguide.us
Forum: Networking WordPress
In reply to: 500 Internal Server Error on new Multi SiteHere is my .htaccess code
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
</IfModule># END WordPress