Page 7 of 7 FirstFirst ... 567
Results 61 to 63 of 63
  1. #61
    Join Date
    Nov 2003
    Location
    Haarlem | Netherlands
    Posts
    1,943
    Plugin Contributions
    12

    Default Re: Twitter sidebox Cached

    Hi patsky, sorry for the late reply and thanks for posting you fix.

    My guess is that your character set is set to UTF-8 i.s.o. utf-8, or maybe a different encoding is being used which can't be converted to iso. If the problem lies in the fact that the script does not account for a UTF-8 versus utf-8 setting this should solve the problem:

    Change:
    Code:
     if (!(CHARSET == 'utf-8')) { 
      // convert UTF-8 to ISO-8859-1
        $text = iconv('UTF-8', 'ISO-8859-1//TRANSLIT//IGNORE', $text);
      }
    to
    Code:
     if (!(strtolower(CHARSET) == 'utf-8')) { 
      // convert UTF-8 to ISO-8859-1
        $text = iconv('UTF-8', 'ISO-8859-1//TRANSLIT//IGNORE', $text);
      }
    If the problem is related to the use of an incompatible character set you might get problems when using special characters in your tweets (like ö or é).

  2. #62
    Join Date
    Dec 2011
    Posts
    9
    Plugin Contributions
    0

    Default Re: Twitter sidebox Cached

    Hi, I just installed this and it doesn't post tweets. When clicking either "now" link, it looks for twitter.com/OnlineWineSale/statuses/1 and Twitter says "sorry, that page doesn't exist!" OnlineWineSale is my Twitter ID. Any help is appreciated

  3. #63
    Join Date
    Nov 2003
    Location
    Haarlem | Netherlands
    Posts
    1,943
    Plugin Contributions
    12

    Default Re: Twitter sidebox Cached

    Hi Landron,

    I assume you somehow installed an old version, the links don't look like "twitter.com/OnlineWineSale/statuses/" in the latest version. Also the problem appears to be solved, so I guess the cache simply needed a refresh.

 

 
Page 7 of 7 FirstFirst ... 567

Similar Threads

  1. Twitter Sidebox? (New module creation help)
    By curtc in forum Addon Sideboxes
    Replies: 6
    Last Post: 10 Jun 2011, 08:24 PM
  2. Facebook/Twitter images sidebox
    By dddmx3 in forum Addon Sideboxes
    Replies: 11
    Last Post: 3 Mar 2011, 05:39 PM
  3. Twitter Updates Sidebox Contribution Support Thread
    By delia in forum Addon Sideboxes
    Replies: 13
    Last Post: 29 Dec 2010, 12:44 AM
  4. Twitter sidebox only on home page
    By krazey in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 11 Dec 2010, 09:04 PM
  5. twitter sidebox text overflow
    By healthstore in forum Addon Sideboxes
    Replies: 0
    Last Post: 14 May 2010, 02:44 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •