Rok
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Which file to editHere’s your porblem:
1. You’ve a post here : http://lovelatoya.com/2007/11/12/29/
2. open this post in WordPress Editor or XMLRPC Desktop Client’s (WLW), which ever way you create post.
3. Enter alt=”” or alt=”xxx” either ways on all the three icons.
a. You can leave alt=”” attribute as blank.
b. Or you can enter alt=”xxx”, replace xxx with some description.Once you enters alt, save your post/publish and re-validate.
Your site validates 100% thereafter.
Note: 1. Always enter alt im images, else you’ll keep getting validation errors.
2. Whenever you need help, write down the complete error, that’s helps.
3. Always give your site address, that helps in getting further info.Forum: Plugins
In reply to: UserOnline plugin not for high traffic sitesGamerZ has said, and I’m also of the same opinion.
Forum: Everything else WordPress
In reply to: DreamHost Terminating my AccountDid you tried Ref Karma from Dave of SK2. It’ll block all Spam bots etc. from accessing your site. In addtion, you also maintain your own Blacklist/whitelist i.e. you’ve the authority to blacklist/whitelist any URL.
If you don’t mind, I would like to know, what you’ve entered in your .htaccess to eliminate the PHP load on the server. I want to do the same.
Forum: Plugins
In reply to: Google Analytics for WordPressIn addition to Otto’s reply: I’ve posted about Local Analytics plugin 100% working on WordPress 2.3.1 with cache capibility. Read on my blog or author site.
Forum: Everything else WordPress
In reply to: DreamHost Terminating my AccountInstall SK2 and Akismet or SK2 and BB. In addition you can also try Simple Trackback Validation Plugin.
Forum: Fixing WordPress
In reply to: How to stop scraper pingbacksHmmm, if SK2 & SK2 moderate Plugin really doesn’t fullfil your requirement. Try this one, and see if it can be of any help to you:
Forum: Plugins
In reply to: How to tell a plugin not to mess with a post if another plugin is using itUse TLA, if you don’t care for Google Pagerank.
Forum: Plugins
In reply to: iMP Links and 2.3 compatibilityThe site’ll never back again. Hardi has got the job.
Forum: Plugins
In reply to: wp-super-cache vulnerable to PHP Injection?Donncha, thanks for explaining.
And first two post authors: next time, provide the details, you’ve come across, so that those can be addressed timely.
Forum: Everything else WordPress
In reply to: Spammers – helpThe combination of Aksimet and SK2 is a way to go. Undoubtedly!
Forum: Plugins
In reply to: Need Trackback Plugin to eliminate spam“I couldn’t understand some parts of this article but it sounds interesting.”
Spam
Install SK2, alongwith Akismet.
Forum: Plugins
In reply to: Meta keywords from tags?Kaf, the below code generates invalid argument supplied for each function error, when you view Archive pages i.e. Category, Monthly, Daily etc. Archives.
<?php global $post; if( is_single() || is_page() ) : $tags = get_the_tags($post->ID); foreach($tags as $tag) : $sep = (empty($keywords)) ? '' : ', '; $keywords .= $sep . $tag->name; endforeach; ?> <meta name="keywords" content="<?php echo $keywords; ?>" /> <?php endif; ?>Forum: Plugins
In reply to: 2.3.1 and Spam Karma 2due to a fatal error.
what exactly is the error? SK2 is flawlessely working on WordPress 2.3.1
Forum: Plugins
In reply to: Add Google Ad to Lightbox Plugin Image Popup?It’s against Google Adsense TOS.
Forum: Plugins
In reply to: Comment QuickTags PlugIn for WP 2.3???Here’s your problem:
Your code:
<textarea name="comment" id="text" cols="63" rows="7" tabindex="4"></textarea>Correct code:
<textarea name="comment" id="comment" cols="63" rows="7" tabindex="4"></textarea>Just replace your code with the above posted. And it should work.