Posts tagged ‘word’

I’ve never had any problem with WordPress extensions so far, but SuperCache is just refusing to work. Its option page is working just fine with no complains which means I’ve got all the settings correct, including .htaccess rules and WP_CACHE variable, but it’s just not caching anything. The “supercache” directory has no files at all.

Any idea?

EDIT: Putting “index.php” under “accepted files” did the trick… duh! And I think this also helped.

UPDATE: I had to disable this as posts weren’t loading properly. :(

Like many others, I was also affected by it several months ago, though not as bad as some. I’ve read that some of those sites hit as low as 0 in terms of Google PR which is like saying those don’t even exist on the Internet. This is a rather harsh punishment for putting up other ads other than Google AdSense, such as PayPerPost. Some argue, such as Google themselves, that it’s due to change in the algorithm, but if that’s true, why haven’t it affect ALL sites?

Anyhow, this site used to have PR 6 and my journal subdomain 4 up until around June of this year when it suddenly dropped by 1 for both sites; consequently, I was only able to take opportunities (from PayPerPost) that paid between $5 to $15. Now that I moved my blog up to the root of this site from that subdomain, I’m able to take opportunities that pay well above $30 to $50 for 100 or sometimes less words. If I knew the move would make this much difference, I’d have done it much sooner. Now only if Google gives my lost PR back… :roll:

As for Google AdSense, I’ve only earned about $80 in 18 months. It didn’t do well even when I made it appear right after first post, and I don’t think I can expect much from it since people can just easily block it in Firefox and even in other browsers. If you ask me, this kind of advertising is pretty much dead mainly because of many effective ad blockers.

Now Google, “do no evil…” :|

I’ve searched high and low for an extension which displays a link that deletes this cookie, but nothing turned up. So I simply modified “wp_pass.php” a little and wrote a small function.

First, create a file named “wp_passexpire.php” with the following:

<?php
require( dirname(__FILE__) . ‘/wp-config.php’);

// Expire
setcookie(’wp-postpass_’ . COOKIEHASH, ”, time() - 864000, COOKIEPATH);

wp_cache_delete($blog_id);

wp_safe_redirect(wp_get_referer());
?>

Continue reading ‘Simple WordPress Hack: Delete “wp_postpass” Cookie’ »