freshwebradio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Strange activity after upgrading to 2.9finally, after 2 new posts, the same issue occured:
[27-Dec-2009 08:59:10] PHP Warning: gzuncompress() [function.gzuncompress]: data error in /xxx/xxxx/public_html/wp-includes/http.php on line 1792
[27-Dec-2009 08:59:10] PHP Warning: gzuncompress() [function.gzuncompress]: data error in /xxx/xxx/public_html/wp-includes/http.php on line 1792
[27-Dec-2009 09:00:26] PHP Warning: gzuncompress() [function.gzuncompress]: data error in /xxx/xxx/public_html/wp-includes/http.php on line 1792and to be more precise: I changed the image properties of my 3 last posts to “border 0”.
Sonia
Forum: Fixing WordPress
In reply to: Strange activity after upgrading to 2.9Alism Hello!
thank you so sooooooo much. yeap, it’s worked.wishing you a happy new fresh year 2010.
Forum: Fixing WordPress
In reply to: How to Remove “Comments are Closed” in my site?to me it works when I deleted
<h3 class=”cmnt_hdr”><?php comments_number(__(‘0 Comments…’), __(‘1 Comment’), __(‘% Comments…’)); ?></h3>
at comments.php, theme’s fileHope it helps
SoniaForum: Fixing WordPress
In reply to: Text wrap semi-workingI DON’T KNOW HOW TO THANK YOU.
I did also a tiny edit: instead of
.post {
width:526px;margin: 14px 10px 0px 50px;
border-bottom: 2px dotted #EEE;float:left;
}I did
.post {
width:526px;
position:relative;
z-index:117;margin: 14px 10px 10px 50px;
border-bottom: 2px dotted #EEE;float:left;
because I don’t know why, but your suggestion did the last article in the page to appear half!BUT EVERYTHING IS WORKING P-E-R-F-E-C-T.
THANK YOU – THANK YOU – Thank you so much.Forum: Fixing WordPress
In reply to: Problem with next & previous postsJust in case somebody wants to take a look
the full code is:<?php get_header(); ?>
<?php include (TEMPLATEPATH . ‘/left-sidebar.php’); ?>
<div id=”ccnt”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<!– Post Title – Permalink –>
<h2>
” href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
</h2><!– Post Details –>
<div class=”post_tit”>
<span class=”cld”><?php the_time(‘F dS, Y’) ?></span>
<span class=”pby”>Posted by: <?php comment_author_link() ?></span>
<?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’ ,’comm’); ?>
</div>
<!– Post Content –>
<?php the_content(__(‘Read more..’)); ?></div>
<?php comments_template(); ?>
<?php endwhile; else: ?><p class=”error”>Sorry, but you are looking for something that isn’t here.</p>
<?php endif; ?>
<?php
if(function_exists(‘pagination’)){
pagination();
} else {
posts_nav_link(‘ ‘, __(‘« Newer Posts’), __(‘Older Posts »’));
}
?><div id=”dummy”></div>
</div>
<?php include (TEMPLATEPATH . ‘/right-sidebar.php’); ?>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Problem with next & previous posts:-(((((((((((((((((((( no it’s not working.
would you like me to post you all my code to see it?