cahenry829
Forum Replies Created
-
A site url of http://www.summerhousedetoxcenter.com has been specified in general settings and the WP_DEBUG is set to false. I originally created this site under the name detoxnow.net however I changed the site over to this url for SEO purposes. Everything has been updated on the server side and the site is up and running except for this error. What else could be causing get_bloginfo(‘url’) to return nothing?
Here is one of the pages with the errors
http://www.summerhousedetoxcenter.com/our-facility/bedrooms/
Forum: Fixing WordPress
In reply to: Can't get some menu links to loadSorry about that.
Forum: Fixing WordPress
In reply to: Can't get some menu links to loadFixed. Thanks
Forum: Fixing WordPress
In reply to: Can't get some menu links to loadI also created a new file with no info with writable permissions and the problem still remains.
Forum: Fixing WordPress
In reply to: Can't get some menu links to loadOk so I was able to edit the .htaccess file and change the permissions to make it writable and changed the settings to post-name however the issue still remains only with this webpage for contact us, it seems to have an added directory to the URL and I am not sure what to do next. The .htaccess file looks like this:
# BEGIN W3TC Browser Cache
<IfModule mod_deflate.c>
<IfModule mod_headers.c>
Header append Vary User-Agent env=!dont-vary
</IfModule>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon application/json
<IfModule mod_mime.c>
# DEFLATE by extension
AddOutputFilter DEFLATE js css htm html xml
</IfModule>
</IfModule>
# END W3TC Browser Cache
# BEGIN W3TC Page Cache core
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteRule .* – [E=W3TC_ENC:_gzip]
RewriteCond %{HTTP_COOKIE} w3tc_preview [NC]
RewriteRule .* – [E=W3TC_PREVIEW:_preview]
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} =””
RewriteCond %{REQUEST_URI} \/$
RewriteCond %{HTTP_COOKIE} !(comment_author|wp\-postpass|w3tc_logged_out|wordpress_logged_in|wptouch_switch_toggle) [NC]
RewriteCond “%{DOCUMENT_ROOT}/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” -f
RewriteRule .* “/wp-content/cache/page_enhanced/%{HTTP_HOST}/%{REQUEST_URI}/_index%{ENV:W3TC_PREVIEW}.html%{ENV:W3TC_ENC}” [L]
</IfModule>
# END W3TC Page Cache core# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Thanks