<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>Playing With Sharp Objects - Latest Comments in Feed Expirations in MonkeyChow</title><link>http://shokk.disqus.com/</link><description></description><language>en</language><lastBuildDate>Fri, 02 Jun 2006 08:01:32 -0000</lastBuildDate><item><title>Re: Feed Expirations in MonkeyChow</title><link>http://www.shokk.com/blog/articles/2006/05/27/feed-expirations-in-monkeychow/#comment-1369672</link><description>&lt;p&gt;That&amp;#8217;s exactly what this comments section is for, and your use of a VM for testing is wise.  Thanks for letting me know about FOF-redux&amp;#8230; this is the first I&amp;#8217;ve heard of it.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Let me know if there are any other features you want to see.  And always keep the bug reports coming in so I can make this a decent product.  Feel free to email me directly, too.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Your config.php looks fine.  Please check that your database is set up as follows.  Also, if you can grab the latest from SVN that is actually the most up to date version.  In that version inst.php is gone, replaced by install.php.  If you can&amp;#8217;t deal with SVN, I&amp;#8217;ve placed tarball of the distro &lt;a href="http://www.shokk.com/monkeychow-0.2a.tar.gz" rel="nofollow"&gt;here&lt;/a&gt; for you.&lt;/p&gt;&lt;br&gt;&amp;lt;pre&amp;gt;&lt;br&gt;CREATE TABLE `feeds` (&lt;br&gt;  `id` int(11) NOT NULL auto_increment,&lt;br&gt;  `url` varchar(250) NOT NULL default '',&lt;br&gt;  `title` varchar(250) NOT NULL default '',&lt;br&gt;  `link` varchar(250) default NULL,&lt;br&gt;  `description` varchar(250) default NULL,&lt;br&gt;  `date_added` timestamp NOT NULL default CURRENT_TIMESTAMP,&lt;br&gt;  `tags` varchar(250) default NULL,&lt;br&gt;  `aging` int(11) NOT NULL default '30',&lt;br&gt;  `expir` int(11) NOT NULL default '0',&lt;br&gt;  PRIMARY KEY  (`id`)&lt;br&gt;) TYPE=MyISAM;&lt;br&gt;CREATE TABLE `items` (&lt;br&gt;  `id` int(11) NOT NULL auto_increment,&lt;br&gt;  `feed_id` int(11) NOT NULL default '0',&lt;br&gt;  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,&lt;br&gt;  `link` text,&lt;br&gt;  `title` varchar(250) default NULL,&lt;br&gt;  `content` text,&lt;br&gt;  `dcdate` text,&lt;br&gt;  `dccreator` text,&lt;br&gt;  `dcsubject` text,&lt;br&gt;  `read` tinyint(4) default NULL,&lt;br&gt;  `publish` tinyint(1) default '0',&lt;br&gt;  `star` tinyint(1) default '0',&lt;br&gt;  PRIMARY KEY  (`id`),&lt;br&gt;  KEY `feed_id_idx` (`feed_id`),&lt;br&gt;  KEY `read_idx` (`read`)&lt;br&gt;) TYPE=MyISAM;&lt;br&gt;&amp;lt;/pre&amp;gt;&lt;br&gt;&lt;p&gt;also make sure that your config.php has this at the bottom&amp;#8230;&lt;/p&gt;&lt;br&gt;&amp;lt;pre&amp;gt;&lt;br&gt;define('FOF_HOWMANY', 50)&lt;br&gt;define('FOF_KEEP_DAYS', 30)&lt;br&gt;define('MAGPIE_USE_GZIP', true);&lt;br&gt;define('MAGPIE_OUTPUT_ENCODING', 'UTF-8');&lt;br&gt;// Don't log queries.  If turned on, they'll be appended to $fof_query_log&lt;br&gt;define('FOF_QUERY_LOG', false);&lt;br&gt;// Find ourselves and the cache dir&lt;br&gt;if (!defined('DIR_SEP')) {&lt;br&gt;        define('DIR_SEP', DIRECTORY_SEPARATOR);&lt;br&gt;}&lt;br&gt;if (!defined('FOF_DIR')) {&lt;br&gt;    define('FOF_DIR', dirname(__FILE__) . DIR_SEP);&lt;br&gt;}&lt;br&gt;if (!defined('FOF_CACHE_DIR'))&lt;br&gt;{&lt;br&gt;    define('FOF_CACHE_DIR', FOF_DIR . DIR_SEP . "cache");&lt;br&gt;}&lt;br&gt;&amp;lt;/pre&amp;gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ernie Oporto</dc:creator><pubDate>Fri, 02 Jun 2006 08:01:32 -0000</pubDate></item><item><title>Re: Feed Expirations in MonkeyChow</title><link>http://www.shokk.com/blog/articles/2006/05/27/feed-expirations-in-monkeychow/#comment-1369671</link><description>&lt;p&gt;I hate to post this here, but the but on the sourceforge page, you said we could: but I have had problems geting MonkeyChow to install on my test machine:&lt;/p&gt;&lt;br&gt;&lt;p&gt;I got the latest version, Im using localhost, i have config.php setup properly and renamed it to config.php, I created a database, and when i goto inst.php I just get a blank page with no errors or messages. I tried to goto install.php and index.php just incase it might have worked. I&amp;#8217;m not sure what is wrong:&lt;/p&gt;&lt;br&gt;&lt;p&gt;here is EXACTLY what i have:&lt;/p&gt;&lt;br&gt;&lt;p&gt;define(&amp;#8216;FOF_DB_HOST&amp;#8217;, &amp;#8220;localhost&amp;#8221;);&lt;br&gt;define(&amp;#8216;FOF_DB_USER&amp;#8217;, &amp;#8220;root&amp;#8221;);&lt;br&gt;define(&amp;#8216;FOF_DB_PASS&amp;#8217;, &amp;#8220;&amp;#8221;);&lt;br&gt;define(&amp;#8216;FOF_DB_DBNAME&amp;#8217;, &amp;#8220;monkeychowdb&amp;#8221;);&lt;br&gt;define(&amp;#8216;RE&lt;em&gt;CHANNEL&lt;/em&gt;URL&amp;#8217;, &amp;#8220;&lt;a href="http://www.example.com/news/rss.php" rel="nofollow"&gt;http://www.example.com/news/rss.php&lt;/a&gt;&amp;#8221;);&lt;br&gt;define(&amp;#8216;RE&lt;em&gt;CHANNEL&lt;/em&gt;TITLE&amp;#8217;, &amp;#8220;Recycled RSS items&amp;#8221;);&lt;br&gt;define(&amp;#8216;RE&lt;em&gt;CHANNEL&lt;/em&gt;DESC&amp;#8217;, &amp;#8220;Blah&amp;#8221;);&lt;br&gt;define(&amp;#8216;REPUBLISH&lt;em&gt;CHANNEL&lt;/em&gt;URL&amp;#8217;, &amp;#8220;&lt;a href="http://www.example.com/news/rss.php" rel="nofollow"&gt;http://www.example.com/news/rss.php&lt;/a&gt;&amp;#8221;);&lt;br&gt;define(&amp;#8216;REPUBLISH&lt;em&gt;CHANNEL&lt;/em&gt;TITLE&amp;#8217;, &amp;#8220;Blogroll&amp;#8221;);&lt;br&gt;define(&amp;#8216;REPUBLISH&lt;em&gt;CHANNEL&lt;/em&gt;DESC&amp;#8217;, &amp;#8220;Something for people to read.&amp;#8221;);&lt;br&gt;define(&amp;#8216;DELICIOUS&lt;em&gt;USERNAME&amp;#8217;,&amp;#8221;delicious&lt;/em&gt;username&amp;#8221;);&lt;br&gt;define(&amp;#8216;FULLNAME&amp;#8217;,&amp;#8221;FullName&amp;#8221;);&lt;br&gt;define(&amp;#8216;EMAIL&amp;#8217;,&amp;#8221;&lt;a href="mailto:email@example.com" rel="nofollow"&gt;email@example.com&lt;/a&gt;&amp;#8221;);&lt;/p&gt;&lt;br&gt;&lt;p&gt;Again this is just a test setup on vmware machine I have, because I test webapps on it before I decide to use them online.&lt;/p&gt;&lt;br&gt;&lt;p&gt;Glad to know someone revived FeedonFeeds, I found out about F0F-redux but they dont have 1/10th the features you have put into it. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">none@example.com</dc:creator><pubDate>Fri, 02 Jun 2006 07:28:12 -0000</pubDate></item></channel></rss>