Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author kirilln

    (@kirilln)

    Checked your site and it appears that there is an issue with storing tweets to DB. Here is what the AJAX query returns:

    {“error”:”Cannot store tweets to DB”}

    This usually means that you upgraded from a fairly old version of Tweet Blender to the newest. The DB structure recently changed.

    Unfortunately, the only way to deal with this is to completely uninstall Tweet Blender plugin and then install it again. Here is the related tweet – https://twitter.com/#!/tweetblender/status/7541897392291840

    Thread Starter Jay Collier

    (@jcollier)

    I deactivated TB, deleted the files, and then reinstalled and reactivated on that one blog. It still appears to be doing the same live query (rather than a pull from cache).

    Perhaps something else I’m doing?

    Plugin Author kirilln

    (@kirilln)

    Yes, the same issue is still there. Do you have access to your server error logs? That’s the only way to find out what’s going on. There must be some SQL error message there that sheds light on this.

    Thread Starter Jay Collier

    (@jcollier)

    I just looked in the error log, and there’s nothing related to TB.

    I reloaded the page several times, and looked into the error log, nothing.

    How else might I diagnose?

    Plugin Author kirilln

    (@kirilln)

    If you didn’t see anything in the log you might need to enable higher level of logging/debugging in WP. It’s fairly straightforward – just edit the wp-config.php file. Here is what I use in my test boxes:

    /** Debug */
    define( 'WP_DEBUG', true ); // turn on debug mode
    define( 'WP_DEBUG_LOG', true ); // log to wp-content/debug.log
    define( 'WP_DEBUG_DISPLAY', false); // don't force display_errors to on
    
    @ini_set('log_errors',1); // enable or disable php error logging (use 'On' or 'Off')
    @ini_set('display_errors',0); // enable or disable public display of errors (use 'On' or 'Off')

    You can find other ways of doing it if you google it online.

    This will create debug.log in your wp-content directory and once you try to refresh the page with the widget you should see some kind of notice or error message that would help us get to the bottom of this.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Tweet Blender] Works great’ is closed to new replies.