NP_Twitter v0.8
A Major release v0.8 is out.
- direct message sending
- added archive tweets override function
- added client source nptwitter
- allowed reply to all (since a twitterer might sett to show other ppl's replies)
- highlight replies (search for @admun)
- provided failure response when tweet/DM failed to sent
- abort tweet delete, if delete from twitter timeout/failed
- added twitter_all_update.php to download all missing tweets in the past (200 at a time)
- fixed incorrect count update friends/follower
- fixed & < > ' encoded display
- fixed a bug when user has not using twitter
- fixed & => & encoding when sending update
- added favorite support
- direct msg download and display
- show favorite tweets
- reply dm
- del dm
- sync favorite w/ local tweets
click here to download
- direct message sending
- added archive tweets override function
- added client source nptwitter
- allowed reply to all (since a twitterer might sett to show other ppl's replies)
- highlight replies (search for @admun)
- provided failure response when tweet/DM failed to sent
- abort tweet delete, if delete from twitter timeout/failed
- added twitter_all_update.php to download all missing tweets in the past (200 at a time)
- fixed incorrect count update friends/follower
- fixed & < > ' encoded display
- fixed a bug when user has not using twitter
- fixed & => & encoding when sending update
- added favorite support
- direct msg download and display
- show favorite tweets
- reply dm
- del dm
- sync favorite w/ local tweets
click here to download
Comments
Michael O-Keefe wrote:
03/05/09 10:18:07
Admun wrote:
This is a problem w/ MySQL 2.0.27. This has been reported in forum.
03/05/09 23:04:46
David Geens wrote:
Dear Edmond,
Your twitter plugin suffer from the twitocalyps.
You should update your database the fid, uid and especially tid fields to bigint!
06/15/09 12:12:25
Admun wrote:
Indeed David. 8(
A quick fix for now until 0.9 is out:
- do a "ALTER TABLE `nucleus_plug_twitters_tweets` CHANGE `tid` `tid` BIGINT( 11 ) NOT NULL" from mysql
- seach for "ORDER BY tid" in NP_Twitter.php and change them to "ORDER BY created_at" There should be ~4 places to change
I agree that all INT need to be BIGINT now....
06/15/09 15:08:03
I had a problem with the database tables being created properly. I ended up changing the VARCHAR(256) declarations to VARCHAR(255). I'm using GoDaddy to host, their MySQL reports its version as: 4.0.27-max-log
I think it's working now, thanks!