Earlier today we released the WordPlurk plugin and while beta testing I was asked by one of our community members and customers if we could make one for Indeti.ca. I did a quick test and modifying the plugin was easy enough for Identi.ca.
If your not familiar with Identi.ca then like Twitter it is a micoblogging site. The one key separator about Identi.ca is that the code is open source and runs on a distributed system. This means if you wanted to start up your own server you could. I did find the web GUI for Identi.ca to be a bit confusing and there is no end user GUI like twhirl for it yet.
Like the WordPlurk plugin I modified a WordPress plugin written by fellow Vancouver resident Duane Storey called WordTwit to write WordIdentica.
WordIdentica Install
- Download the WordIdentica zip file.
- Unzip and upload the file and folders to your WordPress plugins folder.
- Activate the plugin in your Admin section.
- Set your username and password in your Admin section.
- Next time you post to your blog it will update to Identi.ca automatically for you.
WordIdentica Requirements
This plugin currently works with WordPress 2.6 and lower. It also requires for curl to be installed on the server. If your host does not have curl installed please ask them to install it.
WordIdentica Development and Problems
You can view the WordIdentica code if you wish to see how to it was designed and make modifications. If you find a problem post it in the comments and we will try our best to help you resolve it.





B:datenbrei : Blog Archive : WordPress plugin to post to identi.ca on newly published posts
July 11, 2008 3:35 am
[...] … and this seems to be the first plugin to link WordPress to identi.ca [...]
Scot
July 11, 2008 4:16 am
Great news! So this requires an upgrade to WP 2.6, correct?
Thx
Scot
July 11, 2008 4:21 am
How could this be used to post to your own install of the Laconica software that drives Identi.ca? I have a live install of Laconica and would like to post from my blog versus Identica.
Thx
Control Yourself » Blog Archive » Round-up #2
July 11, 2008 4:42 am
[...] Bluefur.com whipped up a scrip for automatic identi.ca updates when you post to your WordPress blog. Read & download from Wordidentica: A WordPress Plugin For Identica [...]
blogadmin
July 11, 2008 5:33 am
No it wil work with WP 2.5.x.
blogadmin
July 11, 2008 5:37 am
I think if you change the domain in the plugin it would work. Although I have never used Laconica.
If you get stuck send me a link to your install and I can see what I can do.
Scot
July 11, 2008 5:46 am
I’ve installed on WP 2.5.1. and it works great. One thing I’ve found though is that it won’t recognize different accounts on Identi.ca. I have two accounts, and it always posts to the first one I used in the plugin admin. Thoughts?
Check out my laconica install at sportstwit.com/laconica. Are you suggesting change these lines:
curl_setopt($curl, CURLOPT_URL, ‘http://identi.ca/main/login’);
curl_setopt($curl, CURLOPT_URL, ‘http://identi.ca/notice/new’);
Thx
blogadmin
July 11, 2008 5:51 am
Your trying to get it to post to 2 accounts at the same time or trying to switch the user?
Yes try changing those lines and it should work.
Scot
July 11, 2008 5:54 am
I’m trying to switch the user. So change username/password, save but the posts always go to the first user.
blogadmin
July 11, 2008 5:59 am
I will have to play with the plugin and see if I can recreate that.
Scot
July 11, 2008 6:02 am
It works on my laconica install. Bravo! You should check out this work by someone working at Dreamhost: http://www.gimmesoda.com/
They’re trying to get an easy install of Laconica set up on Dreamhost and I’ll bet it will be a big feature soon enough. I’d move my hosting right now to whomever embraces Laconica and who has great WordPress and/or WPMU support.
You folks are in BC, right? Hi there from beautiful PEI.
Cheers
blogadmin
July 11, 2008 6:09 am
I will check that site out.
Yes we are in BC here.
Scot
July 11, 2008 6:35 am
I also notice the plugin works only for Admin on my WP blog. This would be fantastic for multiple author support.
Scot
July 14, 2008 6:46 am
Any thoughts on the Admin issue. Could there not be a way to allow non-admin on a blog to use it as well (such as authors) via something like:
I’m not a developer but this seems plausible.
Cheers
Scot
July 14, 2008 6:53 am
Chris Harvey
July 15, 2008 1:49 am
thanks for this plugin
Open Media Review » Blog Archive » Identi.ca Account
July 23, 2008 9:15 am
[...] see if I could hack an existing plugin to provide this functionality when a quick search revealed someone beat me to it for which I am hugely [...]
HÃ¥kan Eriksson
July 27, 2008 12:59 pm
Look like an great plugin, but i have some trouble because my host don´t got allow_url_fopen enabled on the server (some security thing) and the “file_get_contents” dont work for me… Are there something else like curl i can use instead and do you guys know what?
Thanks
blogadmin
July 27, 2008 4:11 pm
This plugin uses curl. Are you getting an error with it?
HÃ¥kan Eriksson
July 27, 2008 4:29 pm
I got some Fatal error because my host have the Allow_url_fopen disabled into php.ini and can´t not use “file_get_contents”.
But I find a solution for it:
After line 30
function curlGet($url) {$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
return curl_exec($ch);
}
And instead of “file_get_contents” i use curlGet