Harry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: formerly a "Themater error" now something elseTry Filezilla for Mac, it’s a good FTP client and luckily has versions for all OSes.
Forum: Fixing WordPress
In reply to: Server suspended by hostgatorTurns out this is a common occurrence and many people on hostgator have found this.
On googling the problem I found a few blog articles related to it.
http://blog.mellowhost.com/how-to-stop-wp-cron-php-from-firing.html
In the above article it suggests:
You can also put the following in your wp-config.php file to set DISABLE_WP_CRON global variable to TRUE:
define('DISABLE_WP_CRON', true);Hope that works out.
Forum: Fixing WordPress
In reply to: Server suspended by hostgatorThis isn’t really a WordPress problem, it seems something is up with your website hosting. If you have a high volume traffic website, you should potentially seek a hosting company who can cope with these high volumes of traffic, as hostgator shut off your website, and they don’t seem to be too helpful in getting to the root of the problem.
They are the only people who can help you track down the root cause of this.
Forum: Fixing WordPress
In reply to: Server suspended by hostgatorDepends on the information it includes, such as your personal info etc.
Forum: Fixing WordPress
In reply to: Server suspended by hostgatorRight.
So what is your website URL? Do you have any non-wordpress scripts in there? Did they identify what scripts specifically were being accessed?
Forum: Fixing WordPress
In reply to: Server suspended by hostgatorWhat can’t you access?
What is your website URL?
What did hostgator tell you?
Forum: Fixing WordPress
In reply to: Content backgroundOn Line 601 of style.css:
.full-width-content #inner { background: url(images/inner.png); }That is what is overwriting your setting of the background to white on line 569.
Comment out that block should fix it.
Forum: Fixing WordPress
In reply to: invisible menu in Internet ExplorerIn this block of code in your CSS on line 364:
#foxmenucontainer { height: 40px; display: block; padding: 0px 0 0px 0px; font: 13px Arial,Tahoma,Century gothic,verdana, sans-serif; width: 990px; position: absolute; bottom: 0px; left: 0px; background: url(images/menu.png)repeat-x; }In IE it doesn’t seem to be picking up the background. Don’t think it’s a z-index issue, as you wouldn’t see the hover state, the menu is there, but as the text is white you just can’t see it because of the missing background image.
Try replacing it with the following to see if that makes a difference:
background: transparent url(images/menu.png) repeat-x left top;It may do the trick, if there were better tools with IE I would have tested this. Good luck otherwise.
Forum: Fixing WordPress
In reply to: Possible to have two SQL databases?You must first select a database to import into (or create a new one), thus you are getting the No Database Selected error, as PhpMyAdmin doesn’t know what database to import the tables into.
Forum: Fixing WordPress
In reply to: Inserting images: problem with click to enlargeIt looks like your link is missing ‘class=”fancybox”‘ which is why the 10th green image doesn’t function like the first one. Apply that class to the a href surrounding the image and it should work
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedIn Mod We Trust 🙂
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedNope, I don’t have sufficient rights to modify that, only mods and the creator of the thread do. So thank you mod!
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedUnder the right sidebar entitled ‘About this Topic’, there show be a drop down with the status of this thread.
Change it to resolved. Then click the change, and voila. Resolved.
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedCould you at least mark this as resolved in the subject line.
Forum: Fixing WordPress
In reply to: Category heading to display only if there are posts in the categoryMost basic loop you can have.
http://codex.wordpress.org/The_Loop#Using_The_Loop<?php $postargs=array( 'showposts' => 4, 'cat' => 3 ); $category_box = new WP_Query($postargs); if ($category_box->have_posts() ) : while ($category_box->have_posts()) : $category_box->the_post(); ?> ... your code to display your posts ... <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>If you need to because of using two loops, you can reset the query to stop conflicts. This rarely happens, but just in case, call this after the first loop.
wp_reset_query();Hope this points you in the right direction.