<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ryan McCue's Blog &#187; PHP</title>
	<atom:link href="http://cubegames.net/blog/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://cubegames.net/blog</link>
	<description>Containing absolutely nothing about cubes or games</description>
	<lastBuildDate>Tue, 10 Mar 2009 07:24:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing Get Satisfaction&#8217;s Help Center</title>
		<link>http://cubegames.net/blog/2008/05/30/installing-get-satisfactions-help-center/</link>
		<comments>http://cubegames.net/blog/2008/05/30/installing-get-satisfactions-help-center/#comments</comments>
		<pubDate>Fri, 30 May 2008 08:14:03 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Code Monkey]]></category>
		<category><![CDATA[get satisfaction]]></category>
		<category><![CDATA[help center]]></category>
		<category><![CDATA[help centre]]></category>
		<category><![CDATA[http_request]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[smarty]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/?p=92</guid>
		<description><![CDATA[Just found out about Get Satisfaction&#8217;s brand new Help Center and tried to install it? No doubt you&#8217;ll run into a few bugs along the way. However, follow this guide and you should be fine.

Install Smarty into an include directory


This is most easily done by extracting the lib/ directory from the Smarty package into a [...]]]></description>
			<content:encoded><![CDATA[<p>Just found out about Get Satisfaction&#8217;s brand new Help Center and tried to install it? No doubt you&#8217;ll run into a few bugs along the way. However, follow this guide and you should be fine.</p>
<dl>
<dt>Install Smarty into an include directory</dt>
<dd>
<ol>
<li>This is most easily done by extracting the <code>lib/</code> directory from the <a href="http://www.smarty.net/download.php">Smarty package</a> into a new directory called <code>includes/</code></li>
<li>Rename the <code>lib/</code> directory to <code>smarty/</code></li>
<li>Add the following line to your Help Center&#8217;s config file:<br />
<code>set_include_path(get_include_path() . PATH_SEPARATOR . '/path/to/includes/');</code></li>
</ol>
</dd>
<dt>Install the HTTP_Request PEAR library</dt>
<dd>Install this like any other PEAR library. If you don&#8217;t have PEAR, <a href="http://pear.php.net/package/HTTP_Request/download">download the archive</a> and extract the <code>HTTP_Request-*</code> into the previously created includes directory. Then rename the <code>HTTP_Request-*</code> to <code>HTTP</code></dd>
<dt>Setup the database</dt>
<dd>
<ol>
<li>Create a database called &#8220;sprinkles&#8221;</li>
<li>Import the schema from the included SQL file, sprinkles-schema.sql</li>
</ol>
</dd>
<dt>Create a folder for compiled templates</dt>
<dd>Create the <code>templates_c/</code> directory in the Help Center directory to hold the compiled templates for Smarty and make sure it is writable.</dd>
<dt>Edit your config</dt>
<dd>Edit config.php in your Help Center installation and add the following, replacing &#8220;root&#8221; and &#8220;password&#8221; with your respective database username and password:<br />
<code>$mysql_username = 'root';<br />
$mysql_password = 'password';</code></dd>
<dt>Run the web installer</dt>
<dd>Head to your installation of Help Center in your browser and the web installer will kick in.</dd>
</dl>
<p>Hopefully this process becomes easier in the future. I would recommend to the Get Satisfaction developers to include HTTP_Request and Smarty with the Help Center package.</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2008/05/30/installing-get-satisfactions-help-center/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Automatic Upgrade Tip</title>
		<link>http://cubegames.net/blog/2008/04/07/wordpress-automatic-upgrade-tip/</link>
		<comments>http://cubegames.net/blog/2008/04/07/wordpress-automatic-upgrade-tip/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 04:26:05 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-config]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/?p=76</guid>
		<description><![CDATA[As a tip to everyone who uses WordPress 2.5 and needs to input their FTP details every time, you can force WordPress to remember them by adding this to your wp-config.php:
define('FTP_HOST', 'ftp://example.com/');
define('FTP_USER', 'example_user');
define('FTP_PASS', 'example_pass');
//Set to true if your host uses SSL connections
define('FTP_SSL', false);
This can be reduced to just your password, if your database already remembers [...]]]></description>
			<content:encoded><![CDATA[<p>As a tip to everyone who uses WordPress 2.5 and needs to input their FTP details every time, you can force WordPress to remember them by adding this to your wp-config.php:</p>
<pre class="brush: php;">define('FTP_HOST', 'ftp://example.com/');
define('FTP_USER', 'example_user');
define('FTP_PASS', 'example_pass');
//Set to true if your host uses SSL connections
define('FTP_SSL', false);</pre>
<p>This can be reduced to just your password, if your database already remembers the other details.</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2008/04/07/wordpress-automatic-upgrade-tip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>37signals on PHP</title>
		<link>http://cubegames.net/blog/2008/01/20/37signals-on-php/</link>
		<comments>http://cubegames.net/blog/2008/01/20/37signals-on-php/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 10:39:33 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[37signals]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/2008/01/20/37signals-on-php/</guid>
		<description><![CDATA[I just love how 37signals&#8217; Getting Real book appears to be run by PHP. Straight from the headers: X-Powered-By: PHP/5.2.4 &#8211; Still, good that they&#8217;re fairly up to date  
]]></description>
			<content:encoded><![CDATA[<p>I just love how <a href="http://gettingreal.37signals.com/">37signals&#8217; Getting Real book</a> appears to be run by PHP. Straight from the headers: X-Powered-By: PHP/5.2.4 &#8211; Still, good that they&#8217;re fairly up to date <img src='http://cubegames.net/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2008/01/20/37signals-on-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress patching</title>
		<link>http://cubegames.net/blog/2008/01/04/wordpress-patching/</link>
		<comments>http://cubegames.net/blog/2008/01/04/wordpress-patching/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 09:06:52 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[patching]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/2008/01/04/wordpress-patching/</guid>
		<description><![CDATA[My code is now in WordPress trunk and bbPress trunk. Sweet.
]]></description>
			<content:encoded><![CDATA[<p>My code is now in <a href="http://trac.wordpress.org/changeset/6546">WordPress trunk</a> and <a href="http://trac.bbpress.org/changeset/1000">bbPress trunk</a>. Sweet.</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2008/01/04/wordpress-patching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>create_function()</title>
		<link>http://cubegames.net/blog/2007/12/31/create_function/</link>
		<comments>http://cubegames.net/blog/2007/12/31/create_function/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 02:05:44 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[anonymous functions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php manual]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/2007/12/31/create_function/</guid>
		<description><![CDATA[create_function() — How to create anonymous/one-use functions. I didn&#8217;t think PHP had such a way until I looked up preg_replace_callback(). Thanks WordPress!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://php.net/manual/en/function.create-function.php">create_function()</a> — How to create anonymous/one-use functions. I didn&#8217;t think PHP had such a way until I looked up <a href="http://php.net/manual/en/function.preg-replace-callback.php">preg_replace_callback()</a>. Thanks WordPress!</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2007/12/31/create_function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FeedParser Test Suite &#8211; Now with OPML!</title>
		<link>http://cubegames.net/blog/2007/12/30/feedparser-test-suite-now-with-opml/</link>
		<comments>http://cubegames.net/blog/2007/12/30/feedparser-test-suite-now-with-opml/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 04:18:42 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Code Monkey]]></category>
		<category><![CDATA[aggregator]]></category>
		<category><![CDATA[feedparser]]></category>
		<category><![CDATA[Lilina]]></category>
		<category><![CDATA[opml]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/2007/12/30/feedparser-test-suite-now-with-opml/</guid>
		<description><![CDATA[As a developer of an aggregator, I test against different types of exploits that users may experience. Up until now, I&#8217;ve been adding singular feeds by themselves. However, it&#8217;s always irritated me that there was never an OPML file to import them all at once.
Et viola. I wrote myself a simple PHP program to convert [...]]]></description>
			<content:encoded><![CDATA[<p>As a developer of <a href="http://getlilina.org/" title="Lilina News Aggregator, written in PHP">an aggregator</a>, I test against different types of exploits that users may experience. Up until now, I&#8217;ve been adding singular feeds by themselves. However, it&#8217;s always irritated me that there was never an <a href="http://opml.org/">OPML</a> file to import them all at once.</p>
<p><a href="http://cubegames.net/code/fp-opml/opml.xml">Et viola</a>. I wrote myself <a href="http://cubegames.net/code/fp-opml/index.phps">a simple PHP program</a> to convert a list of URLs into an OPML file (the code&#8217;s free for any use, should you find a use for it) and used a list of URLs I had obtained by doing mass copies from the <a href="http://feedparser.org/tests/">directory pages</a>.</p>
<p>Enjoy <img src='http://cubegames.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>(As a side note, there are 3325 different test feeds.)</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2007/12/30/feedparser-test-suite-now-with-opml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cheeaunblog: PenangBloggers.com launched</title>
		<link>http://cubegames.net/blog/2007/12/23/cheeaunblog-penangbloggerscom-launched/</link>
		<comments>http://cubegames.net/blog/2007/12/23/cheeaunblog-penangbloggerscom-launched/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 06:16:30 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Lilina]]></category>
		<category><![CDATA[aggregator]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/2007/12/23/cheeaunblog-penangbloggerscom-launched/</guid>
		<description><![CDATA[Note to self: Take a look at this site&#8217;s notes about aggregator design for future Lilina styles. Question for the author (if they read this): what exactly did you have to hack internally?
]]></description>
			<content:encoded><![CDATA[<p>Note to self: Take a look at <a href="http://cheeaun.phoenity.com/weblog/2007/12/penangbloggerscom-launched.html">this site&#8217;s notes about aggregator design</a> for future <a href="http://getlilina.org/">Lilina</a> styles. Question for the author (if they read this): what exactly did you have to hack internally?</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2007/12/23/cheeaunblog-penangbloggerscom-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading MediaWiki 1.4.8 to 1.11.0</title>
		<link>http://cubegames.net/blog/2007/12/11/upgrading-mediawiki-148-to-1110/</link>
		<comments>http://cubegames.net/blog/2007/12/11/upgrading-mediawiki-148-to-1110/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 02:28:01 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Code Monkey]]></category>
		<category><![CDATA[dokuwiki]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[winmerge]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-hackers]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/?p=40</guid>
		<description><![CDATA[The WordPress Codex site&#8217;s MediaWiki installation is currently on 1.4.8. I was listening to some discussion on the wp-hackers list, so I thought I&#8217;d present my guide to upgrading. I must warn you first though, I personally use DokuWiki when I need a wiki, as it&#8217;s simpler. Without further adieu&#8230;

Extract everything in mediawiki-1.11.0/ into your [...]]]></description>
			<content:encoded><![CDATA[<p>The WordPress Codex site&#8217;s MediaWiki installation is currently on 1.4.8. I was listening to some discussion on the wp-hackers list, so I thought I&#8217;d present my guide to upgrading. I must warn you first though, I personally use DokuWiki when I need a wiki, as it&#8217;s simpler. Without further adieu&#8230;</p>
<ol>
<li>Extract everything in mediawiki-1.11.0/ into your current MediaWiki folder (i.e. replace the files)</li>
<li>Delete the following files:
<ul>
<li>.cvsignore</li>
<li>Version.php</li>
<li>irc/</li>
<li>docs/deferred.doc</li>
<li>docs/design.doc</li>
<li>docs/globals.doc</li>
<li>docs/hooks.doc</li>
<li>docs/language.doc</li>
<li>docs/linkcache.doc</li>
<li>docs/memcached.doc</li>
<li>docs/schema.doc</li>
<li>docs/skin.doc</li>
<li>docs/title.doc</li>
<li>docs/user.doc</li>
<li>docs/html/.cvsignore</li>
<li>images/.cvsignore</li>
<li>includes/BlockCache.php</li>
<li>includes/CacheManager.php</li>
<li>includes/DatabasePostgreSQL.php</li>
<li>includes/FulltextStoplist.php</li>
<li>includes/Group.php</li>
<li>includes/Image.php</li>
<li>includes/Interwiki.php</li>
<li>includes/killthread.php</li>
<li>includes/MessageCacheHints.php</li>
<li>includes/ParserXML.php</li>
<li>includes/Profiling.php</li>
<li>includes/SearchMySQL3.php</li>
<li>includes/SiteStatsUpdate.php</li>
<li>includes/SkinPHPTal.php</li>
<li>includes/SpecialAsksql.php</li>
<li>includes/SpecialDebug.php</li>
<li>includes/SpecialGeo.php</li>
<li>includes/SpecialListadmins.php</li>
<li>includes/SpecialMaintenance.php</li>
<li>includes/SpecialMakesysop.php</li>
<li>includes/SpecialSitesettings.php</li>
<li>includes/SpecialUserlevels.php</li>
<li>includes/SpecialValidate.php</li>
<li>includes/UpdateClasses.php</li>
<li>includes/normal/.cvsignore</li>
<li>languages/Language*.php</li>
<li>maintenance/build-intl-wiki.sql</li>
<li>maintenance/changeuser.sql</li>
<li>maintenance/checktrans.php</li>
<li>maintenance/cleanupDupes.php</li>
<li>maintenance/compressOld.inc</li>
<li>maintenance/compressOld.php</li>
<li>maintenance/database.sql</li>
<li>maintenance/DiffLanguage.php</li>
<li>maintenance/dumpMessages.php</li>
<li>maintenance/dumpRev.php</li>
<li>maintenance/importPhase2.php</li>
<li>maintenance/InitialiseMessages.inc</li>
<li>maintenance/liveCmdLine.inc</li>
<li>maintenance/rebuildMessages.php</li>
<li>maintenance/recount.sql</li>
<li>maintenance/redundanttrans.php</li>
<li>maintenance/remove-brokenlinks.php</li>
<li>maintenance/trivialCmdLine.php</li>
<li>maintenance/postgresql/</li>
<li>maintenance/archives/convertdb.php</li>
<li>maintenance/archives/moveCustomMessages.inc</li>
<li>maintenance/archives/moveCustomMessages.php</li>
<li>maintenance/archives/patch-curid-covering.sql</li>
<li>maintenance/archives/patch-list.txt</li>
<li>maintenance/archives/patch-rename-user_rights.sql</li>
<li>math/.cvsignore</li>
<li>skins/amethyst/</li>
<li>skins/wikimania/</li>
<li>skins/common/common.css</li>
<li>skins/common/images/favicon.ico</li>
<li>skins/common/images/fileicon-mid.png</li>
<li>skins/common/images/fileicon-ogg.png</li>
<li>skins/common/images/fileicon-ogg.xcf</li>
<li>skins/common/images/fileicon.png</li>
<li>skins/common/images/magnify-clip.png.old</li>
<li>skins/common/images/redirect.png</li>
<li>skins/common/images/valid-html401.png</li>
<li>skins/disabled/Amethyst.php</li>
<li>skins/disabled/Amethyst.pt</li>
<li>skins/disabled/Chick.php</li>
<li>skins/disabled/Chick.pt</li>
<li>skins/disabled/MonoBook.pt</li>
<li>skins/disabled/MonoBookTal.php</li>
<li>skins/disabled/Wikimania.php</li>
<li>skins/disabled/WikimediaWiki.php</li>
<li>skins/disabled/WikimediaWiki.pt</li>
<li>tests/.cvsignore</li>
<li>tests/RunTests.php</li>
<li>tests/SearchMySQL3Test.php</li>
</ul>
</li>
<li>Rename LocalSettings.php to LocalSettings.old.php (<strong>Important:</strong> maintenance/upgrade.php will <em>not</em> work)</li>
<li>Run the installer again, with the same options as before</li>
<li>Delete config/LocalSettings.php</li>
<li>Rename LocalSettings.old.php back to LocalSettings.php</li>
<li>Done!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2007/12/11/upgrading-mediawiki-148-to-1110/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Damn that YaBB!</title>
		<link>http://cubegames.net/blog/2007/05/05/damn-that-yabb/</link>
		<comments>http://cubegames.net/blog/2007/05/05/damn-that-yabb/#comments</comments>
		<pubDate>Sat, 05 May 2007 06:11:01 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Code Monkey]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Spam]]></category>
		<category><![CDATA[yabb]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/?p=28</guid>
		<description><![CDATA[I have recently been using a 404 notifier plugin, however the links to mark a comment as spam don&#8217;t work. So, I resorted to doing it the PHP and Apache way.
All the spam was coming from bots trying to access a YaBB script. This was located (or so they thought) at /cgi-bin/yabb2/YaBB.pl
I decided that I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently been using a 404 notifier plugin, however the links to mark a comment as spam don&#8217;t work. So, I resorted to doing it the PHP and Apache way.<br />
All the spam was coming from bots trying to access a YaBB script. This was located (or so they thought) at /cgi-bin/yabb2/YaBB.pl<br />
I decided that I&#8217;d use some htaccess and some PHP. So here it is:</p>
<h3>The .htaccess</h3>
<p><code>RewriteEngine On<br />
RewriteRule ^cgi-bin/yabb2/YaBB.pl$ /damnthatyabb.php [L,NC]</code></p>
<h3>The PHP</h3>
<pre class="brush: php;">&lt;?php
if ($_GET['msg']) {
	echo 'Thanks for posting, spammer.';
}
else {
	echo '&lt;form action=&quot;/cgi-bin/yabb2/YaBB.pl&quot; method=&quot;GET&quot;&gt; &lt;textarea name=&quot;msg&quot;&gt;&lt;/textarea&gt;&lt;input type=&quot;submit&quot; /&gt;&lt;/form&gt;';
}</pre>
<h3>What it does</h3>
<p>It basically takes their input and does nothing with it, but gives them a sense of achievement. We don&#8217;t want to disappoint our guests now, do we?</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2007/05/05/damn-that-yabb/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox Add-ons Site</title>
		<link>http://cubegames.net/blog/2007/01/15/firefox-add-ons-site/</link>
		<comments>http://cubegames.net/blog/2007/01/15/firefox-add-ons-site/#comments</comments>
		<pubDate>Mon, 15 Jan 2007 04:29:59 +0000</pubDate>
		<dc:creator>Ryan McCue</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[site backend]]></category>

		<guid isPermaLink="false">http://cubegames.net/blog/?p=21</guid>
		<description><![CDATA[Anyone out in these here tubes that knows what the Firefox Add-ons Site is powered by?
If not, anyone know a contact email for someone at Mozilla that might have knowledge on this?
And I wonder if anyone over there has noticed that the developers login, link from the bottom of the page still has the old [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone out in these here tubes that knows what the Firefox Add-ons Site is powered by?<br />
If not, anyone know a contact email for someone at Mozilla that might have knowledge on this?</p>
<p>And I wonder if anyone over there has noticed that the developers login, link from the bottom of the page still has the old UI?</p>
]]></content:encoded>
			<wfw:commentRss>http://cubegames.net/blog/2007/01/15/firefox-add-ons-site/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
