creationrobot
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Auto save creating multiple draftsIvovic, probably 🙂 I like the risk of the new toys personally.
Forum: Fixing WordPress
In reply to: Looking for a more flexible way to display recent postsThanks for coming back in and posting the solution you found 🙂
Forum: Fixing WordPress
In reply to: HTTP error when uploading imageCheck that you have the enough permission to upload to your host/server.
Forum: Fixing WordPress
In reply to: footer.php error please help mePlease ask again on the Theme section of the WordPress site, http://wordpress.org/support/forum/5
Your problem lies with a theme, not WordPress, and you’ll get a better response over there. Thanks.
Forum: Fixing WordPress
In reply to: Blogging with Postie, name of the senderAre you asking how to change the settings within Postie?
If so you’ll get an answer posting to http://www.economysizegeek.com/?page_id=395
Forum: Fixing WordPress
In reply to: footer.php error please help meWell that is a theme problem as nathanrice said, the WordPress code is OK. So go back to where ever you downloaded the theme from and ask them for help with your theme, thanks.
Forum: Fixing WordPress
In reply to: footer.php error please help me<div id=�footer�> should be <div id=”footer”>
Only error I can see in your code is the quotes need replacing.
Forum: Fixing WordPress
In reply to: Remove password for public viewing (how to?)<p>How quick is this?<img src=”ftp://cartadiem%40cartadiem.com:@cartadiem.com/images/EE2008-04-02-1211.png” height=”517″ width=”492″ /></p>
You’re using FTP to display an image. Locally link or use HTTP.
Forum: Fixing WordPress
In reply to: Front end problemOK, so the cache is disabled, so no interference from that. I then activated one plugin at a time, followed by shift-F5. Every plugin I had running before is now running again and … no conflict or problem. Deactivating and reactivating all my plugins ‘cured’ whatever the problem was. I’ve not heard of that one before but, well, whatever. Might be something useful for someone else to try in a similar position.
“The most overlooked advantage to owning a computer is that if they foul up there’s no law against whacking them around a little.” — Joe Martin
Forum: Fixing WordPress
In reply to: Front end problemInteresting, nothing seemed to conflict and yet deactivating all plugins seems so have cured the issue. Should have done that earlier, but no matter. I’m going to go through the plugins and post back here with which plugin kills things. Just so this thread has some use for someone else 🙂
Thanks again nathanrice, the assistance is appreciated.
Forum: Fixing WordPress
In reply to: Front end problemThanks nathanrice, the forum removed the formatting. I then checked the reading setting and it is set to Posts, not to a specific page.
I’ve tried setting the site to the default template and it does the same thing, so the issue is not template based.
Forum: Fixing WordPress
In reply to: Front end problemOK, thanks. The home page is custom (index.php), the template is not modified. The theme in use is Cutline (http://cutline.tubetorial.com/).
The index.php is as follows:
<?php get_header(); ?>
<div id=”content_box”>
<div id=”content” class=”posts”>
<p ><div style=”margin:10px;” align=”middle”>
<script type=”text/javascript”><!–
google_ad_client = “pub-6614090734036311”;
/* 468×60, created 2/22/08 HomePage */
google_ad_slot = “2730902168”;
google_ad_width = 468;
google_ad_height = 60;
//–>
</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script></div></p><?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<h4><?php the_time(‘F jS, Y’) ?><!– by <?php the_author() ?> –> · <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></h4>
<div class=”entry”>
<?php the_content(‘[Read more →]’); ?>
</div>
<p class=”tagged”><span class=”add_comment”><?php comments_popup_link(‘→ No Comments’, ‘→ 1 Comment’, ‘→ % Comments’); ?></span>Category: <?php the_category(‘ · ‘) ?></p>
<div class=”clear”></div><?php endwhile; ?>
<?php include (TEMPLATEPATH . ‘/navigation.php’); ?>
<?php else : ?>
<h2 class=”page_header center”>Not Found</h2>
<div class=”entry”>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php include (TEMPLATEPATH . “/searchform.php”); ?>
</div><?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>