I
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Column ShortcodesBecause it’s considered plugin territory under www.ads-software.com rules.
How did you install the full theme?
Forum: Fixing WordPress
In reply to: Hiding email of poster?WordPress doesn’t do this on it’s own, perhaps a theme or plugin. What theme are you using?
Forum: Fixing WordPress
In reply to: "Blogs I Follow" widgetIs this for a wordpress.com site or a wordpress.org (self-hosted) site? If it’s for wordpress.com (most likely), you should ask your question in the WordPress.com Forum.
Forum: Fixing WordPress
In reply to: all my pages and links are re directing to my home pageLet’s narrow this down.
Paste the .htaccess file in / and /blog/.
Paste the index.* file in / and /blog/.
Forum: Fixing WordPress
In reply to: Can't Locate code link in 'View Source'Do you recall entering “m.atlascomforts.com” any where in your Dashboard? Also, what are all the plugins you have installed?
Forum: Fixing WordPress
In reply to: WP in own directory – site specific probBonedoggie
require( dirname( __FILE__ ) . ‘/blog/wp-blog-header.php’ );
is the correct statement but it doesn’t seem to match the error message you showed you were getting.
This shows that it’s still not accessing the blog subdirectory:
Warning: require() [function.require]: Unable to access /www/99k.org/b/o/n/bonehome/htdocs/wp-blog-header.php in /www/99k.org/b/o/n/bonehome/htdocs/index.php on line 17
It should be trying to access:
/www/99k.org/b/o/n/bonehome/htdocs/blog/wp-blog-header.php
Paste the entire code from https://jonbonesteel.com/index.php.
Forum: Fixing WordPress
In reply to: Page link still not working…What are all the plugins you have installed?
Forum: Fixing WordPress
In reply to: splash page to show only once<?php if (!isset($_COOKIE['visited'])) { setcookie('visited', true, time() + 3600 * 24); ?> <object id="flashcontent" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%"> <param name="movie" value="https://www.woodlawntheatre.com/intothewoods/itwwebopening2.swf"/> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="https://www.woodlawntheatre.com/intothewoods/itwwebopening2.swf" width="100%" height="100%"> <!--<![endif]--> <p> Fallback or 'alternate' content goes here. This content will only be visible if the SWF fails to load. </p> <!--[if !IE]>--> </object> <!--<![endif]--> </object> <script type="text/javascript"> var url ='https://www.woodlawntheatre.com/intothewoods/homepage'; var delay = 4.3; var d = delay * 1000;window.setTimeout ('parent.location.replace(url)', d); </script> <?php } ?>
Forum: Fixing WordPress
In reply to: Dashboard bug after update to 3.8.1First, disable all your plugins and see if it’s no longer weird. If it’s still weird, change your theme to Twenty Twelve or Twenty Thirteen. Also, let us know if you’re accessing your Dashboard using SSL/HTTPS.
Forum: Fixing WordPress
In reply to: This feed does not validateFirefox is either serving you a cached version or you already have a session cookie. If you clear your cookies and cache in Firefox (CTRL+SHIFT+DEL) and then refresh the page, you will see the error.
If you have access to curl you can send a dummy post request which will force litespeed to get a live version rather than a cache. I saved the output from this and checked with a feed validator and it does validate.
~$ curl --data "dummy" https://www.obit8.com/feed/ <?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="https://purl.org/rss/1.0/modules/content/" xmlns:wfw="https://wellformedweb.org/CommentAPI/" xmlns:dc="https://purl.org/dc/elements/1.1/" xmlns:atom="https://www.w3.org/2005/Atom" xmlns:sy="https://purl.org/rss/1.0/modules/syndication/" xmlns:slash="https://purl.org/rss/1.0/modules/slash/" >
So as I said before, your host is using a caching system e.g. varnish, xcache, memcached etc. You need to contact them and ask them to clear it for you or tell you how to do it yourself.
Forum: Fixing WordPress
In reply to: wp-config file problemsIn the directory before /wordpress/, remove/rename any existing index.* files and then create this index.php file (DO NOT edit wordpress/index.php!):
<?php define('WP_USE_THEMES', true); require( dirname( __FILE__ ) . '/wordpress/wp-blog-header.php' );
Set the site/home URLs in your wp-config.php to:
define('WP_HOME', 'https://www.taramcnulty.com/wordpress'); define('WP_SITEURL', 'https://www.taramcnulty.com');
Forum: Themes and Templates
In reply to: [Hueman] Column ShortcodesThe theme on www.ads-software.com is the ‘lite’ version which doesn’t include the column shortcode functionality (amongst other things). It’s part of the full theme which you can download for free from the authors website https://alxmedia.se/themes/hueman/.
Forum: Fixing WordPress
In reply to: Restricted server. Please help.I only said that because catacaustic suggested deleting the .htaccess file and Appa responded indicating that he had but didn’t work. PHP can bring up the same authentication box as explained here and so from a plugin too.
Edit: it could also be a security measure by the provider like esmi said.
Forum: Fixing WordPress
In reply to: Restricted server. Please help.Appa: If you have FTP access, access your wp-content/plugins folder and tell us the names of the plugins you have installed.
Forum: Fixing WordPress
In reply to: This feed does not validateThis is happening because you are using a caching system. You can see it yourself in the response headers.
HTTP/1.1 200 OK Date: Thu, 30 Jan 2014 21:40:52 GMT Connection: Keep-Alive Keep-Alive: timeout=5, max=100 X-LiteSpeed-Cache: hit <---------- clear this cache Content-Length: 70977 X-Pingback: https://www.obit8.com/xmlrpc.php Last-Modified: Thu, 30 Jan 2014 12:11:56 GMT ETag: "a24bbbcf197453e1fad8af0229dc310f" Content-Type: text/xml; charset=UTF-8