July 22nd, 2009
I received a couple of e-mails from people trying the Post Filters plugin and found that their posts would simply disappear from the main page and sidebar once the plugin was activated.
Turned out I was using the wrong activation method for the plugin, I fixed it and released a new version, hope this one works better for everyone.
Plugins, Post Filters, Wordpress
January 23rd, 2009
I’ve installed phplist on a subdomain for those who want to be notified when NotifyMe2 is released.
Click here to subscribe.
I will probably convert subscribers to NotifyMe2 once it has reached a decent stage but I can’t promise anything..
mail list, notifyme, notifyme2, phplist, subscribe NotifyMe2, Plugins, Wordpress
January 1st, 2009
If you’ve previously used my NotifyMe plugin, you’ll probably be excited to hear that I’ve finally started development on NotifyMe2, even though the initial NotifyMe plugin never reached a final version. The reason that I’m going straight to version 2 is that I am starting from scratch again, seeing as I’ve gained a lot more experience since initially starting NotifyMe, I want to apply that experience as best I can.
Following are my ideas about the project, what exactly I want to achieve by making yet another mailing list plugin for Wordpress.. and while I’m at that subject I would like to point out that I was originally not planning to develop NotifyMe any further, since there are loads of alternatives.. but I’ve gotten a lot of e-mails from people who loved the simplicity of the plugin and would prefer not to reach out to alternatives.
Therefore, my goals on this project are;
- To yet again, create a very simplistic (yet advanced, but not bloated) mailing list plugin
- To have it integrate with Wordpress as best I can
- By this I mean I want it to match the wordpress style in every aspect.
- I have removed any Naatan.com abbreviations, this would break the integration from my point of view.
- Initially I want to release a basic plugin that does exactly what it needs to do and nothing more, from there I will continue to extend it, though as I said, I do not want it to become bloated.
- To develop a better way to notify users of new blog items, a way that would not break other plugin hooks and filters.
- Cron job support for these type of notifications
Those are basically the goals I have at the moment, once I’ve reached them I will continue to add functionality to the plugin, I currently have some ideas about adding category/tag specific notifications for mailing lists, but I consider this an extra functionality which will not be required in the initial release.
Well that’s about it, I hope the people that have been e-mailing me asking for a new version have not given up hoping, if it wasn’t for them, I wouldn’t be doing this
mailing list, not discontinued, notifyme, notifyme2, wordpress plugin News, NotifyMe2, Wordpress
December 18th, 2008
Well I just installed Linux Mint tonight as I really liked where the Project was going, it’s basically Ubuntu with some extra’s for the real Linux geeks.
The only problem with any (or most) new Linux installations is that the fonts are blurry and spacing is just off.. So I did some googling and found this thread on the Ubuntu forums, if you follow the 2 simple steps given you’re fonts will look a lot better..
Create a file called .fonts.conf in your home directory (vim ~/.fonts.conf) and paste in the following contents
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
</fontconfig>
After that relog.
Apperantly the reason this isn’t done by default is because Apple has some patents on the techniques used to make this happen.. don’t you just hate patents..
Note that I’ve only tried it on Linux Mint 6 (based on Ubuntu 8.10), but I reckon it should work for most distro’s.. gonna try it tomorrow on Centos 4.7 at work.
crisp fonts, linux fonts, ubuntu fonts Linux, Other Snippets, Snippets, Troubleshooting
December 11th, 2008
If you’ve ever used cPanel you probably know that each account is tied to a default domain for that account.. you can add more domains to each account but these will be seen as additional domains..
This idealogy has always annoyed me.. because it also means that your default domain is bound to the public_html folder and all other domains can have either that folder or any sub folder as it’s homedir.. but I want all my domains in the same folder, not one “default” domain as the main folder and put all other domains in a subfolder of that domain.. where’s the logic in that?
So I used htaccess to have mod_rewrite redirect the main domain to the “domains” folder… which is the same folder all my other domains use, this way I can have things the way I like.
Here’s the code that you put right inside your public_html folder;
<IfModule mod_rewrite.c>
RewriteEngine On
ReWriteCond %{HTTP_HOST} naatan.com
ReWriteCond %{DOCUMENT_ROOT} !domains/
ReWriteCond %{DOCUMENT_ROOT} !subdomains/
ReWriteRule ^(.*)$ domains/naatan.com/$1 [L]
</IfModule>
Of course you’re gonna want to replace naatan.com with your domain..
Read the rest of this entry »
cpanel, domain root, multiple domains Other Snippets, Snippets
November 20th, 2008
One of the first plugins I installed on my new blog is the SyntaxHighlighter plugin by matt, Viper007Bond and mdawaffe, from what I understand each of these guys kind of perfected the other persons version.
Anyway, the plugin is great, it basically just incorporates the Syntaxhighlighter script by Alex Gorbatchev into Wordpress. There’s just one problem though, it does not support indentation, as the TinyMCE configuration in Wordpress doesn’t convert spaces to ’s. Also tags like <?php were in my case converted to <?php, which is quite annoying.
Long story short, I’ve done some playing around with the code and it turns out that just by removing the TinyMCE encoding / decoding functions and adding a small function to convert spaces to ’s this plugin works great!
<?php
echo 'Proof! Look.. I can use as plain text as well.. ';
?>
Attached to this post is the modified syntaxhighlighter.php file, just install the SyntaxHighlighter plugin and replace the syntaxhighlighter.php with the one posted underneath.
Download: syntaxhighlighter.php (513) - 3.88 KB
I’d like to give some quick kudo’s to Steve Smith from The Wordpress Magazine for sharing his SyntaxHighlighter modifications with me, without them it would have taken me much longer to figure this one out.
wordpress syntax highlighting PHP Scripts, Plugins, Scripts, Wordpress
November 16th, 2008
My second plugin released in one day :ohhyeahh:, it’s a small one though.. called Post Filters.
I am still working on some more plugins, this one I created out of necessity, I wanted to have my plugin pages skip the frontpage and stick to their relative category.
So why not use a page? Well the links in my navigation bar are generated by the categories I post in.. and pages don’t have categories.. so there.
Anyway, what this plugin does:
Gives you the ability to have posts skip the frontpage and to stick a post to the top of all it’s relative categories.
Hopefully some more people can find a good use for this
Post Filters, skip frontpage, stick to category, sticky, wordpress plugin News, Plugins, Wordpress
New Plugin: Comment Move
November 19th, 2008And that’s about it.. it’s another no-fuzz plugin.. does what it needs to do and nothing more.
On another subject there is a new update for Twitter Status that fixed incompatibility with themes that don’t have jquery enabled by default.
Make sure you read the readme.txt as installation instructions have slightly changed.
2 Comments » Comment Move, Move Comments, Twitter Status Comment Move, Plugins, Wordpress