Laughinglizard
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Simple master archive?@webicus: The problem with the alphabetical sorting is my blog goofing off (and some laziness on my part). Those posts have titles which are in lower case and thus show up at the end when sorted by link name. You could add something like
$new_string = msql_regcase($string); to wp-blog-header.php which would do a case insensitive order_by.
As for the authors, only mark has any posts, the others have none. The new versions of WordPress (1.0.1+ I think) has nice checks for empty authors and post requests. My blog simply errors out (with extreme verbosity) when it finds no posts. If you notice, the errors are coming from wp-blog-header.php.
PS: A disclaimer. I do not claim all of this to be my code. I have peiced this together from stuff done by CodeGurl, MtDew and others. So thanks to all of you. 🙂Forum: Fixing WordPress
In reply to: Simple master archive?I fixed it to accept cleaner urls. You dont see “permalinks” on my blog because I do not use permalinks. If you like the way it looks, you can download the file here:
http://dinki.mine.nu/weblog/b2-img/narchives.phps
Copy this file to the root of your blog, rename it to narchives.php (or something equivalent with a .php at the end instead of the .phps) and then point your browser to it.Forum: Fixing WordPress
In reply to: Simple master archive?Do my master archives look right to you?
http://dinki.mine.nu/weblog/narchives.php
If it does, please let me know and I will either post the source or send you the file.
PeaceForum: Plugins
In reply to: WP Blacklist Comment SPAM Filteration@gat: I am not sure about your question. If you are importing entries into your database, make sure they do not already exist before you update or add them or make sure that the new blacklist.txt file contains all the old and new entries.
(I am not even sure that you are talking about my hack, I apologize if this question is about david’s hacks)Forum: Requests and Feedback
In reply to: Total # of WP Blogs StatisticsSG: As for yout blog showing up twice, I will leave it alone for now and weed out later. For people that are not using it any longer, I would leave the determination upto you. If you think that they belong on the stats, please go for it! Nothing would hurt. 🙂
And a thank you to you and GamerZ for helping to promote WP!Forum: Plugins
In reply to: WP Blacklist Comment SPAM FilterationThank you for your comments Shreela. I fixed the wiki.
This hack works by turning on suspect comments’ moderation. So if the script thinks that a comment might be spam, it puts it in the moderation queue and does not show it on the main page. I suspect that if you look in your comment moderation queue, you will see the spam comments there.
Your settings are just perfect. With your settings, your blog will email you with “moderation required for comment” message when it figures that the comment is spam. In that case, the comment is not posted till you get a chance to look at it. You could just click on the link in the email to unapprove the comment and it gets deleted.
With the present incarnation of this hack, it is normal for it to NOT consider every url with viagra and casino in it as spam.
Again, thank you for the feedback. Keep us posted!Forum: Plugins
In reply to: WP Blacklist Comment SPAM FilterationIf someone has used this hack, could we please get some feedback? Thanks for testing it.
PeaceForum: Plugins
In reply to: AutoUpdate LiveJournal HackI am not sure where the first error comes from. It could be related to you having an extra space or a newline somewhere in your my-hacks.php or in your post.php.
The current time is sent as the time of your server. This should and can be fixed. As a matter of fact, while I was writing this, I found a quick answer. Look for the fix in the same hack tutorial (just copy the function again)
Glad you like the hack.
PeaceForum: Plugins
In reply to: Moblog Hack Beta: Need Beta Testersthat really would depend on your host. In most cases, (if UNIX or Linux hosting) the command would be:
/usr/bin/php /path/to/your/wordpress/folder/wp_moblog.php
You should contact your host and ask them how to setup a cron job to run the wp_moblog.php files every couple of hours. Without looking at your setup and your control panel, it is pretty hard to answer your question correctly.Forum: Everything else WordPress
In reply to: Happy Birthday Dougal!Happy birthday Dougal!
Forum: Plugins
In reply to: Sticky Post Hack – 0.72Sure thing! Would love to help you out as much as I can.
Forum: Fixing WordPress
In reply to: Links “Updated” in 1.0.1Aha. I was wrong then. I apologize.
Forum: Requests and Feedback
In reply to: Pictures via Email-InterfaceSure. I have a very similar hack for cell phone email posting which allows pictures as attachments. Look at this forum topic for further information:
http://wordpress.org/support/10/1339Forum: Plugins
In reply to: Sticky Post Hack – 0.72I see that you are using 0.72. My best suggestion would be to remove all of the hack and start over again. I cannot look at your code, but your error lies in your blog.header.php. I would look at that real close and check to make sure all the curly brackets close in the right place, etc. Unless you have made any serious changes to your blog.header.php, I would start with a fresh copy and re-apply the hack to it.
Hope this Helps.
PeaceForum: Fixing WordPress
In reply to: Links “Updated” in 1.0.1I know I am nitpicking, but did the size of the weblogs.com.changes.cache change or is it still 0?
Also, is this line uncommented in your index.php?
// Uncomment the next line if you want to track blog updates from weblogs.com
//include_once(ABSPATH.WPINC.’/links-update-xml.php’);
So it should look like:
// Uncomment the next line if you want to track blog updates from weblogs.com
include_once(ABSPATH.WPINC.’/links-update-xml.php’);