akira01
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksI checked the php.ini and the Curl is written like this :
cURL support enabled
cURL Information libcurl/7.16.0 OpenSSL/0.9.7a zlib/1.2.1.2 libidn/0.5.6Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksI place this code in single.php and it says “Curl Found”
But the pingback just can’t work? Hmmm…
Any advise. Thanks
Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksI have upgraded to 2.3.1. Well Pingback still can’t work.
Otto, May I know how to run this code.
Please advise. Thanks
Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksOh, I am still using 2.2.3. Well Got to upgrade, I guess.
Thanks
Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksAny advise would be very much appreciated. Thanks
Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksI have check phpinfo() and it shows:
allow_url_fopen – off(local) – off(master)cURL support – Enabled
cURL Information – libcurl/7.16.0 OpenSSL/0.9.7a zlib/1.2.1.2 libidn/0.5.6If cURL is enabled, wordpress should place the pingback correctly in the comments, right? But Mine is not. I have disabled all plugins and still pingback is not showing in my post comment area.
Any advise. Thanks
Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksAny help would be very much appreciated.
Thanks
Forum: Fixing WordPress
In reply to: fopen disabled – anyway to make pingback worksAnyone have an idea of how to solve this.
Please advise. Thanks in advance.
Forum: Fixing WordPress
In reply to: Trackback / Pingback Not Working in WP 2.2.3I have checked and fopen is disabled. Any advise on that.
Thanks
Forum: Fixing WordPress
In reply to: Styling Each Alternate Post differentlyHi, Thanks for the tips. With your latest code, it works.
There were some differences with the first one and the second one. First one not working and the second one works.
Thanks a lot for the help. Really appreciated it.
Forum: Fixing WordPress
In reply to: Styling Each Alternate Post differentlyHi,
Thanks for your reply.Unfortunately, it doesn’t work. after putting in the code, only the first post is “alt_post”, the rest are all no class
Please advise. Thanks
Forum: Fixing WordPress
In reply to: Multiple Loop to do thisOh Thank you very very much Kafkaesqui. You are great. I was trying to solve this issue for weeks. Now all work greats.
Once again, Thank you very much
Forum: Fixing WordPress
In reply to: Multiple Loop to do thisHi Kafkaesqui,
Wow, you are great, Problem 2 Solved. Thanks so muchIf you don’t mind, can you show me the direction to solve problem 1. I tried various combination of multiple loop and none of them works
Please advise. Thanks in advance
Forum: Fixing WordPress
In reply to: Multiple Loop to do thisHi Kafkaesqui,
Thanks for the tips but it doesn’t work. Two problem.1. The <div class=”mainarticles-sub”><div class=”clearfix”> only show once for 2 rows of posts where I want it to show in one row then repeat the same style in second row (Refer to my post above)
2. When I go to second page, all the posts repeating again
Pls advise. Thanks in advance
Forum: Fixing WordPress
In reply to: Multiple Loop to do thisI have adjusted the loop and It works OK but when go to the second page, all the posts are repeating.
This are the codes I used
<?php if (is_home()) { query_posts("showposts=4"); } ?> <div class="mainarticles-sub"><div class="clearfix"> <?php $posts = get_posts('numberposts=4&offset=0'); foreach ($posts as $post) : start_wp(); ?> <div class="article"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php post_image('attachment'); ?></a><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> <p class="date"><strong><?php the_time('D, M j') ?> <!-- by <?php the_author() ?> --></strong></p> <p><?php the_excerpt('Read the rest of this entry »'); ?></p> <p><strong>Comments <?php comments_popup_link('(0)', '(1)', '(%)'); ?> · </strong><a class="continue" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Read More</a></p> </div> <?php endforeach; ?> </div></div> <?php rewind_posts(); ?> <div class="mainarticles-sub"><div class="clearfix"> <?php query_posts('showposts=4&offset=4'); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="article"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php post_image('attachment'); ?></a><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> <p class="date"><strong><?php the_time('D, M j') ?> <!-- by <?php the_author() ?> --></strong></p> <p><?php the_excerpt('Read the rest of this entry »'); ?></p> <p><strong>Comments <?php comments_popup_link('(0)', '(1)', '(%)'); ?> · </strong><a class="continue" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Read More</a></p> </div> <?php endwhile; ?> </div></div> <?php else : ?> <?php endif; ?>