Tim
Forum Replies Created
-
Forum: Plugins
In reply to: [Import Tweets as Posts] Retweets get truncatedCorrect username:
if ($tweet->retweeted_status) $tweet_text = "Retweet @" . $tweet->retweeted_status->user->name . ": " . $tweet->retweeted_status->text;Forum: Plugins
In reply to: [Import Tweets as Posts] Retweets get truncatedDamn.
if ($tweet->retweeted_status) $tweet_text = "RT " . $tweet->retweeted_status->user->name . ": " . $tweet->retweeted_status->text;Forum: Plugins
In reply to: [Import Tweets as Posts] Retweets get truncatedSlightly improved version:
if ($tweet->retweeted_status) $tweet_text = "RT " . $tweet->retweeted_status->user->name . ": " . $tweet->retweeted_status->text;We’re hosting on nginx. Could it be that wordpress’ nginx mode is triggering that behaviour? In my opinion, a sidebar plugin should not trigger cache headers in the frontend 😉
Further investigation lead to the following, temporary solution:
in custom-sidebars/inc/class-custom-sidebars-explain.php comment out line 55 (session_start()).
In custom-sidebars/inc/external/wpmu-lib/functions-wpmulib.php comment out line 69 (session_start())
Which leads to another questions: Are those sessions a requirement or just a feature of the library?
Same problem here. Examining the source we found a couple of $path, but that won’t survive a plugin update.
Forum: Plugins
In reply to: [Plugin: Capability Manager] Error on listing capabilitiesI can confirm this error with WordPress 3.0.