<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>LoadStr - A Loadsys Blog</title>
	<link>http://blog.loadsys.com</link>
	<description>A Web Development Company Specializing In Standard-Based Web Design and the CakePHP Framework.</description>
	<pubDate>Fri, 02 May 2008 21:17:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Automagically setting user ID of record creator and modifier in CakePHP 1.2</title>
		<link>http://blog.loadsys.com/2008/05/02/automagically-setting-user-id-of-record-creator-and-modifier-in-cakephp-12/</link>
		<comments>http://blog.loadsys.com/2008/05/02/automagically-setting-user-id-of-record-creator-and-modifier-in-cakephp-12/#comments</comments>
		<pubDate>Fri, 02 May 2008 21:03:55 +0000</pubDate>
		<dc:creator>donatas</dc:creator>
		
		<category><![CDATA[CakePHP]]></category>

		<category><![CDATA[automation]]></category>

		<category><![CDATA[cake 1.2]]></category>

		<category><![CDATA[CakePHP Developers]]></category>

		<category><![CDATA[cakephp development]]></category>

		<category><![CDATA[created]]></category>

		<category><![CDATA[modified]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/2008/05/02/automagically-setting-user-id-of-record-creator-and-modifier-in-cakephp-12/</guid>
		<description><![CDATA[When designing a system for multiuser environment, it is always important to know who created and who modified a record. When using proper field names, such as created and modified, CakePHP automatically sets the proper dates values. We wanted to use the same principal for automatically setting user ID of who created and modified a [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-bottom: 0in"><meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" /><title></title><meta name="GENERATOR" content="OpenOffice.org 2.0  (Win32)" /><meta name="CREATED" content="20080502;12503400" /><meta name="CHANGED" content="20080502;14053100" />When designing a system for multiuser environment, it is always important to know who created and who modified a record. When using proper field names, such as created and modified, CakePHP automatically sets the proper dates values. We wanted to use the same principal for automatically setting user ID of who <em>created</em> and <em>modified</em> a record. We created a standard for ourself by naming the fields <em>creator_id</em> and <em>modifier_id</em> which goes together with Cake&#8217;s date fields <em>created</em> and <em>modified</em>.</p>
<p style="margin-bottom: 0in">All of our projects use as much of standard CakePHP libraries as possible. That&#8217;s why all of our CakePHP projects use AuthComponent for authentication.</p>
<p style="margin-bottom: 0in">The first thing we needed to do to was to create ability to access ID of a currently logged in user anywhere in the application. This was achieved by overloading the core AuthComponent:</p>
<p>controllers/components/loadsys_auth.php</p>
<pre>&lt;?php

uses('controller/components/auth');

class LoadsysAuthComponent extends AuthComponent {

        function initialize(&amp;$controller) {
                ClassRegistry::addObject('LoadsysAuthComponent', $this);
                parent::initialize($controller);
        }

}

class LoadsysAuth {

        function &amp;getInstance() {
                static $instance = array();
                if (!$instance) {
                        $instance[0] =&amp; ClassRegistry::getObject('LoadsysAuthComponent');
                }
                return $instance[0];
        }

        static function getUser() {
                $_this =&amp; LoadsysAuth::getInstance();
                return $_this-&gt;user();
        }

        static function getUserId() {
                $_this =&amp; LoadsysAuth::getInstance();
                $user = $_this-&gt;user();
                return Set::extract($user, 'User.id');
        }

        static function getUserGroupId() {
                $_this =&amp; LoadsysAuth::getInstance();
                $user = $_this-&gt;user();
                return Set::extract($user, 'User.user_group_id');
        }
}
?&gt;</pre>
<p><font size="3">This structure will allow us to access user ID and user group ID from anywhere in the application by calling LoadsysAuth::getUserId() and LoadsysAuth::getUserGroupId(). This could be applied to many situations.</font></p>
<p style="margin-bottom: 0in; font-style: normal"><font size="3">Now we need to include the component in our project:</font></p>
<p style="margin-bottom: 0in; font-style: normal"><font size="3">app_controller.php</font></p>
<pre>class AppController extends Controller {
	...
	var $components = array('LoadsysAuth');

	...
}</pre>
<p><meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" /><title></title><meta name="GENERATOR" content="OpenOffice.org 2.0  (Win32)" /><meta name="CREATED" content="20080502;12503400" /><meta name="CHANGED" content="20080502;14053100" /></p>
<style> 	<!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } 	--> 	</style>
<p style="margin-bottom: 0in; font-style: normal"><font size="3">In order to set the <em>creator_id</em> and <em>modifier_id </em>for<em>, </em>we will have to put it in the base class:</font></p>
<p><font size="3">app_model.php<br />
</font></p>
<pre>&lt;?php

class AppModel extends Model {
        function beforeSave() {
                $exists = $this-&gt;exists();
                if ( !$exists &amp;&amp; $this-&gt;hasField('creator_id') &amp;&amp; empty($this-&gt;data[$this-&gt;alias]['creator_id']) ) {
                        $this-&gt;data[$this-&gt;alias]['creator_id'] = LoadsysAuth::getUserId();
                }
                if ( $this-&gt;hasField('modifier_id') &amp;&amp; empty($this-&gt;data[$this-&gt;alias]['modifier_id']) ) {
                        $this-&gt;data[$this-&gt;alias]['modifier_id'] = LoadsysAuth::getUserId();
                }
                return true;
        }
}

?&gt;</pre>
<p><meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8" /><title></title><meta name="GENERATOR" content="OpenOffice.org 2.0  (Win32)" /><meta name="CREATED" content="20080502;12503400" /><meta name="CHANGED" content="20080502;14053100" /></p>
<style> 	<!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } 	--> 	</style>
<p style="margin-bottom: 0in; font-style: normal"><font size="3">In your application models, if you need to override the beforeSave callback, make sure you call the parent function:</font></p>
<p><font size="3">Example:</font></p>
<pre>create table articles (
 id int unsigned not null auto_increment,
 title varchar(255) not null,
 article varchar(255) not null,
 created datetime,
 creator_id int unsigned,
 modified datetime,
 modifier_id int unsigned,
 primary key(id)
);</pre>
<p>models/article.php</p>
<pre>&lt;?php

class Article extends AppModel {
	...

	function beforeSave() {
		...
		return parent::beforeSave();
	}

	...
}

?&gt;</pre>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=15&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_15"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2008/05/02/automagically-setting-user-id-of-record-creator-and-modifier-in-cakephp-12/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working with CakePHP Projects in SVN</title>
		<link>http://blog.loadsys.com/2008/03/28/working-with-cakephp-projects-in-svn/</link>
		<comments>http://blog.loadsys.com/2008/03/28/working-with-cakephp-projects-in-svn/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 21:22:02 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[CakePHP]]></category>

		<category><![CDATA[SVN]]></category>

		<category><![CDATA[cakephp development]]></category>

		<category><![CDATA[cakephp svn]]></category>

		<category><![CDATA[pushing cakephp applications]]></category>

		<category><![CDATA[svn cakephp]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/2008/03/28/working-with-cakephp-projects-in-svn/</guid>
		<description><![CDATA[SVN is a life saver in the multi-developer project world.  Heck, even with just one developer we would recommend it.  The ability to organize code revisions is necessity.  Now mix in the CakePHP framework and we have some developers that chose everything perfect for development.
To start, I really think that many people don&#8217;t use SVN [...]]]></description>
			<content:encoded><![CDATA[<p>SVN is a life saver in the multi-developer project world.  Heck, even with just one developer we would recommend it.  The ability to organize code revisions is necessity.  Now mix in the CakePHP framework and we have some developers that chose everything perfect for development.</p>
<p>To start, I really think that many people don&#8217;t use SVN properly to organize their code.  I myself am one who was like this.  In the past, we only worked in Trunk.  Great, we had the ability to work on our own working copies of the repo, but beyond that, doing code pushes and managing larger revisions versus simple fixes/updates becomes hard.</p>
<p> <a href="http://blog.loadsys.com/2008/03/28/working-with-cakephp-projects-in-svn/#more-13" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=13&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_13"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2008/03/28/working-with-cakephp-projects-in-svn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CakePHP 1.2 - Tuning the ACL via MySQL</title>
		<link>http://blog.loadsys.com/2008/03/19/cakephp-12-tuning-the-acl-via-mysql/</link>
		<comments>http://blog.loadsys.com/2008/03/19/cakephp-12-tuning-the-acl-via-mysql/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 19:34:58 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[CakePHP]]></category>

		<category><![CDATA[ACL Tuning]]></category>

		<category><![CDATA[cakephp developer]]></category>

		<category><![CDATA[CakePHP Developers]]></category>

		<category><![CDATA[cakephp development]]></category>

		<category><![CDATA[CakePHP Performance]]></category>

		<category><![CDATA[CakePHP Tuning]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/2008/03/19/cakephp-12-tuning-the-acl-via-mysql/</guid>
		<description><![CDATA[Loadsys creates a lot of larger web applications for clients that have many user types with many privileges.  The ACL tables out of the box, ACOS and AROS, do not contain indexes except for the PRIMARY KEY on id.
Since the ACL uses Binary Search Trees, a lot of complex queries take place with the left [...]]]></description>
			<content:encoded><![CDATA[<p>Loadsys creates a lot of larger web applications for clients that have many user types with many privileges.  The ACL tables out of the box, ACOS and AROS, do not contain indexes except for the PRIMARY KEY on id.</p>
<p>Since the ACL uses Binary Search Trees, a lot of complex queries take place with the left and right nodes.</p>
<p>So, let&#8217;s take a look at how one of the most intensive ACL queries acts with no changes made.</p>
<p> <a href="http://blog.loadsys.com/2008/03/19/cakephp-12-tuning-the-acl-via-mysql/#more-12" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=12&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_12"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2008/03/19/cakephp-12-tuning-the-acl-via-mysql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEO for CakePHP Websites</title>
		<link>http://blog.loadsys.com/2008/03/10/seo-for-cakephp-websites/</link>
		<comments>http://blog.loadsys.com/2008/03/10/seo-for-cakephp-websites/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 14:24:11 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[CakePHP]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[XHTML/CSS]]></category>

		<category><![CDATA[cake php]]></category>

		<category><![CDATA[cakephp developer]]></category>

		<category><![CDATA[cakephp development]]></category>

		<category><![CDATA[cakephp web development]]></category>

		<category><![CDATA[cakephp websites]]></category>

		<category><![CDATA[meta tags]]></category>

		<category><![CDATA[phpcake]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/2008/03/10/seo-for-cakephp-websites/</guid>
		<description><![CDATA[There is little web developers can do to get high rankings in search engines because most rankings are because of backlinks to your site, however we can better the possibility by utilizing fundamental rules that make more pages of your website indexed.
We develop in a framework called CakePHP.  It is getting very popular in the [...]]]></description>
			<content:encoded><![CDATA[<p>There is little web developers can do to get high rankings in search engines because most rankings are because of backlinks to your site, however we can better the possibility by utilizing fundamental rules that make more pages of your website indexed.</p>
<p>We develop in a framework called CakePHP.  It is getting very popular in the web development world.  However, CakePHP is simply what it is set out to be which is a framework and not a CMS or anything of that nature.  It is a framework that gives you a structured way to develop web applications and gives you handy tools to speed up the process.</p>
<p>Because of this, there is of course no SEO features built into its core.  However, with the number of SEO companies that are pushing our clients to implementing very important &#8220;SEO-Friendly&#8221; items, we have set out to make this a feature that is with every CakePHP application we develop.<br />
 <a href="http://blog.loadsys.com/2008/03/10/seo-for-cakephp-websites/#more-11" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=11&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_11"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2008/03/10/seo-for-cakephp-websites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Core Styling With Blueprint</title>
		<link>http://blog.loadsys.com/2008/01/23/core-styling-with-blueprint/</link>
		<comments>http://blog.loadsys.com/2008/01/23/core-styling-with-blueprint/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 14:24:11 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[XHTML/CSS]]></category>

		<category><![CDATA[blueprint]]></category>

		<category><![CDATA[CakePHP]]></category>

		<category><![CDATA[cakephp developer]]></category>

		<category><![CDATA[cakephp development]]></category>

		<category><![CDATA[cakephp web development]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[phpcake]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/?p=3</guid>
		<description><![CDATA[Being more of a developer myself, moving into doing more xhtml/css has been a strange yet fun adventure.  Learning everything about styling elements to building layouts was not my thing.  I still have trouble building layouts.  I&#8217;m not a designer nor understand the ins and outs of all browsers and hacks/methods to getting around those [...]]]></description>
			<content:encoded><![CDATA[<p>Being more of a developer myself, moving into doing more xhtml/css has been a strange yet fun adventure.  Learning everything about styling elements to building layouts was not my thing.  I still have trouble building layouts.  I&#8217;m not a designer nor understand the ins and outs of all browsers and hacks/methods to getting around those issues.</p>
<p>As a developer, you always think to work off frameworks or libraries.  For example, we use the <a href="http://www.cakephp.org" title="CakePHP" target="_blank">CakePHP framework</a> and we have written numerous of libraries to speed up development.  No sense in re-inventing the wheel.   Well, why can&#8217;t this be the same with CSS?  It sort of can.</p>
<p> <a href="http://blog.loadsys.com/2008/01/23/core-styling-with-blueprint/#more-3" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=3&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_3"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2008/01/23/core-styling-with-blueprint/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Paid Online Marketing:  Google Adwords</title>
		<link>http://blog.loadsys.com/2007/09/17/paid-online-marketing-google-adwords/</link>
		<comments>http://blog.loadsys.com/2007/09/17/paid-online-marketing-google-adwords/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 14:27:56 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[PPC Marketing]]></category>

		<category><![CDATA[build traffic]]></category>

		<category><![CDATA[google adwords]]></category>

		<category><![CDATA[ppc]]></category>

		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/?p=5</guid>
		<description><![CDATA[Not getting the best results in Google, Yahoo, and other search engines? Finding it hard to compete for traffic on the web? You should look into Google Adwords (http://adwords.google.com).
Google Adwords is a Google application that allows you to create marketing campaigns that will allow you to be found via their &#8220;Sponsors&#8221; section to the right [...]]]></description>
			<content:encoded><![CDATA[<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">Not getting the best results in Google, Yahoo, and other search engines? Finding it hard to compete for traffic on the web? You should look into Google Adwords (<a href="http://rs6.net/tn.jsp?t=n7nnuecab.0.0.hcf8a8bab.0&amp;p=http%3A%2F%2Fadwords.google.com%2F&amp;id=preview" linktype="undefined" target="_blank">http://adwords.google.com</a>).</font></p>
<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">Google Adwords is a Google application that allows you to create marketing campaigns that will allow you to be found via their &#8220;Sponsors&#8221; section to the right of the regular search engine results. Basically, you create an ad that has a title, description, and a link to your site&#8230;you then place bids on keywords. For example, Loadsys would bid on &#8220;Chicago Web Design&#8221;. You place bids on a per click basis for these keywords. Scared of getting too many clicks above your budget? Google allows you to set daily limits on your campaigns.</font></p>
<p> <a href="http://blog.loadsys.com/2007/09/17/paid-online-marketing-google-adwords/#more-5" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=5&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_5"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2007/09/17/paid-online-marketing-google-adwords/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Site Traffic Analysis:  Google Analytics</title>
		<link>http://blog.loadsys.com/2007/09/17/site-traffic-analysis-google-analytics/</link>
		<comments>http://blog.loadsys.com/2007/09/17/site-traffic-analysis-google-analytics/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 14:26:01 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[google analytics]]></category>

		<category><![CDATA[site analysis]]></category>

		<category><![CDATA[traffic analysis]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/?p=4</guid>
		<description><![CDATA[Sick of those boring traffic analysis tools that just gives you boring visitor numbers and this buzz word called &#8220;Hits&#8221;? Google Analytics has spruced site traffic analysis to a whole other level&#8230;and best part is that it is FREE!!!
Google Analytics ( http://analytics.google.com ) has many cool features.  The core elements Loadsys uses are Visitors, [...]]]></description>
			<content:encoded><![CDATA[<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">Sick of those boring traffic analysis tools that just gives you boring visitor numbers and this buzz word called &#8220;Hits&#8221;? Google Analytics has spruced site traffic analysis to a whole other level&#8230;and best part is that it is FREE!!!</font></p>
<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">Google Analytics ( <a href="http://rs6.net/tn.jsp?t=n7nnuecab.0.0.hcf8a8bab.0&amp;p=http%3A%2F%2Fanalytics.google.com%2F&amp;id=preview" linktype="undefined" target="_blank">http://analytics.google.com</a> ) has many cool features.  The core elements Loadsys uses are Visitors, Traffic Sources, Map Overlay, and Site Overlay.</font></p>
<p> <a href="http://blog.loadsys.com/2007/09/17/site-traffic-analysis-google-analytics/#more-4" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=4&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_4"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2007/09/17/site-traffic-analysis-google-analytics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Accessibility: Any Device Anytime</title>
		<link>http://blog.loadsys.com/2007/08/14/accessibility-any-device-anytime/</link>
		<comments>http://blog.loadsys.com/2007/08/14/accessibility-any-device-anytime/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 14:29:29 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[XHTML/CSS]]></category>

		<category><![CDATA[Accessibility]]></category>

		<category><![CDATA[w3c]]></category>

		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/?p=6</guid>
		<description><![CDATA[Accessibility is a big ideal now for websites. With the large use of non-computer devices, sites need to be fully accessible on any type of device. Most web designers do not now how to achieve this. The reason is very simple, they do not follow web standards from the W3C (http://www.w3c.org).
Share This
]]></description>
			<content:encoded><![CDATA[<p>Accessibility is a big ideal now for websites. With the large use of non-computer devices, sites need to be fully accessible on any type of device. Most web designers do not now how to achieve this. The reason is very simple, they do not follow web standards from the W3C (http://www.w3c.org).</p>
<p> <a href="http://blog.loadsys.com/2007/08/14/accessibility-any-device-anytime/#more-6" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=6&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_6"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2007/08/14/accessibility-any-device-anytime/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bloated Content Is Out The Window</title>
		<link>http://blog.loadsys.com/2007/06/26/bloated-content-is-out-the-window/</link>
		<comments>http://blog.loadsys.com/2007/06/26/bloated-content-is-out-the-window/#comments</comments>
		<pubDate>Tue, 26 Jun 2007 14:34:56 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[XHTML/CSS]]></category>

		<category><![CDATA[business website]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/?p=10</guid>
		<description><![CDATA[For years businesses have always tried to shove as much content at their site as possible, so that visitors can learn about what they offer. In the past, this method worked. Visitors tended to be less tech savy and were more content oriented. Now, web users move quickly and multi-task. A site with a main [...]]]></description>
			<content:encoded><![CDATA[<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">For years businesses have always tried to shove as much content at their site as possible, so that visitors can learn about what they offer. In the past, this method worked. Visitors tended to be less tech savy and were more content oriented. Now, web users move quickly and multi-task. A site with a main page that is bloated will turn away a potential client.</font></p>
<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">With this in mind, we recommend setting up your main page so that it directly communicates with your primary audience. You can do this by sectioning off your page into blocks that contain important information. For example, maybe a products or services block with a bulleted list. Another block with an About Us that is only a few sentences. Maybe another block with either a testimonial or a bulleted list of why they should use you. Lastly, some sort of clean use of images that reflect what you offer.</font></p>
<p> <a href="http://blog.loadsys.com/2007/06/26/bloated-content-is-out-the-window/#more-10" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=10&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_10"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2007/06/26/bloated-content-is-out-the-window/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is This Web 2.0 Jazz?</title>
		<link>http://blog.loadsys.com/2007/06/26/what-is-this-web-20-jazz/</link>
		<comments>http://blog.loadsys.com/2007/06/26/what-is-this-web-20-jazz/#comments</comments>
		<pubDate>Tue, 26 Jun 2007 14:33:48 +0000</pubDate>
		<dc:creator>lee</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[XHTML/CSS]]></category>

		<category><![CDATA[CakePHP]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[web2.0]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blog.loadsys.com/?p=9</guid>
		<description><![CDATA[You may have heard the buzzword Web 2.0 lately. Yet, there is a mis-conception as to what &#8220;Web 2.0&#8243; truely means. At Loadsys, we don&#8217;t really care what the definition is, but rather what the person means when they say it.
Web 2.0 truely means the idea of collaboration between people on the web. User driven [...]]]></description>
			<content:encoded><![CDATA[<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">You may have heard the buzzword Web 2.0 lately. Yet, there is a mis-conception as to what &#8220;Web 2.0&#8243; truely means. At Loadsys, we don&#8217;t really care what the definition is, but rather what the person means when they say it.</font></p>
<p><font style="color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 10pt" color="#333333" face="Arial,Helvetica,sans-serif" size="2">Web 2.0 truely means the idea of collaboration between people on the web. User driven information and communication so to speak. A good example of this are sites like MySpace, a friends communication portal or even Wikipedia, which is a user driven encyclopedia where content is added by anyone all over the world.</font><br />
 <a href="http://blog.loadsys.com/2007/06/26/what-is-this-web-20-jazz/#more-9" class="more-link">(more&#8230;)</a></p>
<span class="akst_link"><a href="http://blog.loadsys.com/?p=9&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_9"  class="akst_share_link">Share This</a>
</span>]]></content:encoded>
			<wfw:commentRss>http://blog.loadsys.com/2007/06/26/what-is-this-web-20-jazz/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
