Laughinglizard
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WordPress for static pages?@sammyrae: ever looked into a wiki? Please take a look at our wiki at http://wiki.wordpress.org if you are interested.
Forum: Plugins
In reply to: Technorati Link Cosmos HackLOL… it will probably be sometime this weekend, maybe next. Keep checking my weblogs tools collection site for updates (or this thread)
Forum: Plugins
In reply to: Waypath Hack: Content related random trackbacks fr@wildduck: It does work in WP1.0+ I have modified the original hack instructions to reflect the changes.
Forum: Fixing WordPress
In reply to: Cannot post comments. $HTTP_POST_VARS problemThat makes sense. The reason that a rewrite of a url breaks the comments is because of the structure of the index.php and the posting of comments. It really is a multiple redirect post (to make things look seamless to the user). Comments popup is a single post with no redirection and thus works. (did it work in your case?)
Forum: Fixing WordPress
In reply to: Cannot post comments. $HTTP_POST_VARS problem1) Check with your webhost
2) Try enabling pop-up comments to see if those work. If that does work, look at #3
3) Is there some sort of a redirection going on? Is the real url of your website something other than http://www.socialwrite.com where socialwrite.com is a dummy html or php redirect page?
For example: My server at http://test.my-ip.com has my WP blog. I buy http://www.test.com and have the registrar url redirect all traffic from http://www.test.com to http://test.my-ip.com In that case, all of WP will work fine except the comment post from the main index page.Forum: Plugins
In reply to: AutoUpdate LiveJournal HackI could try to recreate the hack on my site and send you the files. But that will take a while. Keep checking back! 🙂
Forum: Fixing WordPress
In reply to: Technorati pingsJust as an FYI Look at this post:
http://wordpress.org/support/10/2019
Follow all the instructions and replace:
$client = new xmlrpc_client(“/RPC2”, “api.my.yahoo.com”, 80);
with:
$client = new xmlrpc_client(“/rpc/ping”, “rpc.technorati.com”, 80);
and replace every occurance of Yahoo with technorati (or something).
🙂Forum: Plugins
In reply to: AutoUpdate LiveJournal HackYou have the technique just right. However, I believe that w.bloggar uses the b2 API to post. In that case, you would need to add this line after the $result in the “wp_insert_post” function found all the way at the top of xmlrpc.php:
if ($post_content) ljautoupdate($post_content, $post_title);
Please let me know if it works.
PeaceForum: Requests and Feedback
In reply to: Warnings and Notices@subzane: Yes you do have permissions. Right click on the file or folder and go to properties and then click on the security tab.
Forum: Requests and Feedback
In reply to: a suggestion for a new wordpress editionsMy BooBoo … sorry. It is fixed now! I never noticed it nor did anyone point it out before!
Forum: Installing WordPress
In reply to: What’s all the buzz?OJ: Any links to RecipriRoll? I would love to see how it works!
Forum: Plugins
In reply to: AutoUpdate LiveJournal HackThanks for the positive feedback! In order for the plugin to work through wbloggar (or any other external posting client which uses XMLRPC) follow the tutorial as indicated, but add the following line to xmlrpc.php (found in the root of your blog):
if ($content) ljautoupdate($content, $post_title);
Ideally, there are a bunch of places this should be placed, but since it sounds like you are php-aware, put it within the functions that are being used by your bloggar to post to your blog (should be either through the metaWeblog API, the b2 API or the blogger API). That should fix it. If you hace any difficulty, let me know.
PeaceForum: Fixing WordPress
In reply to: Simple master archive?🙂 Glad it worked out for you!
Forum: Plugins
In reply to: WP Blacklist Comment SPAM Filteration@billw: 🙂 Thank you for your kind words. I have a lot of fun and take a lot of pride in this community!
There has been some interest in this script and writing another script to add stuff to the blacklist is one of things I still have to do. As for the ability to consider viagra etc as spam, you could add another regex to the list before you import it. For example you could add another line to blacklist.txt (before importing it) which would say:
(levitra|lolita|phentermine|viagra|vig-?rx|zyban|valtex|xenical|adipex|meridia\b)
This would check for those words in your comments and filter them out for moderation if those words are contained in the comments. Here is a good tutorial for understanding regular expressions (or regex) like the ones used in blacklist.txt
http://dinki.mine.nu/word/regex/regex.php
Peace.Forum: Fixing WordPress
In reply to: Simple master archive?@anavy: It really should work with the posts_per_page setting in the hack file. I have tested it with 1.0, 1.0.1 and 1.1 Alpha. Wha version are you using? Is there anything else different about your blog (such as other hacks) ?