There a few bugs that I’ll be fixing shortly- particularly when it comes to the standalone version of Twools.

There a few bugs that I’ll be fixing shortly- particularly when it comes to the standalone version of Twools. 

If you are comfortable editing code, then look for the following line in feeds.php and streams.php:

/ If the API Settings are missing….

if($oauth_oauth_access_token == “” OR $oauth_oauth_access_token_secret == “” OR $consumer_key == “” OR $consumer_secret == “”)

and change to:

// If the API Settings are missing….

if($twools_settings[‘oauth_access_token’] == “” OR $twools_settings[‘oauth_access_token_secret’] == “” OR $twools_settings[‘consumer_key’] == “” OR $twools_settings[‘consumer_secret’] == “”)

Thanks to Hermann H for the heads up here.

Also, caching isn’t working properly in both versions. I’ll be fixing this for version 0.11 as well as adding a “quiet time” when the cached response is always used. This is useful for running at night time when you don’t always need fresh data from Twools.

Ian Anderson Gray