<?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: twitter</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: twitter</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 07:54:20 +0000</pubDate>

<item>
<title>JacoGriesel on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1293812</link>
<pubDate>Wed, 25 Nov 2009 20:42:13 +0000</pubDate>
<dc:creator>JacoGriesel</dc:creator>
<guid isPermaLink="false">1293812@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I created a &#38;lt;div id=&#34;twitterstatus&#34;&#38;gt; in the sidebar.php and pasted it there.  I don't like widgets!&#60;/p&#62;
&#60;p&#62;This means that you'll have to edit your theme's sidebar.php (or whichever page you want to display it on - I've included a special &#34;Tweets&#34; page on my site, and inserted the code inside the loop).&#60;/p&#62;
&#60;p&#62;I believe there is a way to get this into your widgets, but I haven't tried that.&#60;/p&#62;
&#60;p&#62;Best of luck!
&#60;/p&#62;</description>
</item>
<item>
<title>ancawonka on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1293761</link>
<pubDate>Wed, 25 Nov 2009 20:10:18 +0000</pubDate>
<dc:creator>ancawonka</dc:creator>
<guid isPermaLink="false">1293761@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Good grief!  I just came here to ask about this.&#60;/p&#62;
&#60;p&#62;Are you pasting this code into your site, or into a Text widget in your sidebar?  I got the code from Twitter, but when I paste it into a text widget, the &#34;script&#34; tag gets stripped off and the JS displays as just text.  Is this normal behavior?
&#60;/p&#62;</description>
</item>
<item>
<title>JacoGriesel on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1293754</link>
<pubDate>Wed, 25 Nov 2009 20:07:14 +0000</pubDate>
<dc:creator>JacoGriesel</dc:creator>
<guid isPermaLink="false">1293754@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Ignore EVERYTHING I wrote above!  Here's a VERY nice script, and it's straight from Twitter.  Just paste the code wherever you want to display your tweets, and make the styling changes you want.  Alternatively, you can go to &#60;a href=&#34;http://twitter.com/goodies/widgets&#34; rel=&#34;nofollow&#34;&#62;http://twitter.com/goodies/widgets&#60;/a&#62; to set up your own widget.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script src=&#38;quot;http://widgets.twimg.com/j/2/widget.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;
&#38;lt;script&#38;gt;
new TWTR.Widget({
version: 2,
type: &#38;#39;profile&#38;#39;,
rpp: 4,
interval: 6000,
width: 240,
height: 70,
theme: {
shell: {
background: &#38;#39;#f59f0a&#38;#39;,
color: &#38;#39;#000000&#38;#39;
},
tweets: {
background: &#38;#39;#214a68&#38;#39;,
color: &#38;#39;#ffffff&#38;#39;,
links: &#38;#39;#ecfa25&#38;#39;
}
},
features: {
scrollbar: true,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
behavior: &#38;#39;all&#38;#39;
}
}).render().setUser(&#38;#39;YOUTTWITTERUSERNAME&#38;#39;).start();
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It works perfect on my site!
&#60;/p&#62;</description>
</item>
<item>
<title>JacoGriesel on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1291022</link>
<pubDate>Mon, 23 Nov 2009 14:52:49 +0000</pubDate>
<dc:creator>JacoGriesel</dc:creator>
<guid isPermaLink="false">1291022@http://wordpress.org/support/</guid>
<description>&#60;p&#62;OK, here's a home-made hack I've devised.  Copy the following into your functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function LastTwitter() {

$options = get_option(&#38;#39;widget_Twidget&#38;#39;);
$account = $options[&#38;#39;account&#38;#39;];  // Your Twitter account name
$title = $options[&#38;#39;title&#38;#39;];  // Title in sidebar for widget
$show = $options[&#38;#39;show&#38;#39;];  // # of Updates to show

echo &#38;#39;&#38;lt;div id=&#38;quot;twitter_div&#38;quot;&#38;gt;&#38;#39;
.$before_title.$title.$after_title;
echo &#38;#39;&#38;lt;ul id=&#38;quot;twitter_update_list&#38;quot;&#38;gt;&#38;lt;/ul&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://twitter.com/javascripts/blogger.js&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#38;#39;;
echo &#38;#39;&#38;lt;script type=&#38;quot;text/javascript&#38;quot; src=&#38;quot;http://twitter.com/statuses/user_timeline/&#38;#39;.$account.&#38;#39;.json?callback=twitterCallback2&#38;amp;count=&#38;#39;.$show.&#38;#39;&#38;quot;&#38;gt;&#38;lt;/script&#38;gt;&#38;#39;;
}

function Twidget_control() {
$options = array(&#38;#39;account&#38;#39;=&#38;gt;&#38;#39;YourTwitterAccountName&#38;#39;, &#38;#39;title&#38;#39;=&#38;gt;&#38;#39;&#38;#39;, &#38;#39;show&#38;#39;=&#38;gt;&#38;#39;1&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In the second last line, enter your Twitter account name, as well as the number of tweets to display.&#60;/p&#62;
&#60;p&#62;In my sidebar, I did the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;twitterstatus&#38;quot;&#38;gt;
&#38;lt;div id=&#38;quot;twitterlogo&#38;quot;&#38;gt;
&#38;lt;a href=&#38;quot;YourTwitterRSSFeedURI&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;template_url&#38;#39;); ?&#38;gt;/images/social/twitterbanner.png&#38;quot; alt=&#38;quot;Get our Twitter feed&#38;quot; border=&#38;quot;0&#38;quot; title=&#38;quot;Get our Twitter feed&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;h2&#38;gt;Latest Tweets&#38;lt;/h2&#38;gt;
&#38;lt;?php LastTwitter(); ?&#38;gt;
&#38;lt;/div&#38;gt;&#38;lt;!--END: twitterstatus--&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For some reason, the title in the function doesn't show up in the sidebar, by I side-stepped that by adding my own title in the sidebar (the &#38;lt;h2&#38;gt;...&#38;lt;/h2&#38;gt; part)&#60;/p&#62;
&#60;p&#62;I used/hacked Sean Spalding's Twitter Widget ( &#60;a href=&#34;http://seanys.com/2007/10/12/twitter-wordpress-widget/&#34; rel=&#34;nofollow&#34;&#62;http://seanys.com/2007/10/12/twitter-wordpress-widget/&#60;/a&#62; ) - hope nobody minds!&#60;/p&#62;
&#60;p&#62;Let me know if it's working for you!
&#60;/p&#62;</description>
</item>
<item>
<title>jvinch on "Single-Post Twitter integration"</title>
<link>http://wordpress.org/support/topic/333958#post-1289750</link>
<pubDate>Sun, 22 Nov 2009 03:58:19 +0000</pubDate>
<dc:creator>jvinch</dc:creator>
<guid isPermaLink="false">1289750@http://wordpress.org/support/</guid>
<description>&#60;p&#62;The common approach for tools is to create individual posts of Tweets. I have never seen anything you're trying to accomplish.
&#60;/p&#62;</description>
</item>
<item>
<title>thephilwells on "Single-Post Twitter integration"</title>
<link>http://wordpress.org/support/topic/333958#post-1289571</link>
<pubDate>Sat, 21 Nov 2009 22:39:24 +0000</pubDate>
<dc:creator>thephilwells</dc:creator>
<guid isPermaLink="false">1289571@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'll try to clarify:&#60;/p&#62;
&#60;p&#62;Say I have a big block of text that I want to twittertweet one sentence at a time.  Is there a way to get each sentence I tweet to append itself to the end of a single wordpress post so by the time I'm done tweeting it all, the post looks like the original block of text?
&#60;/p&#62;</description>
</item>
<item>
<title>Dave333 on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1289470</link>
<pubDate>Sat, 21 Nov 2009 21:12:33 +0000</pubDate>
<dc:creator>Dave333</dc:creator>
<guid isPermaLink="false">1289470@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks for chiming in anyway Gary.&#60;/p&#62;
&#60;p&#62;I've given up on the weekly post.  It's probably a bit of overkill to have both anyway.
&#60;/p&#62;</description>
</item>
<item>
<title>JacoGriesel on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1289049</link>
<pubDate>Sat, 21 Nov 2009 10:05:25 +0000</pubDate>
<dc:creator>JacoGriesel</dc:creator>
<guid isPermaLink="false">1289049@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Aaaahhh...  Figured out why the link to WP Recipes doesn't work.  It's that damn . after com - try this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.wprecipes.com&#34; rel=&#34;nofollow&#34;&#62;http://www.wprecipes.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Better yet, try this link:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.wprecipes.com/how-to-display-your-latest-twitter-entry-on-your-wp-blog&#34; rel=&#34;nofollow&#34;&#62;http://www.wprecipes.com/how-to-display-your-latest-twitter-entry-on-your-wp-blog&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Best of luck!
&#60;/p&#62;</description>
</item>
<item>
<title>JacoGriesel on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1289043</link>
<pubDate>Sat, 21 Nov 2009 09:56:00 +0000</pubDate>
<dc:creator>JacoGriesel</dc:creator>
<guid isPermaLink="false">1289043@http://wordpress.org/support/</guid>
<description>&#60;p&#62;That's strange - just went there and everything's working...&#60;/p&#62;
&#60;p&#62;Try this link...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.smashingmagazine.com/2009/03/04/15-useful-twitter-plugins-and-hacks-for-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://www.smashingmagazine.com/2009/03/04/15-useful-twitter-plugins-and-hacks-for-wordpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;May I ask why you don't want to use a plugin?  I've just tried to insert a Twitter hack in my sidebar, and the latest tweet showed up, but it refused to update.  Instead I used the Twitter for WordPress plugin, and that worked like a charm.&#60;/p&#62;
&#60;p&#62;Do let me know if you find a good working hack, as I also try to use as little as possible plugins.&#60;/p&#62;
&#60;p&#62;Best of luck!
&#60;/p&#62;</description>
</item>
<item>
<title>blondishnet on "Single-Post Twitter integration"</title>
<link>http://wordpress.org/support/topic/333958#post-1288978</link>
<pubDate>Sat, 21 Nov 2009 06:34:47 +0000</pubDate>
<dc:creator>blondishnet</dc:creator>
<guid isPermaLink="false">1288978@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Are you using Twitter tools?&#60;/p&#62;
&#60;p&#62;You can select in Twitter Tools plugin (By Alex King) to publish a daily digest to your blog. Of course, you can use the individual tweet publishing, but the daily is also offered on the plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>jvinch on "Single-Post Twitter integration"</title>
<link>http://wordpress.org/support/topic/333958#post-1288972</link>
<pubDate>Sat, 21 Nov 2009 06:21:30 +0000</pubDate>
<dc:creator>jvinch</dc:creator>
<guid isPermaLink="false">1288972@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I seriously read this post 5 times and I am really not sure what you mean. Try again?
&#60;/p&#62;</description>
</item>
<item>
<title>studioworkplace on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1288845</link>
<pubDate>Sat, 21 Nov 2009 00:55:18 +0000</pubDate>
<dc:creator>studioworkplace</dc:creator>
<guid isPermaLink="false">1288845@http://wordpress.org/support/</guid>
<description>&#60;p&#62;That site is down or spelled wrong cause all I got was french :)
&#60;/p&#62;</description>
</item>
<item>
<title>JacoGriesel on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1288844</link>
<pubDate>Sat, 21 Nov 2009 00:54:15 +0000</pubDate>
<dc:creator>JacoGriesel</dc:creator>
<guid isPermaLink="false">1288844@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I recall seeing a couple of hacks similar to what you're looking for at &#60;a href=&#34;http://www.wprecipes.com&#34; rel=&#34;nofollow&#34;&#62;http://www.wprecipes.com&#60;/a&#62;. Maybe you should check them out.
&#60;/p&#62;</description>
</item>
<item>
<title>studioworkplace on "Twitter integration without widgets?"</title>
<link>http://wordpress.org/support/topic/334006#post-1288835</link>
<pubDate>Sat, 21 Nov 2009 00:44:54 +0000</pubDate>
<dc:creator>studioworkplace</dc:creator>
<guid isPermaLink="false">1288835@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey People,&#60;/p&#62;
&#60;p&#62;I'm using WPRemix style on one of my sites (a sandbox right now) and am looking to integrate twitter into the site &#34;Most Recent Tweets&#34; without having to use a sidebar widget.&#60;/p&#62;
&#60;p&#62;Does anyone know of a good Twitter plugin that will allow me to just paste some php code into my PAGE and have it display the most recent tweets?&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
M
&#60;/p&#62;</description>
</item>
<item>
<title>thephilwells on "Single-Post Twitter integration"</title>
<link>http://wordpress.org/support/topic/333958#post-1288588</link>
<pubDate>Fri, 20 Nov 2009 21:28:14 +0000</pubDate>
<dc:creator>thephilwells</dc:creator>
<guid isPermaLink="false">1288588@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is there a way to update a single WordPress post by automatically appending a twittertweet to a new line at the end of it?  Basically I want one long wordpress post of tweets from a single account instead of a new wp post every time that account sends a tweet.
&#60;/p&#62;</description>
</item>
<item>
<title>garyploski on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1287938</link>
<pubDate>Fri, 20 Nov 2009 12:00:59 +0000</pubDate>
<dc:creator>garyploski</dc:creator>
<guid isPermaLink="false">1287938@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@zerofee.org &#38;amp; @Dave333  Sorry, I don't have a step by step guide, the version changed so I wouldn't know what to change, if anything, now. =\&#60;/p&#62;
&#60;p&#62;I have had the weekly updates working for, well, about 6 months now. I wish I had something more to add that could help you both. I am using 2.8.5 MU now and the plugin is working.&#60;/p&#62;
&#60;p&#62;If is was acting up I'd troubleshoot with you but I don't want to break what is working.
&#60;/p&#62;</description>
</item>
<item>
<title>Dave333 on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1286181</link>
<pubDate>Wed, 18 Nov 2009 23:10:06 +0000</pubDate>
<dc:creator>Dave333</dc:creator>
<guid isPermaLink="false">1286181@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks Alex,&#60;/p&#62;
&#60;p&#62;I'd read that page already. I was one of the first places I checked.  Now I have read it again. There is no mention of this problem on that page. Was there something in particular that is relevant to this dicussion there?&#60;/p&#62;
&#60;p&#62;I thought I'd solved it with this these changes to the database but now it's come to that time of the week I reliased it has only fixed the daily digests and NOT the weekly digests.  &#60;/p&#62;
&#60;p&#62;If you can add something to this discussion that will help us get the plugin to work properly please do.
&#60;/p&#62;</description>
</item>
<item>
<title>alexkingorg on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1285753</link>
<pubDate>Wed, 18 Nov 2009 16:35:07 +0000</pubDate>
<dc:creator>alexkingorg</dc:creator>
<guid isPermaLink="false">1285753@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You may want to reference the FAQs here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wphelpcenter.com/plugins/twitter-tools/&#34; rel=&#34;nofollow&#34;&#62;http://wphelpcenter.com/plugins/twitter-tools/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>ZEROmedia on "tweet this"</title>
<link>http://wordpress.org/support/topic/262531#post-1284262</link>
<pubDate>Tue, 17 Nov 2009 11:03:56 +0000</pubDate>
<dc:creator>ZEROmedia</dc:creator>
<guid isPermaLink="false">1284262@http://wordpress.org/support/</guid>
<description>&#60;p&#62;has anyone had any luck with this??&#60;/p&#62;
&#60;p&#62;I would like to move the buttons from under the post, to the side of the post - and also like to align the buttons vertically, rather the horizontally (as they currently do).&#60;/p&#62;
&#60;p&#62;Any help would be much appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>Dave333 on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1284242</link>
<pubDate>Tue, 17 Nov 2009 10:26:39 +0000</pubDate>
<dc:creator>Dave333</dc:creator>
<guid isPermaLink="false">1284242@http://wordpress.org/support/</guid>
<description>&#60;p&#62;OK I have sovled it.&#60;/p&#62;
&#60;p&#62;It is supposed to be 0 not 1.
&#60;/p&#62;</description>
</item>
<item>
<title>Dave333 on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1284027</link>
<pubDate>Tue, 17 Nov 2009 04:07:14 +0000</pubDate>
<dc:creator>Dave333</dc:creator>
<guid isPermaLink="false">1284027@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Gary, &#60;/p&#62;
&#60;p&#62;you wrote:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;wfzimmerman, I think you nailed the problem. Here are two examples from my db backups.&#60;/p&#62;
&#60;p&#62;March 13th...&#60;br /&#62;
INSERT INTO wp_options VALUES (2442, 0, 'aktt_doing_digest_post', '0', 'yes');&#60;/p&#62;
&#60;p&#62;February 27th...&#60;br /&#62;
INSERT INTO wp_options VALUES (1597, 0, 'aktt_doing_digest_post', '1', 'yes');&#60;/p&#62;
&#60;p&#62;I had left the weekly digest enabled hoping that one day it would fix itself. I do see a 0 vs a 1. Would that have solved the problem?&#60;/p&#62;
&#60;p&#62;For those out there experiencing troubles with the weekly digest, check this setting and please let us know if this solution fixed the problem.&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;I have gone into my DB with PHPMyAdmin and located the wp_options table.  I checked the setting, and found the entry akkt_doing_digest_post with an option value of '1' and autoload set to 'yes'.&#60;/p&#62;
&#60;p&#62;Is that how it should be?  You suggested we check this setting and get back to you but you didn't mention which it should be, 1, or 0.&#60;/p&#62;
&#60;p&#62;I've run out of ideas.  If you have any more ideas please post them.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>preisjaeger on "[Plugin: Twitter Tools] Exclude category when posting in my blog"</title>
<link>http://wordpress.org/support/topic/323097#post-1283500</link>
<pubDate>Mon, 16 Nov 2009 19:42:06 +0000</pubDate>
<dc:creator>preisjaeger</dc:creator>
<guid isPermaLink="false">1283500@http://wordpress.org/support/</guid>
<description>&#60;p&#62;me2!
&#60;/p&#62;</description>
</item>
<item>
<title>dartiss on "twitter in sidebar without widgets"</title>
<link>http://wordpress.org/support/topic/325745#post-1283044</link>
<pubDate>Mon, 16 Nov 2009 14:40:44 +0000</pubDate>
<dc:creator>dartiss</dc:creator>
<guid isPermaLink="false">1283044@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When using this, instead of the sidebar widget, it doesn't seem to suppress replies, even when the option for this is selected.&#60;/p&#62;
&#60;p&#62;Is this a known issue, or is it how it's meant to work? In which case, is there a way around it?&#60;/p&#62;
&#60;p&#62;David.
&#60;/p&#62;</description>
</item>
<item>
<title>Dave333 on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1282795</link>
<pubDate>Mon, 16 Nov 2009 08:33:17 +0000</pubDate>
<dc:creator>Dave333</dc:creator>
<guid isPermaLink="false">1282795@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@garyploski&#60;/p&#62;
&#60;p&#62;Following your footsteps I tried the following:&#60;/p&#62;
&#60;p&#62;deleted Twitter Tools plugin within wp&#60;br /&#62;
deleted wp_ak_twitter from the db via phpmyadmin&#60;/p&#62;
&#60;p&#62;installed and activated TwitterTools 1.6 from within wp&#60;br /&#62;
verified wp_ak_twitter was re-inserted into db via phpmyadmin&#60;br /&#62;
saw 0 records in wp_ak_twitter via phpmyadmin&#60;br /&#62;
configured TwitterTools within wp&#60;br /&#62;
set weekly to a few minutes from present time&#60;br /&#62;
clicked update tweets and reset tweet checking within wp&#60;br /&#62;
verified 20 records were imported into the db via phpmyadmin&#60;br /&#62;
neither daily or weekly digest posted&#60;br /&#62;
Now, only 20 tweets are in the db. I've sat longer than 10 minutes and have not seen any additional tweets added to the db.&#60;/p&#62;
&#60;p&#62;Nothing changed, still no posts to blog from Twitter Tools.&#60;/p&#62;
&#60;p&#62;The one thing in your list I couldn't do was:&#60;/p&#62;
&#60;p&#62;deleted aktt_ setting references from the db via phpmyadmin&#60;/p&#62;
&#60;p&#62;I was unable to find this &#34;aktt_&#34; setting.  And it seems that this is the missing link as this is the only difference between what I have done and what you did.&#60;/p&#62;
&#60;p&#62;I have wasted so many hours on this trying to get it to work.&#60;/p&#62;
&#60;p&#62;Does anyone know of another plugin that posts daily and weekly updates to a blog?
&#60;/p&#62;</description>
</item>
<item>
<title>Dave333 on "Twitter Tools 1.6 - Digest (weekly/daily)"</title>
<link>http://wordpress.org/support/topic/245382/page/2#post-1282684</link>
<pubDate>Mon, 16 Nov 2009 04:52:05 +0000</pubDate>
<dc:creator>Dave333</dc:creator>
<guid isPermaLink="false">1282684@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@ garyploski so how did you solve it?&#60;/p&#62;
&#60;p&#62;I read through this post twice and you refer to a solution but I can't see what it is.  You mentioned a 1 and a 0 but it's not clear from what you wrote what needs to be done or where.  You referred to wfzimmerman's solution.  Here is was he wrote:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;I am pretty sure I just solved my problem. &#34;akk_doing_digest&#34; is set to &#34;1&#34;, where i suspect the program left it after my %^@# provider killed the process.
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;So is the solution to set this to 0?&#60;/p&#62;
&#60;p&#62;Where is &#34;akk_doing_digest&#34; located? &#60;/p&#62;
&#60;p&#62;I have looked in the tables in PhpMyAdmin but can't see any such table.
&#60;/p&#62;</description>
</item>
<item>
<title>whooami on "Is it possible?"</title>
<link>http://wordpress.org/support/topic/331894#post-1281852</link>
<pubDate>Sun, 15 Nov 2009 04:39:41 +0000</pubDate>
<dc:creator>whooami</dc:creator>
<guid isPermaLink="false">1281852@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;I would do a plugin search, but I'm honestly not sure what to search for&#60;/p&#62;&#60;/blockquote&#62;
&#60;blockquote&#62;&#60;p&#62;
&#60;strong&#62;Twitter&#60;/strong&#62; or &#60;strong&#62;Facebook&#60;/strong&#62;&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/search.php?q=twitter&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/search.php?q=twitter&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/search.php?q=facebook&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/search.php?q=facebook&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>ClaytonJames on "Is it possible?"</title>
<link>http://wordpress.org/support/topic/331894#post-1281808</link>
<pubDate>Sun, 15 Nov 2009 02:19:31 +0000</pubDate>
<dc:creator>ClaytonJames</dc:creator>
<guid isPermaLink="false">1281808@http://wordpress.org/support/</guid>
<description>&#60;p&#62;See if anything here offers inspiration. Looks like there might be a lot of them.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/search.php?q=social&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/search.php?q=social&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>jenjenzorz on "Is it possible?"</title>
<link>http://wordpress.org/support/topic/331894#post-1281790</link>
<pubDate>Sun, 15 Nov 2009 01:42:47 +0000</pubDate>
<dc:creator>jenjenzorz</dc:creator>
<guid isPermaLink="false">1281790@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Okay, here's the thing, you know how on some websites at the bottom of blog posts people have a linked logo to stuff like Twitter or Facebook or stuff like that...is it physically possible to something like that on a wordpress blog site?   If so, how can I achieve this?  I would do a plugin search, but I'm honestly not sure what to search &#60;strong&#62;&#60;em&#62;for&#60;/em&#62;&#60;/strong&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>fireworkszone on "Share with Facebook and Twitter"</title>
<link>http://wordpress.org/support/topic/331410#post-1280066</link>
<pubDate>Fri, 13 Nov 2009 14:54:54 +0000</pubDate>
<dc:creator>fireworkszone</dc:creator>
<guid isPermaLink="false">1280066@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Or a plugin to integrate my RSS feed with Facebook and Twitter?
&#60;/p&#62;</description>
</item>
<item>
<title>fireworkszone on "Share with Facebook and Twitter"</title>
<link>http://wordpress.org/support/topic/331410#post-1280047</link>
<pubDate>Fri, 13 Nov 2009 14:36:29 +0000</pubDate>
<dc:creator>fireworkszone</dc:creator>
<guid isPermaLink="false">1280047@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I am looking for a plugin to share automatically my post with Facebook and Twitter. &#60;/p&#62;
&#60;p&#62;In YouTube, when you upload a new video a message and a picture are automatically sent to my Facebook and Twitter accounts. &#60;/p&#62;
&#60;p&#62;I would like the equivalent with Wordpress&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>

</channel>
</rss>
