<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: wp to twitter</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: wp to twitter</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 13:02:32 +0000</pubDate>

<item>
<title>joedolson on "[Plugin: WP to Twitter] Very bad to database!"</title>
<link>http://wordpress.org/support/topic/333803#post-1290290</link>
<pubDate>Sun, 22 Nov 2009 20:08:20 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1290290@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can you tell me what the problems you've experienced are? WP to Twitter does extremely minimal writing to the database, so I'm pretty surprised to hear that you're having problems with your database in relation to the plugin. &#60;/p&#62;
&#60;p&#62;The only database writes WP to Twitter does are it's own settings and a few items of post meta data on each post.&#60;/p&#62;
&#60;p&#62;So, if you're experiencing a large bulk of database writes from the plugin, I'd really like to know more.
&#60;/p&#62;</description>
</item>
<item>
<title>csigncsign on "[Plugin: WP to Twitter] Very bad to database!"</title>
<link>http://wordpress.org/support/topic/333803#post-1287960</link>
<pubDate>Fri, 20 Nov 2009 12:44:10 +0000</pubDate>
<dc:creator>csigncsign</dc:creator>
<guid isPermaLink="false">1287960@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Bad plugin, makes your database really huge!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-to-twitter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-to-twitter/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>garethooper on "[Plugin: WP to Twitter] Submitting Edited Posts"</title>
<link>http://wordpress.org/support/topic/324687#post-1273306</link>
<pubDate>Sat, 07 Nov 2009 12:51:17 +0000</pubDate>
<dc:creator>garethooper</dc:creator>
<guid isPermaLink="false">1273306@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Plugin still does this with 1.5.2
&#60;/p&#62;</description>
</item>
<item>
<title>andr87 on "[Plugin: WP to Twitter] #title# and #url# doesnţt work at the same time"</title>
<link>http://wordpress.org/support/topic/316391#post-1266016</link>
<pubDate>Sun, 01 Nov 2009 11:19:07 +0000</pubDate>
<dc:creator>andr87</dc:creator>
<guid isPermaLink="false">1266016@http://wordpress.org/support/</guid>
<description>&#60;p&#62;It's in the custom tweet text and it only happened with bit.ly service. Then I tried with cli.gs and that worked so I'm using that service since. I don't know if now bit.ly would work.
&#60;/p&#62;</description>
</item>
<item>
<title>theosp on "WP to Twitter Bug Report + Fix"</title>
<link>http://wordpress.org/support/topic/326728#post-1265084</link>
<pubDate>Sat, 31 Oct 2009 02:55:41 +0000</pubDate>
<dc:creator>theosp</dc:creator>
<guid isPermaLink="false">1265084@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;strong&#62;First thank you for that plug-in it's very useful. &#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Bug description:&#60;/strong&#62;&#60;br /&#62;
a small bug causing replace of #title# by blank string '', therefor sending twitter a sentence without the post title.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Bug cause:&#60;/strong&#62;&#60;br /&#62;
Miscalculation of utf-8 (Hebrew chars in my case) string length because they were previosly been urlencode(), which made them longer.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Bug detailed cause:&#60;/strong&#62;&#60;br /&#62;
In the current version of 'wp to twitter' (1.5.1) the function jd_truncate_tweet() calculates the sentence that will be sent to tweeter using this command:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$str_length = mb_strlen( $post_sentence ); // wp-to-twitter.php; Line 231&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Some of jd_truncate_tweet() arguments like the title string for example are generated by jd_twit() that already perform urlencode() on them:&#60;/p&#62;
&#60;p&#62;for example:&#60;br /&#62;
&#60;code&#62;$thisposttitle = urlencode( stripcslashes( strip_tags( $_POST[&#38;#39;post_title&#38;#39;] ) ) ); // wp-to-twitter.php; Line 354&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;utf8 hebrew chars regards as special chars which the function urlencode() replace by percent (%) sign followed by two hex digits.&#60;/p&#62;
&#60;p&#62;For example: the char א replaced by: %D7%90&#60;/p&#62;
&#60;p&#62;Therefor mb_strlen( $post_sentence ) doesn't returns the actual sentence length but the encoded one.&#60;/p&#62;
&#60;p&#62;As said this miscalcuation causing (for example) omitting of the post title and I believe other problems as well.&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Bug Fix:&#60;/strong&#62;&#60;br /&#62;
Replacing &#60;code&#62;mb_strlen( $post_sentence )&#60;/code&#62; with &#60;code&#62;mb_strlen( urldecode( $post_sentence ) )&#60;/code&#62;:&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Original:&#60;/strong&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$str_length = mb_strlen( $post_sentence );

	switch ($str_length) {
		case $str_length &#38;lt;= 140:
			$sentence = $post_sentence;
			break;
		case $str_length &#38;gt; 140:
			$post_sentence = $sentence;
			$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, $thisposturl, $post_sentence );
			$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, $thisposttitle, $post_sentence );
			$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,$thisblogtitle,$post_sentence );
			$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
				if ( mb_strlen ( $post_sentence ) &#38;lt;= 140 ) {
					$sentence = $post_sentence;
				} else {
					$post_sentence = $sentence;
					$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, $thisposturl, $post_sentence );
					$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, $thisposttitle, $post_sentence );
					$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
					$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
					if ( mb_strlen ( $post_sentence ) &#38;lt;= 140 ) {
						$sentence = $post_sentence;
					} else {
						$post_sentence = $sentence;
						$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, $thisposturl, $post_sentence );
						$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, &#38;#39;&#38;#39;, $post_sentence );
						$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
						$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
							if ( mb_strlen ( $post_sentence ) &#38;lt;= 140 ) {
								$sentence = $post_sentence;
							} else {
								// If, by some miracle, this is still too long after all that, move the URL to the front and just chop of the end of the status update.
								$post_sentence = $sentence;
								$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, &#38;#39;&#38;#39;, $post_sentence );
								$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, &#38;#39;&#38;#39;, $post_sentence );
								$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
								$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
								$post_sentence = $thisposturl . &#38;#39; &#38;#39; . $post_sentence;
								$post_sentence = mb_substr( $post_sentence, 0, 137 ) . &#38;quot;...&#38;quot;;
								$sentence = $post_sentence;
							}
					}
				}
			break;
		}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;Fixed Code:&#60;/strong&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$str_length = mb_strlen( urldecode( $post_sentence ) );

	switch ($str_length) {
		case $str_length &#38;lt;= 140:
			$sentence = $post_sentence;
			break;
		case $str_length &#38;gt; 140:
			$post_sentence = $sentence;
			$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, $thisposturl, $post_sentence );
			$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, $thisposttitle, $post_sentence );
			$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,$thisblogtitle,$post_sentence );
			$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
				if ( mb_strlen ( urldecode( $post_sentence ) ) &#38;lt;= 140 ) {
					$sentence = $post_sentence;
				} else {
					$post_sentence = $sentence;
					$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, $thisposturl, $post_sentence );
					$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, $thisposttitle, $post_sentence );
					$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
					$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
					if ( mb_strlen ( urldecode(  $post_sentence ) ) &#38;lt;= 140 ) {
						$sentence = $post_sentence;
					} else {
						$post_sentence = $sentence;
						$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, $thisposturl, $post_sentence );
						$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, &#38;#39;&#38;#39;, $post_sentence );
						$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
						$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
							if ( mb_strlen ( urldecode(  $post_sentence ) ) &#38;lt;= 140 ) {
								$sentence = $post_sentence;
							} else {
								// If, by some miracle, this is still too long after all that, move the URL to the front and just chop of the end of the status update.
								$post_sentence = $sentence;
								$post_sentence = str_ireplace( &#38;#39;#url#&#38;#39;, &#38;#39;&#38;#39;, $post_sentence );
								$post_sentence = str_ireplace( &#38;#39;#title#&#38;#39;, &#38;#39;&#38;#39;, $post_sentence );
								$post_sentence = str_ireplace ( &#38;#39;#blog#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
								$post_sentence = str_ireplace ( &#38;#39;#post#&#38;#39;,&#38;#39;&#38;#39;,$post_sentence );
								$post_sentence = $thisposturl . &#38;#39; &#38;#39; . $post_sentence;
								$post_sentence = mb_substr( $post_sentence, 0, 137 ) . &#38;quot;...&#38;quot;;
								$sentence = $post_sentence;
							}
					}
				}
			break;
		}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Using the fixed code I can use the plug-in for my Hebrew website: &#60;a href=&#34;http://www.anarchy.co.il/&#34;&#62;http://www.anarchy.co.il/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-to-twitter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-to-twitter/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>garethooper on "[Plugin: WP to Twitter] Submitting Edited Posts"</title>
<link>http://wordpress.org/support/topic/324687#post-1258394</link>
<pubDate>Sun, 25 Oct 2009 13:31:05 +0000</pubDate>
<dc:creator>garethooper</dc:creator>
<guid isPermaLink="false">1258394@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Plugin submits tweets on edited posts when option is un-ticked and separately submits tags as Hashtags with no URL or title.&#60;/p&#62;
&#60;p&#62;WP: 2.8.5&#60;br /&#62;
WP-Twitter Version: 1.5.1&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-to-twitter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-to-twitter/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1255902</link>
<pubDate>Thu, 22 Oct 2009 23:10:33 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1255902@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I didn't think that tt-config.php sounded familiar... ;)
&#60;/p&#62;</description>
</item>
<item>
<title>quisp on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1252960</link>
<pubDate>Tue, 20 Oct 2009 17:02:45 +0000</pubDate>
<dc:creator>quisp</dc:creator>
<guid isPermaLink="false">1252960@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Yikes! I just realized that I've submitted my query in the wrong place, regarding the wrong plug-in. I was asking about TweetThis, and I see that this thread is for a different plug-in. &#60;/p&#62;
&#60;p&#62;My apologies. I'm off to investigate replacing TweetThis with WP to Twitter.
&#60;/p&#62;</description>
</item>
<item>
<title>quisp on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1252902</link>
<pubDate>Tue, 20 Oct 2009 16:17:24 +0000</pubDate>
<dc:creator>quisp</dc:creator>
<guid isPermaLink="false">1252902@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I installed this plug-in because it seemed so much simpler than TwitterTools. The &#34;tweet this&#34; function seems to be working just fine, but the auto-tweet of all new posts to my twitter feed is not working, and that function is more important to me. I think I have all the settings correct, and just this morning I re-named the tt-config-sample.php to tt-config.php (d'oh!), but it is still not working. What else should I be checking?&#60;/p&#62;
&#60;p&#62;Thanks! I really do appreciate all the work that goes into developing and maintaining WP and its plug-ins.
&#60;/p&#62;</description>
</item>
<item>
<title>johnbatdorff on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1247027</link>
<pubDate>Thu, 15 Oct 2009 03:05:57 +0000</pubDate>
<dc:creator>johnbatdorff</dc:creator>
<guid isPermaLink="false">1247027@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Joe,&#60;/p&#62;
&#60;p&#62;I'll add the url code to the custom tweet and see how that works.  I must have missed the change in the newer version.  Thanks for all your help..John
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1244619</link>
<pubDate>Tue, 13 Oct 2009 04:48:35 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1244619@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;code&#62;#url#&#60;/code&#62; is just the shortcode for adding the URL; this is a change in version 1.5. The only way to add the URL to a Tweet is to incorporate the shortcode - either in your custom tweet or in your Tweet default text. &#60;/p&#62;
&#60;p&#62;It used to be that if you had the option 'add URL to Tweet' checked, the URL would automatically be appended to the custom Tweet, but this has been changed in the latest version. &#60;/p&#62;
&#60;p&#62;I'm not sure where you're getting the parenthesis - I followed the link from your Twitter account and I don't see it showing up. ?
&#60;/p&#62;</description>
</item>
<item>
<title>johnbatdorff on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1244554</link>
<pubDate>Tue, 13 Oct 2009 03:13:18 +0000</pubDate>
<dc:creator>johnbatdorff</dc:creator>
<guid isPermaLink="false">1244554@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Another odd thing...and it's probably at my end...I'm not sure.&#60;/p&#62;
&#60;p&#62;I checked the tweet that was sent.  The shortened url and it throws an extra character in there.   This is the link.  The character was a &#34;)&#34; without the quotes.  I double checked my username and API.   Not sure....if it's related or not?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://batdorffphotography.net/wordpress/2009/10/12/chicago-marathon/%29&#34; rel=&#34;nofollow&#34;&#62;http://batdorffphotography.net/wordpress/2009/10/12/chicago-marathon/%29&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>johnbatdorff on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1244550</link>
<pubDate>Tue, 13 Oct 2009 03:01:49 +0000</pubDate>
<dc:creator>johnbatdorff</dc:creator>
<guid isPermaLink="false">1244550@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Not a dumb question at all.  I just type a custom tweet but I don't provide a url.  In the past it seems that I just typed the custom tweet and it sent the URL attached?  Am I suppose to provide the url?&#60;/p&#62;
&#60;p&#62;thanks again for your help...John
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1244376</link>
<pubDate>Mon, 12 Oct 2009 23:24:55 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1244376@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I know this may be a dumb question, but are you actually including &#60;code&#62;#url#&#60;/code&#62; as part of your custom tweet?
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1244359</link>
<pubDate>Mon, 12 Oct 2009 23:17:33 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1244359@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Not offhand - but now I know where to look to help find the problem!
&#60;/p&#62;</description>
</item>
<item>
<title>johnbatdorff on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1244092</link>
<pubDate>Mon, 12 Oct 2009 19:35:44 +0000</pubDate>
<dc:creator>johnbatdorff</dc:creator>
<guid isPermaLink="false">1244092@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Joe,&#60;/p&#62;
&#60;p&#62;It does post the url without the custom text.  Any suggestions on how to get the custom text?
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] bit.ly integration"</title>
<link>http://wordpress.org/support/topic/320153#post-1244006</link>
<pubDate>Mon, 12 Oct 2009 18:15:04 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1244006@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Then go ahead and use it. It does.
&#60;/p&#62;</description>
</item>
<item>
<title>Sadr on "[Plugin: WP to Twitter] bit.ly integration"</title>
<link>http://wordpress.org/support/topic/320153#post-1243485</link>
<pubDate>Mon, 12 Oct 2009 06:33:28 +0000</pubDate>
<dc:creator>Sadr</dc:creator>
<guid isPermaLink="false">1243485@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I would use this plugin if it incorporated an integration with bit.ly. I like having all my links stored there.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-to-twitter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-to-twitter/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>johnbatdorff on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1241939</link>
<pubDate>Sat, 10 Oct 2009 16:18:49 +0000</pubDate>
<dc:creator>johnbatdorff</dc:creator>
<guid isPermaLink="false">1241939@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hmmm.  I'll try it without the custom tweet and see.  I usually always type a custom tweet so I'm not sure.   I'll get back to you.  Thanks for your help...John
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1241849</link>
<pubDate>Sat, 10 Oct 2009 13:55:50 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1241849@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You said that it 'sends the custom text [you] type on the post page' -- have you noticed whether this problem exists only with custom texts, or is it a problem with tweets when you haven't typed a custom tweet, as well?
&#60;/p&#62;</description>
</item>
<item>
<title>johnbatdorff on "[Plugin: WP to Twitter] Tweet includes my custom text but not URL"</title>
<link>http://wordpress.org/support/topic/319590#post-1241586</link>
<pubDate>Sat, 10 Oct 2009 02:16:37 +0000</pubDate>
<dc:creator>johnbatdorff</dc:creator>
<guid isPermaLink="false">1241586@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've installed you plugin and it seemed to work fine then after it an update it stopped.  I've uninstalled and reinstalled several times.  Here's what's taking place.  I update my blog and it send the custom text I type on the post page but it never sends the url to click on?  &#60;/p&#62;
&#60;p&#62;This is the setting I have right now for new post and edited post&#60;br /&#62;
New post: #title# (#url#)&#60;/p&#62;
&#60;p&#62;Post Edited: #title# (#url#)&#60;/p&#62;
&#60;p&#62;I have the correct username in because like I said it sends the custom text but not URl.   Any help or thoughts would be appreciated.&#60;/p&#62;
&#60;p&#62;John&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-to-twitter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-to-twitter/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] #title# and #url# doesnţt work at the same time"</title>
<link>http://wordpress.org/support/topic/316391#post-1230629</link>
<pubDate>Wed, 30 Sep 2009 20:31:26 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1230629@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can you tell me more about what you're doing? That's certainly not something that I've seen happen! Is this in the custom tweet text or the settings?
&#60;/p&#62;</description>
</item>
<item>
<title>andr87 on "[Plugin: WP to Twitter] #title# and #url# doesnţt work at the same time"</title>
<link>http://wordpress.org/support/topic/316391#post-1230206</link>
<pubDate>Wed, 30 Sep 2009 13:41:26 +0000</pubDate>
<dc:creator>andr87</dc:creator>
<guid isPermaLink="false">1230206@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When I put #title# and #url# in the Twitter status only the url appears, shortened. When I put only the #title#, it's fine.
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "WP to Twitter"</title>
<link>http://wordpress.org/support/topic/315237#post-1226389</link>
<pubDate>Sun, 27 Sep 2009 06:25:49 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1226389@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Update now available -
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] Fatal Error"</title>
<link>http://wordpress.org/support/topic/315258#post-1226387</link>
<pubDate>Sun, 27 Sep 2009 06:24:24 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1226387@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Update now available -
&#60;/p&#62;</description>
</item>
<item>
<title>atinder90 on "[Plugin: WP to Twitter] Fatal Error"</title>
<link>http://wordpress.org/support/topic/315258#post-1226324</link>
<pubDate>Sun, 27 Sep 2009 03:30:14 +0000</pubDate>
<dc:creator>atinder90</dc:creator>
<guid isPermaLink="false">1226324@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;strong&#62;me too having same problem after upgrading the plugin&#60;/strong&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>txdomer on "[Plugin: WP to Twitter] Fatal Error"</title>
<link>http://wordpress.org/support/topic/315258#post-1226259</link>
<pubDate>Sun, 27 Sep 2009 01:38:01 +0000</pubDate>
<dc:creator>txdomer</dc:creator>
<guid isPermaLink="false">1226259@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Upon upgrading to 1.50, I get a fatal error - and the plugin won't activate.&#60;/p&#62;
&#60;p&#62;Parse error: syntax error, unexpected $end in [my website path]/wp/wp-content/plugins/wp-to-twitter/functions.php on line 129 &#60;/p&#62;
&#60;p&#62;Deleting completely and re-installing doesn't work - the plugin still won't activate.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-to-twitter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-to-twitter/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Josefus Flavius on "WP to Twitter"</title>
<link>http://wordpress.org/support/topic/315237#post-1226194</link>
<pubDate>Sat, 26 Sep 2009 23:46:18 +0000</pubDate>
<dc:creator>Josefus Flavius</dc:creator>
<guid isPermaLink="false">1226194@http://wordpress.org/support/</guid>
<description>&#60;p&#62;WP to Twitter - updating to ver. 1.5 causes fatal error.  Even when the previous version is deleted and the new version installed, a fatal error prevents the plugin from activating.
&#60;/p&#62;</description>
</item>
<item>
<title>joedolson on "[Plugin: WP to Twitter] Bug &#38; Fix"</title>
<link>http://wordpress.org/support/topic/308407#post-1203395</link>
<pubDate>Mon, 07 Sep 2009 23:07:23 +0000</pubDate>
<dc:creator>joedolson</dc:creator>
<guid isPermaLink="false">1203395@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've instituted that change, among others, in the latest release -- although I did actually switch the function used, as well, for other reasons.
&#60;/p&#62;</description>
</item>
<item>
<title>alanhogan on "[Plugin: WP to Twitter] Bug &#38; Fix"</title>
<link>http://wordpress.org/support/topic/308407#post-1202400</link>
<pubDate>Mon, 07 Sep 2009 03:19:24 +0000</pubDate>
<dc:creator>alanhogan</dc:creator>
<guid isPermaLink="false">1202400@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I was getting the following error *every time I saved a post*, but edited this plugin’s code to fix it.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Warning: str_split() [function.str-split]: The length of each segment must be greater than zero in /homepages/13/d92881413/htdocs/wegoats/wp-content/plugins/wp-to-twitter/wp-to-twitter.php on line 378

Warning: Cannot modify header information - headers already sent by (output started at /homepages/13/d92881413/htdocs/wegoats/wp-content/plugins/wp-to-twitter/wp-to-twitter.php:378) in /homepages/13/d92881413/htdocs/wegoats/wp-includes/pluggable.php on line 865&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Fix: I inserted &#60;code&#62;@&#60;/code&#62; before &#60;code&#62;str_split&#60;/code&#62; on line 378.&#60;/p&#62;
&#60;p&#62;There are more elegant fixes, but this one works.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wp-to-twitter/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-to-twitter/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
