<?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>PHP Digg</title>
	<atom:link href="http://www.phpdigg.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpdigg.net</link>
	<description>Digg PHP Resources</description>
	<lastBuildDate>Mon, 19 Apr 2010 23:02:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Php Free Chat</title>
		<link>http://www.phpdigg.net/2010/04/19/php-free-chat/</link>
		<comments>http://www.phpdigg.net/2010/04/19/php-free-chat/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 22:50:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts and Widgets]]></category>
		<category><![CDATA[phpfreechat]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=600</guid>
		<description><![CDATA[phpFreeChat is a free, simple to install, fast, customizable and multi languages chat that uses a simple filesystem for message and nickname storage. It uses AJAX to smoothly refresh (no flicker) and display the chat zone and the nickname zone. It supports multi-rooms (/join), private messages, moderation (/kick, /ban), customized themes based on CSS and [...]]]></description>
			<content:encoded><![CDATA[<p>phpFreeChat is a free, simple to install, fast, customizable and multi languages chat that uses a simple filesystem for message and nickname storage. It uses AJAX to smoothly refresh (no flicker) and display the chat zone and the nickname zone. It supports multi-rooms (/join), private messages, moderation (/kick, /ban), customized themes based on CSS and plugins systems that allows you to write your own storage routines (ex: Mysql, IRC backends …), and your own chat commands !</p>
<h3>Quick Links</h3>
<ul>
<li><a href="http://www.phpfreechat.net/">phpFreeChat Official</a></li>
<li><a href="http://www.phpfreechat.net/demo">phpFreeChat Demo</a></li>
<li><a href="http://www.phpfreechat.net/download">Download PhpFreeChat</a></li>
<li><a href="http://www.phpfreechat.net/forum/">phpFreeChat User Discussion Forum</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/19/php-free-chat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Globalize your Web Applications: PHP&#8217;s Locale Package</title>
		<link>http://www.phpdigg.net/2010/04/18/globalize-your-web-applications-phps-locale-package/</link>
		<comments>http://www.phpdigg.net/2010/04/18/globalize-your-web-applications-phps-locale-package/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 05:02:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts and Widgets]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=598</guid>
		<description><![CDATA[Having survived the Great Y2K threat, we are now observing an economy that has become far more globalized than it was in the previous century. The extent of the Internet&#8217;s contribution is open to debate, but there is no question that the associated information explosion supported the acceleration of market internationalization that we now take [...]]]></description>
			<content:encoded><![CDATA[<p>Having survived the Great Y2K threat, we are now observing an economy  that   has become far more globalized than it was in the previous century.  The extent   of the Internet&#8217;s contribution is open to debate, but there is no question that   the associated information explosion supported the acceleration of  market internationalization   that we now take for granted. For many of us, the realization of the  extent   of countries&#8217; interdependence was driven home by the recent global  economic   meltdown. So what does all this have to do with us Web developers?  It&#8217;s a resounding   wake up call that we have to think of other nationalities when we  develop our   websites and applications. In most cases, developing a web app in  English alienates   much of the world&#8217;s population and greatly reduces potential profits!  With that  in mind, this article is the kickoff for a series that discusses the  ramifications  of globalization on our websites and applications.  Today&#8217;s article will deal  with locales and their implementation in the PHP language.</p>
<h2>The Many Names of Internationalization</h2>
<p>Besides the interchangeability of the terms internationalization and  globalization,   there are a few abbreviations (or numeronyms) that are used to shorten  these   longish words. A popular abbreviation is <code>i18n</code> where the <code>18</code> stands for the number   of letters between the first <code>i</code> and last <code>n</code> in  internationalization. Another is   <code>L10n</code>. In this case, the <code>10</code> refers to the  number of letters between the first   <code>l</code> and the last <code>n</code> in localization. The  capital <code>L</code> in <code>L10n</code> also serves to further   distinguish it from the lowercase <code>i</code> in <code>i18n</code>.  The term globalization, which is   favored by companies like Microsoft, IBM, and Sun Microsystems, can  likewise   be abbreviated to <code>g11n</code>.</p>
<h2>The Locale Identifier</h2>
<p>In computing, a locale is a set of parameters that defines attributes  for a   user&#8217;s specific geographic location, including the user&#8217;s language,  country   and certain cultural preferences that users want to see reflected in  the   interface. As such, we&#8217;re speaking about a lot more than their  language; the   locale also affects the formatting of currency, numbers, dates, and  time. Typically,   different locales are identified by a language identifier and a region  identifier.</p>
<p>The two major operating systems both support different locales,  albeit using   different mechanisms. On UNIX, Linux and other POSIX-type platforms,  locale   identifiers are defined in the following format: <code>[language[_territory][.codeset][@modifier]]</code>.   For example, Australian English using the UTF-8 encoding is <code>en_AU.UTF-8</code>.  Contrast   that with Windows, which uses a four-digit Locale identifier (LCID),  such as   <code>1033</code> for <code>English (United States)</code> and <code>1041</code> for <code>Japanese (Japan)</code>. These numbers   consist of a language code (lower 10 bits) and culture code (upper  bits) and   are therefore often written in hexadecimal notation, such as <code>0x0409</code> or <code>0x0411</code>.   I personally became acquainted with LCIDs early on in my career as a  developer   for the Canadian federal government. It is a nation-wide standard that all of  our applications must support both English and French users, as Canada is officially   a bilingual Nation.</p>
<p>You can use the executable locale to show your current locale on UNIX  platforms.   For instance, the command <code>locale -a</code> displays all the  locales currently installed   on the machine. You can control the system locale via various  environment variables.   These can be defined in your environment to be system-wide, or on a  per-session   basis:</p>
<ul>
<li><strong>LC_ALL</strong>: Overrides all LC_* environment variables  with the     given value</li>
<li><strong>LC_CTYPE</strong>: Character classification and case  conversion</li>
<li><strong>LC_COLLATE:</strong> Collation (sort) order</li>
<li><strong>LC_TIME</strong>: Date and time formats</li>
<li><strong>LC_NUMERIC</strong>: Non-monetary numeric formats</li>
<li><strong>LC_MONETARY</strong>: Monetary formats</li>
<li><strong>LC_MESSAGES</strong>: Formats of informative and  diagnostic messages,     and of interactive responses</li>
<li><strong>LC_PAPER</strong>: Paper size</li>
<li><strong>LC_NAME</strong>: Name formats</li>
<li><strong>LC_ADDRESS</strong>: Address formats and location  information</li>
<li><strong>LC_TELEPHONE</strong>: Telephone number formats</li>
<li><strong>LC_MEASUREMENT</strong>: Measurement units (Metric or  Other)</li>
<li><strong>LC_IDENTIFICATION</strong>: Metadata about the locale  information</li>
<li><strong>LANG</strong>: The default value, which is used when  either LC_ALL     is not set, or an applicable value for LC_* is not set</li>
<li><strong>NLSPATH</strong>: Delimited list of paths to search for  message     catalogs</li>
<li><strong>TZ</strong>: Time zone</li>
</ul>
<p>Information on the current Locale in Windows is accessible from the  Regional   Options dialog:</p>
<p>Figure 1</p>
<p>To access the Regional Options dialog, click on <code>START=&gt;Settings=&gt;Control    Panel</code> to bring up the Control Panel:</p>
<p>Figure 2</p>
<p>Then click on the <code>Regional Options</code> item to bring up the  dialog:</p>
<p>Figure 3</p>
<p>Your current locale is selected in the <code>Your Locale (location)</code> dropdown list,   on the <code>General</code> tab. Below the <code>Settings for the  current user</code> section is a list   of installed language packs. Other tabs define <code>Number, Currency,  Time,</code> and <code>Date</code> formatting options. The <code>Input Locales</code> tab allows you to  change language-related   keyboard settings such as those that print non-English characters.</p>
<p>It&#8217;s important to know how to configure your workstation&#8217;s locale  settings   because it can be helpful in testing locale-dependent application features.   It is also possible to affect an application without altering your  global   machine settings through programming language features.</p>
<h3>Locale Support in Programming Languages</h3>
<p>Generally, it is preferable to set application locale attributes  directly using   language features rather than alter your workstation&#8217;s global  settings. Here   are a couple of points to keep in mind regarding locale support in  programming   languages:</p>
<ul>
<li>general rule 1: the newer a development language is, the likelier  that it     offers multilingual and locale support; and that goes double for web  languages.</li>
<li>general rule 2: no two languages implement locale support in the  same way!</li>
</ul>
<p>For our first look at locale support in programming languages, we&#8217;ll  be exploring   PHP&#8217;s <code>I18N</code> libraries. PHP is a scripting language that  was originally designed   for web development and the creation of dynamic content. In addition  to being   well suited for multi-national applications, it is also one of the  most popular   web development languages in use today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/18/globalize-your-web-applications-phps-locale-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Toolbar v 2.2 : Custom toolbar url, Support for WPMU and bug fixes</title>
		<link>http://www.phpdigg.net/2010/04/17/wordpress-toolbar-v-2-2-custom-toolbar-url-support-for-wpmu-and-bug-fixes/</link>
		<comments>http://www.phpdigg.net/2010/04/17/wordpress-toolbar-v-2-2-custom-toolbar-url-support-for-wpmu-and-bug-fixes/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 04:49:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Applications]]></category>
		<category><![CDATA[wordpress toolbar plugin]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=593</guid>
		<description><![CDATA[WordPress toolbar plugin provide a facebook, digg style toolbar for all outgoing links from your blog posts. The toolbar url defaults to http://yourblog/wp-content/plugins/wordpress-toolbar/toolbar.php. However with version 2.2, blog admin can customize toolbar url to http://yourblog/wordpress-toolbar/ through the admin panel. A lot of other enhancements have been added like cross-plugin compatibility and support for WPMU hosted [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress toolbar plugin provide a facebook, digg style toolbar for  all outgoing links from your blog posts. The toolbar url defaults to <code>http://yourblog/wp-content/plugins/wordpress-toolbar/toolbar.php</code>.  However with version 2.2, blog admin can customize toolbar url to <code>http://yourblog/wordpress-toolbar/</code> through the admin panel. A lot of other enhancements have been added  like cross-plugin compatibility and support for WPMU hosted blogs. Check  full feature list below.</p>
<p><strong>What’s New?</strong><br />
Listed below is list of new features and bug fixes released with v 2.2:</p>
<ol>
<li>Support for customizing toolbar url through admin panel</li>
<li>Support for WPMU hosted blogs</li>
<li>Support for removing “Get this Plugin” widget from the toolbar  through admin panel</li>
<li>Security fix for possible XSS attack. Fix done by passing encoded  hash string instead of plain text parameters. Also added various  security checks on toolbar page to avoid possible XSS attacks.</li>
<li>Bug fix where plugin didn’t work as expected because of cross plugin  compatibility issues. Fix done by replacing server side toolbar logic  with client side (using jquery) logic.</li>
<li>Bug fix to show sociable share icons and tinyurl share link only for  single posts and pages</li>
<li>Bug fix for unrecognizable code in the toolbar when the encoding of  hosted blog is different from utf-8. Fix done by using hosted blog  settings instead of hardcoded utf-8.</li>
</ol>
<p>Also core plugin code has been restructured (OOPS oriented now) so  that maintainability and support becomes easier and quicker.</p>
<p><a href="http://downloads.wordpress.org/plugin/wordpress-toolbar.2.2.6.zip">Download the plugin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/17/wordpress-toolbar-v-2-2-custom-toolbar-url-support-for-wpmu-and-bug-fixes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Wishlist</title>
		<link>http://www.phpdigg.net/2010/04/17/create-a-wishlist/</link>
		<comments>http://www.phpdigg.net/2010/04/17/create-a-wishlist/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 04:42:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts and Widgets]]></category>
		<category><![CDATA[Create a Wishlist]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=591</guid>
		<description><![CDATA[I got a question about creating a wishlist from one forum. If you have any idea of that please just reply this post. Here is the question: Hi all, I&#8217;m trying to create a wishlist for my advertisment site. What I want to do is let the user browse through and once an article that [...]]]></description>
			<content:encoded><![CDATA[<p>I got a question about creating a wishlist from one forum. If you have any idea of that please just reply this post. Here is the question:</p>
<blockquote><p>Hi all,</p>
<p>I&#8217;m trying to create a wishlist for my advertisment site. What I want to do is let the<br />
user browse through and once an article that they want to watch is found then they click a link to add to favorites. Once added they must then be able to view a list of their favorite items.</p>
<p>Basicly a system like eBay.</p>
<p>The only thought I have is to store the products ID in a database when the link is clicked and<br />
then link to this ID in a my watchlist area with products details.</p>
<p>Anybody else got some good ideas?</p>
<p>Matt</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/17/create-a-wishlist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use locks in PHP cron jobs to avoid cron overlaps</title>
		<link>http://www.phpdigg.net/2010/04/17/how-to-use-locks-in-php-cron-jobs-to-avoid-cron-overlaps/</link>
		<comments>http://www.phpdigg.net/2010/04/17/how-to-use-locks-in-php-cron-jobs-to-avoid-cron-overlaps/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 04:35:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts and Widgets]]></category>
		<category><![CDATA[php cron jobs]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=589</guid>
		<description><![CDATA[Cron jobs are hidden building blocks for most of the websites. They are generally used to process/aggregate data in the background. However as a website starts to grow and there is gigabytes of data to be processed by every cron job, chances are that our cron jobs might overlap and possibly corrupt our data. In [...]]]></description>
			<content:encoded><![CDATA[<p>Cron jobs are hidden building blocks for most of the websites. They are generally used to process/aggregate data in the background. However as a website starts to grow and there is gigabytes of data to be processed by every cron job, chances are that our cron jobs might overlap and possibly corrupt our data. In this blog post, I will demonstrate how can we avoid such overlaps by using simple locking techniques. I will also discuss a few edge cases we need to consider while using locks to avoid overlap.</p>
<p><a href="http://abhinavsingh.com/blog/2009/12/how-to-use-locks-in-php-cron-jobs-to-avoid-cron-overlaps/">Read the rest of the post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/17/how-to-use-locks-in-php-cron-jobs-to-avoid-cron-overlaps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why echo is slow in PHP and how to make it really fast</title>
		<link>http://www.phpdigg.net/2010/04/17/why-echo-is-slow-in-php-and-how-to-make-it-really-fast/</link>
		<comments>http://www.phpdigg.net/2010/04/17/why-echo-is-slow-in-php-and-how-to-make-it-really-fast/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 03:41:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=582</guid>
		<description><![CDATA[You may have noticed that PHP scripts that echo a lot of content appear to be running with poor performance… Well, the operative word here is “appear&#8221;. It is a common misconception that “echo is the slowest PHP command&#8221;! :p The problem is actually just a bandwidth issue! When you try to pump a lot [...]]]></description>
			<content:encoded><![CDATA[<p>You may have noticed that PHP scripts that echo a lot of content appear to be running with poor performance…</p>
<p>Well, the operative word here is “appear&#8221;. It is a common misconception that “echo is the slowest PHP command&#8221;! :p</p>
<p>The problem is actually just a bandwidth issue! When you try to pump a lot of content though the Internet, at some point you experience “load time&#8221;… and at some point PHP actually experiences “send time&#8221;!</p>
<p>You may measure the execution time between the begining and the end of your script, and, on a slow connection, it may show you that it took 500 ms to execute. You may even narrow it down to a single echo statement that takes 480 ms to execute. But that time actually includes wait time where PHP cannot send any more data back to apache!</p>
<p>PHP:</p>
<p><code>ob_start();<br />
echo $a_lot_of_content;</code></p>
<p>This will allow PHP to move on and appear to terminate fast. But the  truth is, all the content is now in PHP’s output buffer, and although  your script is done, PHP is still working in the background to send all  that data to your web server (apache for instance).</p>
<p>Follow up:</p>
<p>To verify that the processing time doesn’t vary by employing this  trick, you can <a href="http://fplanque.com/dev/linux/how-to-log-request-processing-times-in-apache">log  actual request processing times in apache</a>.</p>
<p>Now, if you want PHP to really terminate, you need to give Apache a  larger buffer in order to absorb the content from PHP. I believe the  default Apache buffer is 4096 or 8192 bytes (anyone know how to verify  this?).</p>
<p>If your PHP script tries to output 24 KB of data but apache can only  buffer 8 KB, then yes PHP will be waiting. However, if you make the  Apache cahce, say 32 KB, then PHP will send all its data to Apache and  exit in a breeze!</p>
<p>Here is how you can change Apache’s buffer size in apache2.conf :</p>
<p>Code:<br />
<code>&lt;IfModule  mpm_prefork_module&gt;</code><br />
<code> StartServers          5</code><br />
<code> MinSpareServers       5</code><br />
<code> MaxSpareServers      15</code><br />
<code> MaxClients           40</code><br />
<code> MaxRequestsPerChild  20</code><br />
<code> SendBufferSize    32768</code><br />
<code>&lt;/IfModule&gt;</code></p>
<p>The only important line in the SendBufferSize line. The other lines  are provided for context so you can find the right place in apache2.conf  to add the SendBufferSize line (in case it doesn’t exist already). I  don’t have particular recommendations on the other lines at this point.</p>
<p>After restarting apache, look at your logs and execution times again.  You will see them drop from 500 ms to 30 ms in the example above. That  is, of course, as long as you don’t send more data in PHP than the  Apache buffer can absorb.</p>
<p>Now, of course, this will *not* increase the end-to-end transfer time  of the page from PHP to browser. However, it will allow PHP to exit  faster, which may or may not free up resources on the server… probably  depending on the configuration.</p>
<p>I am pretty sure it does free up resources if you use CGI. But if you  use mod_php, I don’t know… Anyone?</p>
<p>Then, I guess, the next step would be to push the data out of Apache  faster… but I’m not sure there is another buffer that could be augmented  in between Apache and the actual <a href="http://en.wikipedia.org/wiki/Nagel_algorithm">Nagle Algorithm</a> that manages the transfer speed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/17/why-echo-is-slow-in-php-and-how-to-make-it-really-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TYPO3</title>
		<link>http://www.phpdigg.net/2010/04/16/typo3/</link>
		<comments>http://www.phpdigg.net/2010/04/16/typo3/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 08:40:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CMS Applications]]></category>
		<category><![CDATA[TYPO3]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=576</guid>
		<description><![CDATA[TYPO3 is a free Open Source content management system for enterprise purposes on the web and in intranets. It offers full flexibility and extendability while featuring an accomplished set of ready-made interfaces, functions and modules. TYPO3 Quick Links TYPO3 Official Download Documentation]]></description>
			<content:encoded><![CDATA[<p>TYPO3 is a free Open Source content management system for enterprise purposes on the web and in intranets. It offers full flexibility and extendability while featuring an accomplished set of ready-made interfaces, functions and modules.</p>
<h3>TYPO3 Quick Links</h3>
<ul>
<li><a href="http://typo3.org">TYPO3 Official</a></li>
<li><a href="http://typo3.org/download/packages/">Download</a></li>
<li><a href="http://typo3.org/documentation/document-library/">Documentation</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/16/typo3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BitsyBox</title>
		<link>http://www.phpdigg.net/2010/04/16/bitsybox/</link>
		<comments>http://www.phpdigg.net/2010/04/16/bitsybox/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 08:11:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CMS Applications]]></category>
		<category><![CDATA[BitsyBox]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=570</guid>
		<description><![CDATA[BitsyBox is a hosted content storage platform that offers two products that work in perfect harmony. The first is an easy-to-use web interface that lets site owners edit and update their content. The second is a robust API for developers to quickly access that content from their website or application code. BitsyBox Main Features Create [...]]]></description>
			<content:encoded><![CDATA[<p>BitsyBox is a hosted content storage platform that offers two products that work in perfect harmony. The first is an easy-to-use web interface that lets site owners edit and update their content. The second is a robust API for developers to quickly access that content from their website or application code.</p>
<h3>BitsyBox Main Features</h3>
<ul>
<li>Create flexible, custom datastores</li>
<li>Data access through a REST API</li>
<li>Easy to use interface for editing data</li>
<li>Built-in Content Delivery Network (CDN)</li>
</ul>
<h3>Quick Links</h3>
<ul>
<li><a href="http://www.bitsybox.com">BitsyBox Official</a></li>
<li><a href="http://www.bitsybox.com/support/docs">BitsyBox Documentation</a></li>
<li><a href="http://www.bitsybox.com/features">BitsyBox Features</a></li>
<li><a href="http://www.bitsybox.com/support/downloads">Download</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/16/bitsybox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pixelsilk</title>
		<link>http://www.phpdigg.net/2010/04/16/pixelsilk/</link>
		<comments>http://www.phpdigg.net/2010/04/16/pixelsilk/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 07:23:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CMS Applications]]></category>
		<category><![CDATA[Pixelsilk]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=566</guid>
		<description><![CDATA[Pixelsilk is a web-based SEO friendly CMS, content management system, built from the ground up with search engine optimization (SEO) requirements at its core. Pixelsilk CMS is easy to use and allows full HTML and URL control. Pixelsilk’s SEO-Friendly CMS enables the highest level of SEO possible by ensuring the design, code, content and architecture [...]]]></description>
			<content:encoded><![CDATA[<p>Pixelsilk is a web-based SEO friendly CMS, content management system, built from the ground up with search engine optimization (SEO) requirements at its core.  Pixelsilk CMS is easy to use and allows full HTML and URL control.</p>
<p>Pixelsilk’s SEO-Friendly CMS enables the highest level of SEO possible by ensuring the design, code, content and architecture all provide the search spiders with exactly the information they need most. From keyword-rich, relevant content to title, Meta tags, Pixelsilk provides Search Advice (patent pending) directly to the editor while content is being created or modified—not bolted on as an afterthought. </p>
<h3>Pixelsilk Main Features</h3>
<ul>
<li>Full HTML control</li>
<li>Interactivity with social media applications</li>
<li>Open architecture and framework</li>
<li>Real-time search engine optimization advice</li>
<li>Theme and navigation flexibility</li>
</ul>
<h3>Quick Links</h3>
<ul>
<li><a href="http://www.pixelsilk.com">Pixelsilk Official</a></li>
<li><a href="http://www.pixelsilk.com/tour/">Pixelsilk Product Tour Video</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/16/pixelsilk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CushyCMS</title>
		<link>http://www.phpdigg.net/2010/04/14/cushy-cms/</link>
		<comments>http://www.phpdigg.net/2010/04/14/cushy-cms/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:17:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CMS Applications]]></category>
		<category><![CDATA[CushyCMS]]></category>

		<guid isPermaLink="false">http://www.phpdigg.net/?p=562</guid>
		<description><![CDATA[CushyCMS is a Content Management Systems (CMS) that is truly simple. It&#8217;s free for unlimited users, unlimited changes, unlimited pages and unlimited sites. It&#8217;s built from the ground up with ease of use in mind &#8211; for both content editors and designers. It&#8217;s such a simple CMS that it takes less than 3 minutes for [...]]]></description>
			<content:encoded><![CDATA[<p>CushyCMS is a Content Management Systems (CMS) that is truly simple. It&#8217;s free for unlimited users, unlimited changes, unlimited pages and unlimited sites.</p>
<p>It&#8217;s built from the ground up with ease of use in mind &#8211; for both content editors and designers. It&#8217;s such a simple CMS that it takes less than 3 minutes for a web designer to implement. No PHP or ASP required for this CMS. If you can add CSS classes to HTML tags then you can implement CushyCMS. It&#8217;s also a hosted CMS, so no installation or maintenance is needed either.</p>
<p>Content editors will love managing their content with this system. No training required, it&#8217;s just that easy.</p>
<p>And it is, and always will be a free CMS. You can use it for professional use, you can even charge your clients to use it. The only catch is that if you make it your own CMS solution, with your own brand, then you&#8217;ll need to pay for the pro plan.</p>
<h3>Quick Links</h3>
<ul>
<li><a href="http://www.cushycms.com/">CushyCMS Official Website</a></li>
<li><a href="http://www.cushycms.com/static/documentation">CushyCMS Documentation</a></li>
<li><a href="http://www.cushycms.com/static/signup">Get CushyCMS Now</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.phpdigg.net/2010/04/14/cushy-cms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
