Connect to the twitter stream and feed live twets to your blog.
Requirements:
Installation:
Just uncompress to your plugins folder and make sure the requirements are met. In the wp admin menu enable TwitFeed, and set the options for your account.
You WILL need to change some options in the daemon and consumer scripts. There are four settings with need to change in BOTH scripts:
Running:
From a shell run: ./daemon ./consumer
The daemon script connects to twitter and stores tweets in memcache. The consumer script reads the data from memcache and inserts into the db.
This is a two step process in order to make sure than the daemon does not fall behind if the feed and database are busy.
If you want to write an init script you can do: ./daemon --write-initd ./consumer --write-initd
This will create scripts in /etc/init.d which you can use to start and stop the daemons. You can also create startup scripts so the daemons start if you reboot, but I won't get in to that. Look up the details on the PEAR System_Daemon class if you wish to do this. Also, this only works for Debian and Ubuntu based systems as far as I can tell.