<?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>Web Hosting Geeks&#039; Blog &#187; CMS</title> <atom:link href="http://webhostinggeeks.com/blog/cms/feed/" rel="self" type="application/rss+xml" /><link>http://webhostinggeeks.com/blog</link> <description>Web Hosting Industry News, Latest Trends, and Analyses.</description> <lastBuildDate>Thu, 24 May 2012 11:11:11 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>Top 9 Ways to Optimize Your WordPress Server for Blazing Fast Speeds</title><link>http://webhostinggeeks.com/blog/wordpress-website-speed-optimization/</link> <comments>http://webhostinggeeks.com/blog/wordpress-website-speed-optimization/#comments</comments> <pubDate>Wed, 08 Feb 2012 16:38:39 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[Cached Headers]]></category> <category><![CDATA[Cached Media]]></category> <category><![CDATA[content]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[eTags]]></category> <category><![CDATA[files]]></category> <category><![CDATA[JS]]></category> <category><![CDATA[optimize database]]></category> <category><![CDATA[Static Media]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=4694</guid> <description><![CDATA[When it comes to content management and coding efficiency, WordPress tends to be one bad mother. Where other content management systems might chug and chortle, WordPress tends to serve up your content with a markedly improved efficiency that makes the folks over at Drupal shiver in their boots. However, just because WordPress is built from [...]]]></description> <content:encoded><![CDATA[<p>When it comes to content management and coding efficiency, <a
href="http://wordpress.org/" target="_blank">WordPress</a> tends to be one bad mother. Where other content management systems might chug and chortle, WordPress tends to serve up your content with a markedly improved efficiency that makes the folks over at <a
href="http://drupal.org/" target="_blank">Drupal</a> shiver in their boots. However, just because WordPress is built from the ground-up to be faster does not mean it is optimized out of the box for your server: In fact, if you neglect to modify a few key parameters early in your blog or websites installation, you may find your content getting stuck in the pipes. This translates to longer load times, and if you’re especially neglectful, unhappy end-users. That’s a fate we’d very much like to help you avoid, so with that in mind, we’ve prepared a few of our top ways in which you can dramatically increase the speed of your already quick WordPress server.<br
/> <span
id="more-4694"></span><br
/> To get the most out of our handwork, we suggest you simply work your way through the list, modifying your server as needed, and skipping the areas you’ve already completed. If you follow our directions to the letter, we promise you’ll emerge with a much faster system—Or your money back! So before you realize we’re doing this at no charge to you, let’s jump straight into the heart of the matter with:</p><h3>1. Serve Your Static Media from a Cookie-Less Domain</h3><p>About 80 to 90% of the time, your users are spending their time loading static content from your WordPress blog. This means that far more than the majority of the time a user is viewing your site, they’re waiting for items like images, stylesheets, scripts, Flash, etc. to load and present themselves on the screen. As such, you can optimize this content to arrive more quickly by telling WordPress to load it all from a cookie free domain. This eliminates a few precious micro-seconds of load time, which may not seem like much, but can really amount to a whopping time loss when added to other delaying issues.</p><p>Thankfully, it’s not hard to set up this kind of arrangement within WordPress. To do so, simply set these two constants within your wp-config.php file as so:</p><p><strong>define(&#8220;WP_CONTENT_URL&#8221;, &#8220;http://static.yourdomain.com&#8221;);</p><p>define(&#8220;COOKIE_DOMAIN&#8221;, &#8220;www.yourdomain.com&#8221;);</strong></p><p>After you’ve done that, just check to be sure you’ve marked “bloginfo( ‘template_directory’ )” to load your static content within your theme files. That’s it, allowing us to move onto point two!<strong></strong></p><h3>2. Set-Up Cached Headers to Expire for Your Static Content</h3><p>Serving up cached media is another great way to reduce load times. Thankfully, creating expiring headers for your static content is also fairly easy to do within WordPress, and can save you a lot of lag-based headaches. The best way to do so is to use the following code form the <a
href="http://html5boilerplate.com/" target="_blank">HTML 5 Boiler Plate</a>. You can append it to your .htaccess file for immediate results. This, essentially, tells your server to expire headers at a future date, saving them in a cached format until that expiration date. So without further ado, here’s the code to get the job done!<br
/> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br
/> <code>&lt;IfModule mod_expires.c&gt;<br
/> ExpiresActive on<br
/> # Perhaps better to whitelist expires rules? Perhaps.<br
/> ExpiresDefault      "access plus 1 month"<br
/> # cache.appcache needs re-requests<br
/> # in FF 3.6 (thx Remy ~Introducing HTML5)<br
/> ExpiresByType text/cache-manifest "access plus 0 seconds"<br
/> # Your document html<br
/> ExpiresByType text/html "access plus 0 seconds"<br
/> # Data<br
/> ExpiresByType text/xml "access plus 0 seconds"<br
/> ExpiresByType application/xml "access plus 0 seconds"<br
/> ExpiresByType application/json "access plus 0 seconds"<br
/> # RSS feed<br
/> ExpiresByType application/rss+xml "access plus 1 hour"<br
/> # Favicon (cannot be renamed)<br
/> ExpiresByType image/x-icon "access plus 1 week"<br
/> # Media: images, video, audio<br
/> ExpiresByType image/gif "access plus 1 month"<br
/> ExpiresByType image/png "access plus 1 month"<br
/> ExpiresByType image/jpg "access plus 1 month"<br
/> ExpiresByType image/jpeg "access plus 1 month"<br
/> ExpiresByType video/ogg "access plus 1 month"<br
/> ExpiresByType audio/ogg "access plus 1 month"<br
/> ExpiresByType video/mp4 "access plus 1 month"<br
/> ExpiresByType video/webm "access plus 1 month"<br
/> # HTC files  (css3pie)<br
/> ExpiresByType text/x-component "access plus 1 month"<br
/> # Webfonts<br
/> ExpiresByType font/truetype "access plus 1 month"<br
/> ExpiresByType font/opentype "access plus 1 month"<br
/> ExpiresByType application/x-font-woff   "access plus 1 month"<br
/> ExpiresByType image/svg+xml "access plus 1 month"<br
/> ExpiresByType application/vnd.ms-fontobject "access plus 1 month"<br
/> # CSS and JavaScript<br
/> ExpiresByType text/css "access plus 1 year"<br
/> ExpiresByType application/javascript "access plus 1 year"<br
/> ExpiresByType text/javascript "access plus 1 year"<br
/> &lt;IfModule mod_headers.c&gt;<br
/> Header append Cache-Control "public"<br
/> &lt;/IfModule&gt;<br
/> &lt;/IfModule&gt;</code><br
/> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p><h3>3. Optimize that Database!</h3><p>Another great way to fix your server up to deliver your WordPress site with the most efficiency is to optimize your database. How does one do this? With mountains and mountains of code that take hours to append—We’re kidding! WordPress makes this unbelievably easy, thanks to a number of free plug-ins. You can search the plug-in database for server optimization, but some of our favorites are <a
href="http://yoast.com/wordpress/optimize-db/">Yoast Optimize DB</a> and <a
href="http://livepage.apple.com/">WP DB Manager</a>. Keep in mind too that most caching plug-ins also help with a lot of this, so you may find most of the workload being taken care of by your already extant caching softwares.</p><h3>4. Use Cached Media As Much As Possible</h3><p>On that note, creating cached .html files saves your server a mountain of database queries, and can easily be accomplished through any number of quality plug-ins. Essentially, these additions turn all those queries into static pages that load easy, saving your viewer from horrendous lag on the front-end. So what plug-ins do we recommend? Thanks for asking! Here are our favorites, though as with the database optimizers, there’s plenty more to be found in the plug-in database!</p><p>Our favorite caching utilities include: <a
href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a>, <a
href="http://wordpress.org/extend/plugins/hyper-cache/">Hyper Cache</a>, and <a
href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Total Cache</a>. These generate .html files, but we also use DB Cache to cache the database queries themselves, saving even more time on the front-end.</p><h3>5. Use a Content Delivery Network</h3><p>We’re quite tremendous fans of the content delivery network. Everything about the technology gets us excited, and though we tend to evangelize the service to everyone we know, adding a CDN solution to your WordPress site is extremely easy, and can really save you a lot of load time. There are several freely available plug-ins that offer a fair amount of content distribution, but if you’re looking for a quality option, you really aren going to need to spend a little. However, we should mention the benefits of signing up for a CDN tend to far outweigh the cons, making the following services every bit as useful as they are expensive. If you’re hung-up on the price, though, we’ve also included a free option!</p><p>Our favorite content delivery providers are: <a
href="http://aws.amazon.com/s3/">Amazon S3</a>, <a
href="http://www.maxcdn.com/">Max CDN</a>, <a
href="http://mediatemple.net/labs/cdn/">Media Temple CDN</a>, and <a
href="http://wordpress.org/extend/plugins/free-cdn/">Free CDN</a>.</p><h3>6. Compress and Adjoin All Those JS and CSS Files Where Possible</h3><p>Generally speaking, it’s a fantastic idea to compress both your JS and CSS files, as this reduces the overall size of your website, and allows for speedier load times at the end-user level. However, if you’re looking to take your optimization to a whole new level, we also strongly suggest you combine the two where possible. Combining multiple files into a single offering can greatly reduce the number of HTTP requests from your web server, saving your viewers precious seconds in load time. And—you guessed it—we do happen to have a number of plug-ins ready to help you out!</p><p>Our favorite JS compressors include <a
href="http://closure-compiler.appspot.com/home">Closure Compiler</a> and <a
href="http://www.minifyjavascript.com/">Minify JavaScript</a>. Our favorite CSS alternatives are <a
href="http://www.minifycss.com/css-compressor/">Minify CSS</a> and <a
href="http://www.csscompressor.com/">CSS Compressor</a>. Alternatively, you can also use the wp minify plug-in to combine your JS and CSS files directly from WordPress.</p><h3>7. Compress Your Image Files</h3><p>On the subject of compression, it’s also a pretty fantastic idea to compress your images, too. This reduces the overall size of your website, and can knock off quite a few moments during your site’s load time. The plug-in we favor uses the API of the smush.it site to compress your images for optimized use. It’s a brilliant bit of coding, and we can’t speak highly enough of it. So without further ado, go ahead and snag <a
href="http://wordpress.org/extend/plugins/wp-smushit/">WP Smush IT</a> to increase the speed of your site. You can also use CSS Sprite to reduce the number of HTTP requests, if you’re feeling particularly gung-ho.</p><h3>8. Compress Your Static Content into a gZip</h3><p>One more compression tip, and then we promise we’ll stop. You see, just as it’s generally a good idea to compress your CSS, JS, and image files, so is it also a great idea to shrink down all of that extraneous static content we mentioned earlier. Just as most of your load time comes from grabbing this junk, so too can it be relieved by downsizing the overall cost of the HTTP request. Thankfully, there’s an incredibly simple way to do this within WordPress: And taking the time to add the following code snippet can dramatically reduce your wait times. So without any more babbling, here’s the code you’ll want to add to your .htaccess file. In case you were wondering, this is yet another bit of genius straight from the HTML5 Boiler Plate:<br
/> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br
/> <code>&lt;IfModule mod_deflate.c&gt;<br
/> # force deflate for mangled headers<br
/> # developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/<br
/> &lt;IfModule mod_setenvif.c&gt;<br
/> &lt;IfModule mod_headers.c&gt;<br
/> SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding<br
/> RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding<br
/> &lt;/IfModule&gt;<br
/> &lt;/IfModule&gt;<br
/> # HTML, TXT, CSS, JavaScript, JSON, XML, HTC:<br
/> &lt;IfModule filter_module&gt;<br
/> FilterDeclare   COMPRESS<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/html<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/css<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/plain<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/xml<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $text/x-component<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/javascript<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/json<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/xml<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/xhtml+xml<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/rss+xml<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/atom+xml<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/vnd.ms-fontobject<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $image/svg+xml<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $application/x-font-ttf<br
/> FilterProvider  COMPRESS  DEFLATE resp=Content-Type $font/opentype<br
/> FilterChain     COMPRESS<br
/> FilterProtocol  COMPRESS  DEFLATE change=yes;byteranges=no<br
/> &lt;/IfModule&gt;<br
/> &lt;IfModule !mod_filter.c&gt;<br
/> # Legacy versions of Apache<br
/> AddOutputFilterByType DEFLATE text/html text/plain text/css application/json<br
/> AddOutputFilterByType DEFLATE application/javascript<br
/> AddOutputFilterByType DEFLATE text/xml application/xml text/x-component<br
/> AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml<br
/> AddOutputFilterByType DEFLATE image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype<br
/> &lt;/IfModule&gt;<br
/> &lt;/IfModule&gt;</code><br
/> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p><h3>9. Disable eTags</h3><p>eTags are generally a great way to aide the development of cached content within WordPress. However, if you’ve shrunk down all of your media and are using expiration headers for the majority of your static content, having them enabled isn’t nearly as good of an idea. As such, you should turn all of them off by adding the following line of code to your aforementioned .htaccess file. It’s a single line:</p><p><code>File ETag none</code></p><p>and with all the other improvements we’ve made during the course of this article, it will tie the bow on your load time savings.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/why-a-cms-is-essential-for-doing-online-business-in-the-21st-century/" title="Why a CMS is Essential for Doing Online Business in the 21st Century">Why a CMS is Essential for Doing Online Business in the 21st Century</a></li><li><a
href="http://webhostinggeeks.com/blog/the-basics-of-starting-a-blog/" title="The Basics of Starting a Blog">The Basics of Starting a Blog</a></li><li><a
href="http://webhostinggeeks.com/blog/making-your-own-custom-joomla-cms-theme/" title="Making Your Own Custom Joomla CMS Theme ">Making Your Own Custom Joomla CMS Theme </a></li><li><a
href="http://webhostinggeeks.com/blog/a-closer-look-at-phpcow/" title="A Closer Look at PHPCow ">A Closer Look at PHPCow </a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-themes-new-design-portfolio-sites/" title="WordPress Themes vs. Designing From Scratch vs. Portfolio Sites">WordPress Themes vs. Designing From Scratch vs. Portfolio Sites</a></li><li><a
href="http://webhostinggeeks.com/blog/optimize-wordpress-search-engines/" title="Top 4 Ways to Optimize WordPress for Search Engines">Top 4 Ways to Optimize WordPress for Search Engines</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-website-hosting/" title="WordPress Website and WordPress Hosting">WordPress Website and WordPress Hosting</a></li><li><a
href="http://webhostinggeeks.com/blog/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-blogger/" title="WordPress vs. Blogger">WordPress vs. Blogger</a></li><li><a
href="http://webhostinggeeks.com/blog/adobe-dreamweaver-cs55-review/" title="Adobe Dreamweaver CS5.5 Review">Adobe Dreamweaver CS5.5 Review</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/wordpress-website-speed-optimization/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Top 4 Ways to Optimize WordPress for Search Engines</title><link>http://webhostinggeeks.com/blog/optimize-wordpress-search-engines/</link> <comments>http://webhostinggeeks.com/blog/optimize-wordpress-search-engines/#comments</comments> <pubDate>Mon, 16 Jan 2012 09:14:46 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[meta tags]]></category> <category><![CDATA[permalinks]]></category> <category><![CDATA[search engines]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=4411</guid> <description><![CDATA[We like WordPress for a lot of reasons: It’s easy to use, it manages our content in a way we never could on our own, and it also presents a pretty nice front, what with all those loose themes running around. We’re also tremendous fans of its ability to optimize our sites for search engines [...]]]></description> <content:encoded><![CDATA[<p>We like <a
href="http://wordpress.org/" target="_blank">WordPress</a> for a lot of reasons: It’s easy to use, it manages our content in a way we never could on our own, and it also presents a pretty nice front, what with all those loose themes running around. We’re also tremendous fans of its ability to optimize our sites for search engines with little to no effort on our end. However, just because a few plug-ins can handle most of the load, does not mean we’re taking the most steps possible to fully maximize our Google-spotting potential. In fact, WordPress’ functionality in terms of SEO has only been scratched, if you’re still simply relying on the All In One SEO pack. There are plenty more steps (all of which are extremely simple) you can take to ensure your WordPress-powered website is noticed by such heavyweight search engines as <a
href="http://google.com/" target="_blank">Google</a>, <a
href="http://www.yahoo.com/" target="_blank">Yahoo</a>, <a
href="http://www.bing.com/" target="_blank">Bing</a>, and <a
href="http://www.dogpile.com/" target="_blank">DogPile</a>.<br
/> <span
id="more-4411"></span><br
/> Our best suggestion is that you review our methods below, and then work your hardest to integrate them into your daily workflow. It’s much harder to SEO an entire mountain of content once it has been created. It’s much easier, however, to create SEO-content from the get-go. With that fair warning in mind, may we now present our top ways to optimize your WordPress site for search engine notoriety.<strong></strong></p><p><strong>1. Tell WordPress to Rearrange Itself</strong></p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/all-in-one-seo-pugin.jpg" alt="all in one seo pugin" title="all in one seo pugin" width="660" height="222" class="alignnone size-full wp-image-4428" /></p><p>As much as we like WordPress, we have noticed it has one or two nasty habits. The most notable we’ve come across is its tendency to put the name of the website itself in front of the title of the blog post. This is problematic for a number of reasons, but we would simply like to mention right off the bat that there is a quick fix: So, in other words, don’t panic and bring your towel. But why is this such a big deal? Well, for starters &#8211; search engines use your titles to determine what the blog post is actually about. Typically, a search engine will only crawl (that means search and record) the first 50 to 64 characters of your title, too. With that in mind, having your blog name in front of your blog post title can cause some problems. You’ll want to reverse this, that way sites like Google get an accurate picture of your newly minted content, rather than a repeat of the blog’s name. A quick way to do this is to swap the title and name sequence within the <a
href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All In One SEO</a> pack. On another note, if you don’t have this plug-in yet, you should go ahead and snag it, as we’ll be referencing it often.<strong></strong></p><p><strong>2. Create Unique and Accurate Meta Tags</strong></p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/meta-tags.jpg" alt="meta tags" title="meta tags" width="297" height="230" class="alignnone size-full wp-image-4430" /></p><p>A case in point, we will again be using All In One SEO with this point, as well. The idea here is that the automatically created meta tags published by WordPress are typically not specific enough to warrant any interest from the larger search engines. Usually, these self-created tags are somewhat generic, and lack any kind of specificity sites like Google desire. With that in mind, the easiest way to correct the problem is to add meta tags yourself. How does one go about this? Well, the easiest method is through that handy plug-in we mentioned earlier. Using the keywords slot, you’re free to add as many meta tags as your heart desires. Just try to be specific, avoiding generic terms like “iPhone,” “Android,” or “Mac.”</p><p><strong>3. Stick Around with Permalinks</strong></p><p>When WordPress creates a new post, it typically does so with a URL that’s less-than desirable for search engine optimization. This is because, more often than not, WordPress attaches an incomprehensible string of numbers to each and every new piece of content, allowing URL crawlers no added access to what in the heck your post is about. However, this isn’t hard to change, and typically only requires a quick jaunt over to the WordPress admin panel.</p><p>Within this panel, look for the settings tab, and then &#8220;Permalinks.&#8221;</p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/setting-permalinks.jpg" alt="setting permalinks" title="setting permalinks" width="370" height="165" class="alignnone size-full wp-image-4431" /></p><p>You’ll see a list of various URL methods, but the only one you want is called &#8220;Custom Structure.&#8221; Yes, you’re going to have to enter something here, but lucky for you, we’ve already written the appropriate string. Click this box, and then type: <strong>/%category%/%postname%</strong></p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/custom-structure-setting.jpg" alt="custom structure setting" title="custom structure setting" width="611" height="267" class="alignnone size-full wp-image-4434" /></p><p>Now, every time you create a new post, it will be listed in the URL as http://sample.com/your-category/the-proper-post-name. This makes your post infinitely more readable to search engines, and can go a long way toward fully search engine optimizing your content.</p><p><strong>4. Make Meaningful Connections</strong></p><p>Another fantastic way to optimize your site for search engine use is to link related sites and content pieces within your article.</p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/link-existing-content.jpg" alt="link existing content" title="link existing content" width="479" height="221" class="alignnone size-full wp-image-4436" /></p><p>This means that words like “phone” should be linked to other articles about similar models, operating systems, etc. Your goal is to create a map within the blog post that directs the user—and search engines—to other content that’s closely related to your own. With that in mind, blindly adding links with no regard for what they mean will not help you at all. If you’ve written an article about how to cook a turkey, and you link it to an animal rights page, Google won’t get much out of it, and may even scrap your site in its ratings. There’s also a limit on how many links Google is willing to stand. If you attach a URL to every word in the post, most search engines will treat it like spam.</p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/wordpress-related-posts.jpg" alt="wordpress related posts plugin" title="wordpress related posts plugin" width="610" height="295" class="alignnone size-full wp-image-4443" /></p><p>A great way to avoid this is to use a <a
href="http://wordpress.org/extend/plugins/wordpress-23-related-posts-plugin/" target="_blank">&#8220;Related Posts&#8221; plug-in</a>. There are about a thousand in the WordPress plug-in library, so we won’t offer any specific suggestions. Just know that these create a separate box for these helpful links, alleviating the need to bugger up your viewers’ reading experience with bothersome links. Likewise, there are plenty of plug-ins out there that will automatically generate in-text links, should you decide you’d rather have plenty of those. Typically, they work quite well, but the only way to guarantee your optimization is to add these links yourself.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li><a
href="http://webhostinggeeks.com/blog/the-13-best-free-wordpress-plugins/" title="The 13 Best Free WordPress Plugins">The 13 Best Free WordPress Plugins</a></li><li><a
href="http://webhostinggeeks.com/blog/add-ons-web-hosting-business/" title="Add-Ons That Will Save Your Web Hosting Business">Add-Ons That Will Save Your Web Hosting Business</a></li><li><a
href="http://webhostinggeeks.com/blog/seo-101-focusing-on-backlinks/" title="SEO 101 : Focusing on Backlinks">SEO 101 : Focusing on Backlinks</a></li><li><a
href="http://webhostinggeeks.com/blog/two-basic-steps-to-search-engine-optimization/" title="Two Basic Steps to Search Engine Optimization">Two Basic Steps to Search Engine Optimization</a></li><li><a
href="http://webhostinggeeks.com/blog/introducing-modx-cms-%e2%80%93-the-ultimate-in-flexibility-and-compatibility/" title="Introducing MODx CMS – The Ultimate in Flexibility and Compatibility">Introducing MODx CMS – The Ultimate in Flexibility and Compatibility</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-and-search-engine-optimization-facts-to-consider/" title="Wordpress and Search Engine Optimization &#8211; Facts to Consider">Wordpress and Search Engine Optimization &#8211; Facts to Consider</a></li><li><a
href="http://webhostinggeeks.com/blog/search-engine-optimization-keywords-vs-content/" title="Search Engine Optimization: Keywords vs. Content">Search Engine Optimization: Keywords vs. Content</a></li><li><a
href="http://webhostinggeeks.com/blog/search-engine-optimization-%e2%80%93-the-basics-explained/" title="Search Engine Optimization – The Basics Explained">Search Engine Optimization – The Basics Explained</a></li><li><a
href="http://webhostinggeeks.com/blog/locate-the-perfect-seo-expert/" title="Locate the Perfect SEO Expert">Locate the Perfect SEO Expert</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/optimize-wordpress-search-engines/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Website and WordPress Hosting</title><link>http://webhostinggeeks.com/blog/wordpress-website-hosting/</link> <comments>http://webhostinggeeks.com/blog/wordpress-website-hosting/#comments</comments> <pubDate>Wed, 11 Jan 2012 08:29:23 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Web Hosting Types]]></category> <category><![CDATA[blog hosting]]></category> <category><![CDATA[Blogger]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=4329</guid> <description><![CDATA[If we had known WordPress was going to be as popular as it is now, we would have made sure to buy some stock back in the day, assuming the company was public. That being said, nothing is hotter than the content management software right now, especially for bloggers and news-based websites. And why shouldn’t [...]]]></description> <content:encoded><![CDATA[<p>If we had known WordPress was going to be as popular as it is now, we would have made sure to buy some stock back in the day, assuming the company was public. That being said, nothing is hotter than the content management software right now, especially for bloggers and news-based websites.</p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/number-of-wp-websites.jpg" alt="number of wp websites" title="number of wp websites" width="660" height="172" class="alignnone size-full wp-image-4350" /><br
/> And why shouldn’t it be? WordPress makes it incredibly simple to manage, produce, and distribute content on the Internet through your site. And at the heart of things, that’s really what the Web is all about, right? Here are some stats about what people do on wordpress:<br
/> <span
id="more-4329"></span></p><p><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/wordpress-stats1.jpg" alt="wordpress stats" title="wordpress stats" width="660" height="361" class="alignnone size-full wp-image-4354" /><br
/> Philosophical pander aside, though, there are a few things you’ll want to really look for in a web host when you’re shopping for WordPress compliance. In fact, if you don’t snag just the right features, you may find your CMS blog in high water before the ink is even dry on your contract. With that in mind, here are a few of the top features you want in a web host with WordPress in mind, as well as a few quality places to find WordPress hosting, beginning with:</p><p><strong>In-House WordPress Transfers.</strong> Often times, we see webmasters start a blog on the traditional WordPress site, only to suddenly find their content inundated with fans and adoring readers. If you’re in a similar boat, and are looking to make the swap to a truly dedicated domain and website, you’ll want to be sure of a few things. First and foremost, you’ll want to be sure your new web host can directly transfer your domain from WordPress, establishing it as a proprietary DNS. From there, you’ll also want to ensure they can port most (if not all) of your content. You worked hard to create it, so why should you have to leave it behind on that old, stuffy WordPress blog? If your new web host can’t help you with your baggage, it’s time to shop more.</p><p><strong>Speed and Performance.</strong> On a similar note, if you’re swapping your old WordPress account for a dedicated number—or even if you’re just starting from scratch—you’ll want to find a web host that offers totally comprehensive performance and top-notch hardware. WordPress is a lightweight web application, but you’re still running an additional software engine over the server’s operating system. This requires processing power, and if you go with an anemic web host, you may find your blog is no better off with a dedicated location than with your original WordPress spot. And besides, signing to a web host is like buying a new car. If you have the money, why not spring for that souped-up model that packs a real punch? Get the most bang for your dollar and look for speed in a web host.</p><p><strong>Easy Installation.</strong> Lastly, you’ll want to be sure your web host can provide an easy WordPress installation for your site. A good web host makes this a one or two click process, max. If your web host instead wants you to do a long string of complicated terminal commands that may jeopardize the entire system, it’s time to move elsewhere and cancel the contract.</p><p>That’s by no means a survival guide for WordPress shopping where web hosts are concerned, but instead of talking about finding a web host until the cows come home, we thought we might instead offer up a few of our choice suggestions. Beginning with:</p><h3>InMotion Web Hosting</h3><p><a
href="http://webhostinggeeks.com/go/index.php?host=InmotionHosting"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/inmotionhosting-logo1.jpg" alt="inmotionhosting logo" title="inmotionhosting logo" width="300" height="77" class="alignnone size-full wp-image-4359" /></a></p><p>Customer Ratings &#038; Reviews</p><p><a
href="http://webhostinggeeks.com/user-reviews/inmotion-hosting/"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/inmotion-reviews.jpg" alt="inmotion reviews" title="inmotion reviews" width="520" height="133" class="alignnone size-full wp-image-4368" /></a></p><p>As an industry leading web hosting provider, <a
href="http://webhostinggeeks.com/go/index.php?host=InmotionHosting" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">InMotion Hosting</a> provides all of the features we mentioned above and more. With the company your WordPress installation takes only a click, thanks to the brilliantly inventive, server-side gem Fantastico. Furthermore, InMotion also boasts secure suPHP, the latest versions of both MySQL 5 and PHP 5, as well as free domain transfer. If you’re looking to port over your old WordPress account, like we talked about earlier, InMotion also makes it a smooth process, bringing along your old content and name without any additional hassle on your part. All in all, InMotion is a brilliant (and cheap, clocking in at $5.95 a month) option for your WordPress-based site.</p><p><strong>Visit <a
href="http://webhostinggeeks.com/go/index.php?host=InmotionHosting" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">www.inmotionhosting.com</a> or read our <a
href="http://webhostinggeeks.com/user-reviews/inmotion-hosting/">Inmotion Hosting review</a>.</strong></p><h3>HostGator</h3><p><a
href="http://webhostinggeeks.com/go/index.php?host=HostGator"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/hostgator.jpg" alt="hostgator" title="hostgator" width="320" height="120" class="alignnone size-full wp-image-4392" /></a></p><p>Customer Ratings &#038; Reviews</p><p><a
href="http://webhostinggeeks.com/user-reviews/hostgator/"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/hostgator-reviews2.jpg" alt="hostgator reviews" title="hostgator reviews" width="520" height="133" class="alignnone size-full wp-image-4374" /></a></p><p>Another industry veteran, <a
href="http://webhostinggeeks.com/go/index.php?host=HostGator" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">HostGator</a> offers even more features than InMotion, and at a lower price, to boot. Plans with the provider begin at only $3.96 a month, and come loaded with 100% WordPress compatibility, a one-click installation of the latest WordPress software, 99.9% up-time, and a full 45 day money back guarantee. Another feature unique to HostGator is its focus on unlimited features. With the provider, users can enjoy fully unlimited disc space and bandwidth, even at the lowest possible plan. And, of course, signing with the provider also earns you the latest versions of Apache, MySQL and PHP. Best of all, transferring your old WordPress site to the provider is easy-peasy using their ready made transfer service.</p><p><strong>Visit <a
href="http://webhostinggeeks.com/go/index.php?host=HostGator" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">www.hostgator.com</a> or read our <a
href="http://webhostinggeeks.com/user-reviews/hostgator/">HostGator review</a>.</strong></p><h3>WebHostingHub</h3><p><a
href="http://webhostinggeeks.com/go/index.php?host=WebHostingHub"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/webhostinghub.jpg" alt="webhostinghub" title="webhostinghub" width="320" height="120" class="alignnone size-full wp-image-4385" /></a></p><p>Customer Ratings &#038; Reviews</p><p><a
href="http://webhostinggeeks.com/user-reviews/web-hosting-hub/"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/webhostinghub-reviews.jpg" alt="webhostinghub reviews" title="webhostinghub reviews" width="520" height="133" class="alignnone size-full wp-image-4373" /></a></p><p>Last, though certainly not least, is <a
href="http://webhostinggeeks.com/go/index.php?host=WebHostingHub" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">WebHostingHub</a>. The provider offers unparalleled support for the modern WordPress blogger, besting both HostGator and InMotion in our user review polls. First and foremost, those who choose to sign with the provider gain the full benefits of the latest software, including Apache, MySQL 5, and PHP5. And, of course, all of this technology comes ready loaded with a one-click WordPress installation that requires no additional effort on your part. Add to this about 1,000 unique and custom-made WordPress themes to choose from, as well as simple transfer of old WordPress materials, and you’re looking at a truly impressive offering. However, WebHostingHub is also notable for its unique dedication to hardware optimization. The provider has taken great pains to fully prepare its systems for WordPress, including a full PHP caching overhaul that maximizes available RAM, a reduction in overall I/O requests, and blazing fast base connectivity. All in all, if you’re looking for an incredible, simple, and efficient way to host your new WordPress site, there’s no better option than WebHostingHub.</p><p><strong>Visit <a
href="http://webhostinggeeks.com/go/index.php?host=WebHostingHub" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">www.webhostinghub.com</a> or read our <a
href="http://webhostinggeeks.com/user-reviews/web-hosting-hub/">WebHostingHub review</a>.</strong></p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/wordpress-blogger/" title="WordPress vs. Blogger">WordPress vs. Blogger</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-themes-new-design-portfolio-sites/" title="WordPress Themes vs. Designing From Scratch vs. Portfolio Sites">WordPress Themes vs. Designing From Scratch vs. Portfolio Sites</a></li><li><a
href="http://webhostinggeeks.com/blog/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-plugins-making-most-of-the-your-site/" title="WordPress Plugins – Making the Most of the Your Site">WordPress Plugins – Making the Most of the Your Site</a></li><li><a
href="http://webhostinggeeks.com/blog/alternative-to-wordpress-content-management-systems/" title="Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist">Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist</a></li><li><a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/" title="An Overview of PHP-Based Content Management Systems Beyond WordPress">An Overview of PHP-Based Content Management Systems Beyond WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/transition-content-management-system/" title="When to Transition to a Content Management System">When to Transition to a Content Management System</a></li><li><a
href="http://webhostinggeeks.com/blog/drupal-7-to-further-simplify-website-management/" title="Drupal 7 to Further Simplify Website Management">Drupal 7 to Further Simplify Website Management</a></li><li><a
href="http://webhostinggeeks.com/blog/new-content-management-system-released-by-typo-3/" title="New Content Management System Released by TYPO 3">New Content Management System Released by TYPO 3</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-recovering-from-ddos-attack/" title="WordPress Recovering from DDoS Attack">WordPress Recovering from DDoS Attack</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/wordpress-website-hosting/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Fastest WordPress Hosting in Town</title><link>http://webhostinggeeks.com/blog/fastest-wordpress-hosting/</link> <comments>http://webhostinggeeks.com/blog/fastest-wordpress-hosting/#comments</comments> <pubDate>Sun, 01 Jan 2012 09:45:54 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[Web Hosting Types]]></category> <category><![CDATA[bandwidth]]></category> <category><![CDATA[HostGator]]></category> <category><![CDATA[InMotion]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[WebHostingHub]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=4556</guid> <description><![CDATA[In case you were unaware, services like Google and Yahoo are built around the concept of search engine optimization—they are search engines, after all. The basic idea here is that you want your website to rank highly with all of the various search engines, as most viewers aren’t likely to scan through fifteen pages of [...]]]></description> <content:encoded><![CDATA[<p>In case you were unaware, services like <a
href="http://www.google.com/" target="_blank">Google</a> and <a
href="http://www.yahoo.com/" target="_blank">Yahoo</a> are built around the concept of search engine optimization—they are search engines, after all. The basic idea here is that you want your website to rank highly with all of the various search engines, as most viewers aren’t likely to scan through fifteen pages of links just to find your article. No, you want your media to appear right at the top, optimally at the number one spot. How is this accomplished? Through a variety of methods, Young Grasshopper, and if you’ll stick with us, we’ll go ahead and give you the wax-on-wax-off.<span
id="more-4556"></span></p><p>To begin with, we’re going to assume you’re using a <a
href="http://wordpress.org/" target="_blank">WordPress</a> based site. Why? Because if you aren’t, and your top priority is search engine optimization, you really should be. WordPress makes it quick, painless, and relatively cheap to SEO streamline your site. This is accomplished thorugh a variety of essential plug-ins which do such various tasks as change your URL codes, add meta-tags, create keyword line-ups for search engines to crawl, etc. It’s a brilliant way to go about maximizing your site’s potential, but if you’re looking to get the most out of your WordPress site, you should know it’s not all sunshine and chuckles. In fact, WordPress has one noticeable drawback, which we’ll be attending to with the rest of this article, so stay tuned!</p><h3>Speed Demons in our Closets</h3><p>You see, WordPress is what we in the business call a content management software. It takes all of the various articles, images, posts, etc. that you create, and displays it in a pre-set fashion that jives will with themes. This makes it blazingly fast and efficient to create new content, and all without having to write a single line of code. Obviously, this is a tremendous boon for the runoff the mill blogger, who would rather not learn a real skill like <a
href="http://www.w3schools.com/html/html_intro.asp" target="_blank">HTML coding</a>.</p><p>However, there’s one downside to all this ease-of-creation stuff: WordPress is a real bandwidth hog. Sure, it makes it a breeze to add new media, but all of that coded forefront comes with a price tag. Typically, users will experience slightly more load time with a WordPress powered site than with a non-WordPress branded one. Why is this a problem? you might be asking. Usually, it’s not at all: We’re really talking a difference of perhaps half a second to maybe a full second. However, when it comes to search engine optimization, those bare few seconds could be all it takes to put your site in the tank. Don’t believe us? Consider this.</p><p>Search engines collect data using software “spiders.” These little critters are designed to do one thing, and do it well: Poll web pages and collect data about them. Typically, they accomplish this through peeping at site text, meta-tags, etc. to gather up a gist that can be used to create a ranking. However, speed is also very heavily considered in a site’s automatic rank. Spiders are busy little buggers, and if your site takes until Christmas to return the data they need, they’ll hike it up out of town and disappear. You heard us right: If your site is too slow, search engines are likely to skip it entirely, or at the very least, file it much further down the line than you’d like. You shouldn’t let this get you down, though. There are steps you can take to prevent this, especially if you’re using a WordPress-powered site—and they all begin with the hosting itself!</p><h3>Top Hosting Providers for WordPress</h3><p>To secure the best possible search engine ranking for your data, you’re going to need a good host. The hosting provider, after all, is the source of your bandwidth, disc space, and net presence. Without it, you’re sunk. If you’re looking for a speedy and efficient way to host your WordPress site, we’ve even got a few suggestions lined-up and ready to roll. Firstly, consider—</p><h3>Web Hosting Hub</h3><p><a
href="http://webhostinggeeks.com/go/index.php?host=WebHostingHub"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/webhostinghub.jpg" alt="webhostinghub" title="webhostinghub" width="320" height="120" class="alignnone size-full wp-image-4385" /></a></p><p>Customer Ratings &#038; Reviews</p><p><a
href="http://webhostinggeeks.com/user-reviews/web-hosting-hub/"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/webhostinghub-reviews.jpg" alt="webhostinghub reviews" title="webhostinghub reviews" width="520" height="133" class="alignnone size-full wp-image-4373" /></a><br
/> We like these guys for a number of reasons. First and foremost, they’re a tremendous bang for your dollar, as all of their plans come with unlimited support for disk space, bandwidth, and websites. They also offer one of the best technical support services in the business, guaranteeing they’ll be able to solve any WordPress problems that may arise. On the subject of WordPress, they also offer such amenities as one-click transfer of existing WordPress data, a free domain name with a new WordPress plan, and a wealth of themes to choose from. All in all, they’re a solid option for the speed concerned WordPress blogger.</p><p><strong>Visit <a
href="http://webhostinggeeks.com/go/index.php?host=WebHostingHub" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">www.webhostinghub.com</a> or read our <a
href="http://webhostinggeeks.com/user-reviews/web-hosting-hub/">WebHostingHub review</a>.</strong></p><h3>InMotion Hosting</h3><p><a
href="http://webhostinggeeks.com/go/index.php?host=InmotionHosting"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/inmotionhosting-logo1.jpg" alt="inmotionhosting logo" title="inmotionhosting logo" width="300" height="77" class="alignnone size-full wp-image-4359" /></a></p><p>Customer Ratings &#038; Reviews</p><p><a
href="http://webhostinggeeks.com/user-reviews/inmotion-hosting/"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/inmotion-reviews.jpg" alt="inmotion reviews" title="inmotion reviews" width="520" height="133" class="alignnone size-full wp-image-4368" /></a></p><p>These guys offer a similar bevy of features that we greatly appreciate, including a comparable amount of unlimited support for both bandwidth and disc space. They also offer a wealth of WordPress friendly features, including a similar one-click transfer and a solid mountain of support files to help get you up to speed on how to operate the CMS.</p><p><strong>Visit <a
href="http://webhostinggeeks.com/go/index.php?host=InmotionHosting" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">www.inmotionhosting.com</a> or read our <a
href="http://webhostinggeeks.com/user-reviews/inmotion-hosting/">Inmotion Hosting review</a>.</strong></p><h3>HostGator</h3><p><a
href="http://webhostinggeeks.com/go/index.php?host=HostGator"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/hostgator.jpg" alt="hostgator" title="hostgator" width="320" height="120" class="alignnone size-full wp-image-4392" /></a></p><p>Customer Ratings &#038; Reviews</p><p><a
href="http://webhostinggeeks.com/user-reviews/hostgator/"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2012/01/hostgator-reviews2.jpg" alt="hostgator reviews" title="hostgator reviews" width="520" height="133" class="alignnone size-full wp-image-4374" /></a></p><p>If you haven&#8217;t heard of HostGator yet, we’re guessing you haven’t been in the business long. They’re legends in the field, and as such, the offer a near perfect storm of WordPress performance and features. With plans beginning under four dollars with an heap of benefits, they’re a tremendous value for anyone looking to quickly set-up and even more quickly manage a WordPress site.</p><p><strong>Visit <a
href="http://webhostinggeeks.com/go/index.php?host=HostGator" target="_blank" onClick="_gaq.push(['_trackPageview', '/Lead/Blog.php']);">www.hostgator.com</a> or read our <a
href="http://webhostinggeeks.com/user-reviews/hostgator/">HostGator review</a>.</strong></p><p>However, when it comes to WordPress, we really can’t recommend anyone higher than <a
href="http://www.webhostinghub.com/wordpress-hosting.html" target="_blank">WebHostingHub WordPress Hosting</a>. They’ve consistently ranked the highest in our user polls, and offer the most advanced level of WordPress support. This includes servers that run suPHP, which allows for speedier and more secure connections, PHP5, MySQL5, and PHP caching. All in all, they’re an unbelievably fast offering that’s guaranteed to up your website rankings!</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/introducing-modx-cms-%e2%80%93-the-ultimate-in-flexibility-and-compatibility/" title="Introducing MODx CMS – The Ultimate in Flexibility and Compatibility">Introducing MODx CMS – The Ultimate in Flexibility and Compatibility</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-and-search-engine-optimization-facts-to-consider/" title="Wordpress and Search Engine Optimization &#8211; Facts to Consider">Wordpress and Search Engine Optimization &#8211; Facts to Consider</a></li><li><a
href="http://webhostinggeeks.com/blog/a-worthy-cms-battle-joomla-vs-wordpress/" title="A Worthy CMS Battle: Joomla vs. WordPress">A Worthy CMS Battle: Joomla vs. WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/optimize-wordpress-search-engines/" title="Top 4 Ways to Optimize WordPress for Search Engines">Top 4 Ways to Optimize WordPress for Search Engines</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-website-hosting/" title="WordPress Website and WordPress Hosting">WordPress Website and WordPress Hosting</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-blogger/" title="WordPress vs. Blogger">WordPress vs. Blogger</a></li><li><a
href="http://webhostinggeeks.com/blog/the-13-best-free-wordpress-plugins/" title="The 13 Best Free WordPress Plugins">The 13 Best Free WordPress Plugins</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-plugins-making-most-of-the-your-site/" title="WordPress Plugins – Making the Most of the Your Site">WordPress Plugins – Making the Most of the Your Site</a></li><li><a
href="http://webhostinggeeks.com/blog/the-5-best-shared-web-hosting-account-deals-this-week/" title="The 5 Best Shared Web Hosting Account Deals This Week">The 5 Best Shared Web Hosting Account Deals This Week</a></li><li><a
href="http://webhostinggeeks.com/blog/cheap-quality-web-hosts/" title="A Look at Dirt Cheap, Quality, Web Hosts">A Look at Dirt Cheap, Quality, Web Hosts</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/fastest-wordpress-hosting/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress vs. Blogger</title><link>http://webhostinggeeks.com/blog/wordpress-blogger/</link> <comments>http://webhostinggeeks.com/blog/wordpress-blogger/#comments</comments> <pubDate>Fri, 09 Dec 2011 07:26:50 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Blogger]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=3392</guid> <description><![CDATA[WordPress and Blogger are both popular websites on the Internet that are used by millions of people. These two websites both share something in common; they offer a platform and tools for people to create their very own blog sites. If you are a fan of blogging, not matter what you happen to be blogging [...]]]></description> <content:encoded><![CDATA[<p>WordPress and Blogger are both popular websites on the Internet that are used by millions of people. These two websites both share something in common; they offer a platform and tools for people to create their very own blog sites. If you are a fan of blogging, not matter what you happen to be blogging about, these two websites would both be ideal for you. However, while both of these websites have a lot in common, they are also different in many ways which leads people to wonder which is better. Some people prefer <a
href="http://wordpress.org/" target="_blank">WordPress</a> and some people prefer <a
href="http://www.blogger.com" target="_blank">Blogger</a> Below is the table with the main features and we will discuss what each website has to offer.<span
id="more-3392"></span></p><p><strong>Main Features of Blogger and WordPress</strong></p><p><a
href="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2011/12/blogger-wordpress-features.jpg"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2011/12/blogger-wordpress-features.jpg" alt="blogger-wordpress-features" title="blogger-wordpress-features" width="630" height="445" class="alignnone size-full wp-image-3404" /></a></p><p><strong>WordPress </strong></p><p><a
href="http://wordpress.org/"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2011/12/wordpress-logo.jpg" alt="wordpress-logo" title="wordpress-logo" width="300" height="186" class="alignnone size-full wp-image-3407" /></a></p><p>WordPress is a free platform that allows users to enjoy all of their blogging needs. WordPress was first introduced in 2003 and has increasingly gained popularity over the years. Aside from gaining popularity, there have also been many updates to WordPress so that it is up to date with what users want to have. The creator ensures that the features of WordPress are user friendly and very helpful with people who use the site for their blog. Some of the many features that WordPress comes with include:</p><ul><li>Various Themes</li><li>100% Free</li><li>Tons of Accessible Plugins</li></ul><p>With various themes, you will be able to change the look and feel of your WordPress website as much as you want. Themes are a necessity because they catch the eyes of the viewers who are visiting your website. Not to mention, you will be able to find an abundance of free themes for your WordPress website. Having access to free themes can come in handy because it is a way to spice up your page and make it unique without having to spend money. While there are free themes available, some advanced themes and special design themes may cost money but it is entirely your choice as to whether or not you want to spend any money on your WordPress theme.</p><p>It is also good that using WordPress is free. You do not have to pay to sign up or create a WordPress account. It is nice to be able to start a blog website without having to spend any money in the process. If you want your website on WordPress to be hosted, you may have to pay for web hosting but you will never have to pay to create a WordPress account or to use the website and create your very own blog.</p><p>Being able to use different plugins can come in handy for your WordPress website too. There are all tops of plugins that do different things for the website. For example, there is a plugin that, if used properly, will make your website run faster. This is important because people visiting your page will be irritated by slow loading times. Having a fast running website is very important and these plugins can do that for you. There is an extensive list of plugins that are compatible with WordPress. You can easily search for these Plugins online to find out more information about what types of plugins will help your website and its productivity.</p><p><strong>Blogger</strong></p><p><a
href="http://www.blogger.com"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2011/12/blogger-logo.png" alt="blogger-logo" title="blogger-logo" width="300" height="91" class="alignnone size-full wp-image-3409" /></a></p><p>Blogger, like WordPress, is perfect for all of your blogging needs. Blogger was created more than five years ago and Google bought the website by 2003. As you can tell, the website has been around for quite some time and within the several years of its existence, it has changed for the better, so that the users would enjoy all of the features that come along with using Blogger for their blogging wants and needs. Some of the best features of Blogger include:</p><ul><li>100% Free</li><li>Simple Navigation System</li><li>Free Space for Pictures</li></ul><p>Blogger is completely free which is great for people who do not want to put out any extra money to blog on the website. Because creating a blog on Blogger is free, anyone can use it, without worrying about charges or hidden fees. The web hosting for Blogger is also free which is an additional bonus. The URL of your blog will be the domain name you choose along with blogspot.com.</p><p>The simple navigation system on Blogger makes creating a blog simple and easy for just about anyone who uses the site. Having a simple navigation system will allow you to spend less time figuring the site out and more time putting your blog together. The navigation system is easy to follow which will help you avoid the frustration of trying to figure out how to use the website.</p><p>Having free space for pictures is also important. You will not have to pay a cent to post up a certain amount of pictures on your blog. Pictures can really spice up your blog by adding a personal look and feel and also making it look more professional. You definitely need pictures on your blog and Blogger allows you to upload these pictures from Picasa for free.</p><p><strong>Here are some stats of search volume from Google Trends:</strong></p><p><a
href="http://www.google.com/trends?q=blogger.com%2C+wordpress.org"><img
src="http://d3pnguju6g7vh.cloudfront.net/blog/wp-content/uploads/2011/12/wordpress-blogger-trends.jpg" alt="wordpress-blogger-trends" title="wordpress-blogger-trends" width="630" height="239" class="alignnone size-full wp-image-3411" /></a></p><p>In conclusion, both of these websites are great to use for your blogging needs and it can be hard to pick just one. They are two of the best websites for creating and developing your very own blog. If you are not sure which one of the websites you would like to use, you might want to give them both a try as a temporary solution. Some people prefer Blogger over WordPress because it is completely free, including the web hosting, which you would have to pay for if you were to use WordPress. Some people prefer to use WordPress instead because of the large amount of themes that you will have to choose from.</p><p>Ultimately, it depends on your personal preference which will help you make the decision as to which website you want to use for your blogging needs. Both of these websites continue to increase in popularity as millions of Internet users from all over the world flock to these sites to create their very own blogs.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/wordpress-website-hosting/" title="WordPress Website and WordPress Hosting">WordPress Website and WordPress Hosting</a></li><li><a
href="http://webhostinggeeks.com/blog/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-plugins-making-most-of-the-your-site/" title="WordPress Plugins – Making the Most of the Your Site">WordPress Plugins – Making the Most of the Your Site</a></li><li><a
href="http://webhostinggeeks.com/blog/alternative-to-wordpress-content-management-systems/" title="Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist">Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist</a></li><li><a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/" title="An Overview of PHP-Based Content Management Systems Beyond WordPress">An Overview of PHP-Based Content Management Systems Beyond WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/transition-content-management-system/" title="When to Transition to a Content Management System">When to Transition to a Content Management System</a></li><li><a
href="http://webhostinggeeks.com/blog/drupal-7-to-further-simplify-website-management/" title="Drupal 7 to Further Simplify Website Management">Drupal 7 to Further Simplify Website Management</a></li><li><a
href="http://webhostinggeeks.com/blog/new-content-management-system-released-by-typo-3/" title="New Content Management System Released by TYPO 3">New Content Management System Released by TYPO 3</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-recovering-from-ddos-attack/" title="WordPress Recovering from DDoS Attack">WordPress Recovering from DDoS Attack</a></li><li><a
href="http://webhostinggeeks.com/blog/understanding-the-benefits-of-cms/" title="Understanding the Benefits of CMS">Understanding the Benefits of CMS</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/wordpress-blogger/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>WordPress Plugins – Making the Most of the Your Site</title><link>http://webhostinggeeks.com/blog/wordpress-plugins-making-most-of-the-your-site/</link> <comments>http://webhostinggeeks.com/blog/wordpress-plugins-making-most-of-the-your-site/#comments</comments> <pubDate>Mon, 03 Oct 2011 10:47:36 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[All in One Shortcodes Plugin]]></category> <category><![CDATA[Events Calendar Pro]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[uPricing]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2579</guid> <description><![CDATA[We recommend WebHostingHub as the best web hosting for your blog. While we talk about the advantages of the different content management systems frequently, their strength is far more determined by how you use them.  Each CMS has a world of plugins that programmers all over the world have created.  Some of them are powerful [...]]]></description> <content:encoded><![CDATA[<p>We recommend <a
href="http://webhostinggeeks.com/bestbloghosting.html" target="_blank">WebHostingHub as the best web hosting for your blog</a>.</p><p>While we talk about the advantages of the different <a
href="http://webhostinggeeks.com/blog/cms/">content management systems</a> frequently, their strength is far more determined by how you use them.  Each CMS has a world of plugins that programmers all over the world have created.  Some of them are powerful enough to negate any problems inherent in your CMS of choice, and add functionality to it that you may have never considered.<br
/> <span
id="more-2579"></span><br
/> This is the first in a series of articles that will go over some of the best plugins we found out there for the most popular contention management systems.  We start today with the king of CMS&#8217;s, <a
href="http://wordpress.org/extend/plugins/" target="_blank">WordPress and WP Plugins</a>.  Note that we are going to be focusing on for-pay plugins in this article.  Free plugins have their place, and we will cover those eventually as well.   This is for the webmaster who is willing to shell out a little cash for the best.</p><p>1) <strong>Events Calendar Pro</strong></p><p>This sleek calendar system gives the webmaster an easy-to-use interface with which they can create professional-looking calendar and event pages.  Among the options available are the ability to integrate Google Maps into the event page, and using “Pretty URLs”.  The calendar of events can be displayed in a number of attractive, easy-to-read formats.</p><p>2) <strong><a
href="http://codecanyon.net/item/allinone-shortcodes/241861" target="_blank">All in One Shortcodes Plugin</a></strong></p><p>Much of what you&#8217;ll want to do with your WordPress site might benefit from some simple stylistic addition.  You may not want to pick up a book and spend a few hours learning the code necessary, though.  This $20 plugin lets you do these easily.   Buttons and text boxes of all different sizes and styles,  image and text sliders (meaning content that rotates through a limited set every few seconds), embedded video, and social bookmarking are all available.  It&#8217;s a veritable WordPress Swiss army knife.</p><p>3) <strong><a
href="http://codecanyon.net/item/custom-widget-areas-for-wordpress/130941" target="_blank">Custom Widget Areas for WordPress</a></strong></p><p>One of the most useful additions to a standard WordPress account is the ability to make customer sidebar sections, or widgets.  This inexpensive package allows you to do just that.  The webmaster is presented with an enormous variety of options for what to display where, and how.  Widgets can be included in main body text, and all pages down to 404 error code pages can be customized.</p><p>4) <strong><a
href="http://codecanyon.net/item/upricing-pricing-table-for-wordpress/145538" target="_blank"> uPricing – Pricing Table for WordPress</a></strong></p><p>This one is a bit specialized, but the right user will really appreciate having it.  This little package lets the user make a business-quality pricing table.  Tables are often one of the first things a new HTML editor learns how to make.  They soon learn thereafter how much worse a bad-looking table can make your web site appear.</p><p>5) <strong><a
href="http://codecanyon.net/item/twitter-ultimatewordpress-plugin/212874" target="_blank">Twitter Ultimate-WordPress Plugin</a></strong></p><p>Finally, no article about improving your website would be complete without somehow working modern social networking into it.  Of the available packages we looked at for the most popular social hangouts, Twitter Ultimate-WordPress Plugin seemed to provide the best functionality for the least cost ($8 as of this writing).  It allows the user all sorts of controls over whose tweets are displayed when, and how often.</p><p>There are even more good plugins, and we&#8217;ll go into them when we later cover some of the free ones available for WordPress.  For now, this should give the WordPress webmaster looking for some very nice enhancements to their site an excellent starting point.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/wordpress-website-hosting/" title="WordPress Website and WordPress Hosting">WordPress Website and WordPress Hosting</a></li><li><a
href="http://webhostinggeeks.com/blog/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-blogger/" title="WordPress vs. Blogger">WordPress vs. Blogger</a></li><li><a
href="http://webhostinggeeks.com/blog/the-13-best-free-wordpress-plugins/" title="The 13 Best Free WordPress Plugins">The 13 Best Free WordPress Plugins</a></li><li><a
href="http://webhostinggeeks.com/blog/alternative-to-wordpress-content-management-systems/" title="Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist">Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist</a></li><li><a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/" title="An Overview of PHP-Based Content Management Systems Beyond WordPress">An Overview of PHP-Based Content Management Systems Beyond WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/transition-content-management-system/" title="When to Transition to a Content Management System">When to Transition to a Content Management System</a></li><li><a
href="http://webhostinggeeks.com/blog/drupal-7-to-further-simplify-website-management/" title="Drupal 7 to Further Simplify Website Management">Drupal 7 to Further Simplify Website Management</a></li><li><a
href="http://webhostinggeeks.com/blog/new-content-management-system-released-by-typo-3/" title="New Content Management System Released by TYPO 3">New Content Management System Released by TYPO 3</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-recovering-from-ddos-attack/" title="WordPress Recovering from DDoS Attack">WordPress Recovering from DDoS Attack</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/wordpress-plugins-making-most-of-the-your-site/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Say it with me &#8211; Joomla!</title><link>http://webhostinggeeks.com/blog/say-joomla/</link> <comments>http://webhostinggeeks.com/blog/say-joomla/#comments</comments> <pubDate>Fri, 23 Sep 2011 06:00:29 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Joomla]]></category> <category><![CDATA[Mambo]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2460</guid> <description><![CDATA[Continuing on with our series of reviewing the most popular content management systems out there, this week we shall explore Joomla!  (The exclamation point is there&#8217;s, not mine.) Joomla!&#8217;s origins are a lot more exciting than a lot of software, being born out of a tech divorce worthy of a Maury Povich show.  The team [...]]]></description> <content:encoded><![CDATA[<p>Continuing on with our series of reviewing the most popular content management systems out there, this week we shall explore <a
href="http://www.joomla.org/" target="_blank">Joomla</a>!  (The exclamation point is there&#8217;s, not mine.)</p><p>Joomla!&#8217;s origins are a lot more exciting than a lot of software, being born out of a tech divorce worthy of a Maury Povich show.  The team that created Joomla bailed from a previous software package called “Mambo” after a very public spat over differences in approach, and whether or not the old team had violated open source principles.  See the discussions if you&#8217;re really curious: the discussions are too complex to be summarized easily.<span
id="more-2460"></span><br
/> <br
/> <strong>After the storm</strong></p><p>What&#8217;s important is what came out of it, and that is a content management software package that won awards straight out of the starting gate.  Like it&#8217;s rival <a
href="http://drupal.org/" target="_blank">Drupal</a>, Joomla!&#8217;s open source nature has created around a worldwide community of developers who are loyal to it, and who have authored for Joomla! more than 7,000 extensions.</p><p>The package has been downloaded more than 20 million times, though to date this hasn&#8217;t resulted in the impressive resume that Drupal has acquired.  Still, if it can&#8217;t claim whitehouse.gov, it can claim Linux.com: from some geeks&#8217; perspective, that&#8217;s arguably better.</p><p><strong>The facts of the case</strong></p><p>The reason behind this lower profile showing can be considered both its primary advantage and disadvantage: Joomla! is invariably described as being easier to use.  This manifests itself in an easier installation, less work on those who just want to setup a simple website or blog, more comprehensive tutorial support (enter “Joomla” into Youtube and you&#8217;ll get dozens of hits, including its own channel), and a more extensive administrative backend.</p><p>While this may make it more attractive to the new webmaster, however, this makes it less attractive to the expert developer.  The user is usually locked into a page or <a
href="http://www.designcontest.com/website-design/" target="_blank">website design</a> that doesn&#8217;t allow for much customization: and while a number of plug-ins can fix some of the issues that you&#8217;ll encounter, not all of them are free.</p><p>Joomla! also has a curious number of technical shortcomings.  It is considered bulkier, slower, and more resource hungry than Drupal (though both being open-source, one of them has to be).  It is also not SEO-ready (<a
href="http://webhostinggeeks.com/blog/seo-sem/">search engine optimization</a>) out of the box: again, you&#8217;ll need do add some extensions for this.  It also doesn&#8217;t come initially with the capability to support more than one login.</p><p><strong>A middle ground?</strong></p><p>While Joomla! is described as more-user friendly and hence restricted than Drupal, it is alternately described as the opposite in relation to <a
href="http://wordpress.org/" target="_blank">WordPress</a>.  Could this be a case of a software package trying to find a middle ground between being easy yet powerful?  This could account for its almost schizophrenic set of qualities, that can be seemingly looked at as either half empty or half full.</p><p>What does appear to be true regardless of all of this is that Joomla! has become one of the open-source packages to develop something of a fan following.  That fan base doesn&#8217;t look to be stepping away anytime soon which means that, whatever Joomla!&#8217;s current shortcomings, if you go with it and stick with it, you probably won&#8217;t have to either.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/joomla-1-5-review-installation-and-improvements/" title="Joomla 1.5 Review &#8211; Installation and Improvements">Joomla 1.5 Review &#8211; Installation and Improvements</a></li><li><a
href="http://webhostinggeeks.com/blog/how-to-find-a-host-for-your-cms/" title="How to Find a Host for Your CMS ">How to Find a Host for Your CMS </a></li><li><a
href="http://webhostinggeeks.com/blog/is-wordpress-really-a-cms/" title="Is WordPress Really a CMS?">Is WordPress Really a CMS?</a></li><li><a
href="http://webhostinggeeks.com/blog/mambo-vs-joomla-these-cms-rivals-square-off/" title="Mambo vs. Joomla &#8211; These CMS Rivals Square Off">Mambo vs. Joomla &#8211; These CMS Rivals Square Off</a></li><li><a
href="http://webhostinggeeks.com/blog/the-cms-drives-the-hosting-industry/" title="The CMS Drives the Hosting Industry">The CMS Drives the Hosting Industry</a></li><li><a
href="http://webhostinggeeks.com/blog/joomla-or-drupal-which-cms-is-for-you/" title="Joomla or Drupal?  Which CMS is for You?">Joomla or Drupal?  Which CMS is for You?</a></li><li><a
href="http://webhostinggeeks.com/blog/meet-the-cms-lineup/" title="Meet the CMS Lineup">Meet the CMS Lineup</a></li><li><a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/" title="An Overview of PHP-Based Content Management Systems Beyond WordPress">An Overview of PHP-Based Content Management Systems Beyond WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/joomla-for-everybody/" title="Joomla: For You, For Me, For Everybody">Joomla: For You, For Me, For Everybody</a></li><li><a
href="http://webhostinggeeks.com/blog/transition-content-management-system/" title="When to Transition to a Content Management System">When to Transition to a Content Management System</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/say-joomla/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Drupal –  An Essential Primer</title><link>http://webhostinggeeks.com/blog/drupal-an-essential-primer/</link> <comments>http://webhostinggeeks.com/blog/drupal-an-essential-primer/#comments</comments> <pubDate>Wed, 21 Sep 2011 05:54:56 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[Drupal]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2414</guid> <description><![CDATA[While not quite the most commonly used content management software package in existence, Drupal is certainly one of the most popular.  One estimate states that it is used as the backend for 1.5% of all of current websites worldwide.  The beginner user who is wondering whether or not to use Drupal could use a quick [...]]]></description> <content:encoded><![CDATA[<p>While not quite the most commonly used content management software package in existence, <a
href="http://drupal.org/" target="_blank">Drupal</a> is certainly one of the most popular.  One estimate states that it is used as the backend for 1.5% of all of current websites worldwide.  The beginner user who is wondering whether or not to use Drupal could use a quick primer of the essential elements of Drupal.<span
id="more-2414"></span></p><p><strong>A brief history of Drupal</strong></p><p>Drupal began as a message board, and like many web success stories, rocketed in popularity when in 2001 it went open source.  A user community quickly formed around the software package, one which grew past “global village” to start approaching “global small country.”.</p><p>The numbers for its support are amazing.  Since 2005 there have been multiple “DrupalCons” held each year, with smaller events scattered throughout the world.  It displays contents in more than 180 languages, and is used, purporetedly, in over 200.  Its rabid fan base has used its open-source freedom to create for it more than 11,000 add-ons.  Looked at from any angle, Drupal is rock star.  As a side note, it also ranked second in a list of most secure content management software packages.</p><p>Sounds fantastic.  Is there a catch?</p><p><strong>First the good news – Lots of it</strong></p><p>Well yes, there is, but custom dictates that we list the advantages first.  The main advantage to Drupal is just how many advantages there are.  This is an extremely powerful, flexible piece of software that offers just about any option that a webmaster could want out of a content management software package.  The standard release contains support for RSS feeds, user account registration, page layout specifications, video, polls, and podcasts just to start.</p><p>More importantly is that it has the programming capabilities to handle much more.  Drupal lets the webmaster program in a module-like setting that makes it easy for a user to develop a gorgeous web site from the ground up in little time: and again, if the software package itself somehow doesn&#8217;t contain what you need out of it, the many thousands of add-ons from the user community almost definitely will.</p><p><strong>Now the bad news – Too much of a good thing?</strong></p><p>If the avalanche of features above seemed intimidating to you, then you have an idea of what the primary drawback for Drupal is.  This is not the most beginner-friendly content management software out there.  It is generally considered that if all you want is a simple site that you can use Drupal no problem, but that if you want more than that, you need to commit to a little bit of self-education.</p><p>Part and parcel to that problem is that Drupal is generally considered to be among the bigger and slower of these systems.  To be fair, there is some debate on this topic: one study showed Drupal to outperform <a
href="http://www.joomla.org/" target="_blank">Joomla</a>, one of its main rivals.  Nevertheless the impression persists.  All things considered, if you are just looking for a very simple web site with little in the way of frills, your likely to get a lot of people tell you that Drupal is not the best place to start.</p><p><strong>A positive balance?</strong></p><p>Those drawbacks don&#8217;t seem to be getting in the way of Drupal&#8217;s continued popularity.  And since many of the sites that use Drupal are high profile sites, such as Whitehouse.gov, London.gov.uk, Rutgers.edu,  Economist.com and MTV.co.uk, the new user has a lot of examples to look it.</p><p>One thing is certain: if you ask the Drupal user community, they are sure to tell you to jump right in. That&#8217;s a hard endorsement to ignore. Also, most of the <a
href="http://webhostinggeeks.com/">web hosting</a> companies support the Drupal CMS.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/alternative-to-wordpress-content-management-systems/" title="Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist">Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist</a></li><li><a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/" title="An Overview of PHP-Based Content Management Systems Beyond WordPress">An Overview of PHP-Based Content Management Systems Beyond WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/transition-content-management-system/" title="When to Transition to a Content Management System">When to Transition to a Content Management System</a></li><li><a
href="http://webhostinggeeks.com/blog/drupal-7-to-further-simplify-website-management/" title="Drupal 7 to Further Simplify Website Management">Drupal 7 to Further Simplify Website Management</a></li><li><a
href="http://webhostinggeeks.com/blog/why-a-cms-is-essential-for-doing-online-business-in-the-21st-century/" title="Why a CMS is Essential for Doing Online Business in the 21st Century">Why a CMS is Essential for Doing Online Business in the 21st Century</a></li><li><a
href="http://webhostinggeeks.com/blog/content-management-systems-for-multi-user-blogs/" title="Content Management Systems for Multi-User Blogs">Content Management Systems for Multi-User Blogs</a></li><li><a
href="http://webhostinggeeks.com/blog/under-35-the-top-five-cms-executives/" title="Under 35: The Top Five CMS Executives">Under 35: The Top Five CMS Executives</a></li><li><a
href="http://webhostinggeeks.com/blog/content-management-systems-and-site-design/" title="Content Management Systems and Site Design">Content Management Systems and Site Design</a></li><li><a
href="http://webhostinggeeks.com/blog/drupal-hosting-not-just-for-techies/" title="Drupal Hosting: Not Just for Techies">Drupal Hosting: Not Just for Techies</a></li><li><a
href="http://webhostinggeeks.com/blog/simplified-content-management-with-cms-made-simple/" title="Simplified Content Management with CMS Made Simple ">Simplified Content Management with CMS Made Simple </a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/drupal-an-essential-primer/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Get Out of the PHP Memory Error Rut with WordPress</title><link>http://webhostinggeeks.com/blog/php-memory-error-rut-wordpress/</link> <comments>http://webhostinggeeks.com/blog/php-memory-error-rut-wordpress/#comments</comments> <pubDate>Mon, 19 Sep 2011 11:39:42 +0000</pubDate> <dc:creator>Dmitry</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[.htaccess]]></category> <category><![CDATA[error]]></category> <category><![CDATA[memory]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[php.ini]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2371</guid> <description><![CDATA[We&#8217;ve all been there: You drag yourself out of bed in the morning, crawl to your computer, and boot up the oh-so-familiar blog space. But instead of finding your lovingly crafted website, complete with self-made logos and beautiful banners, all you find is this error: Fatal error: Allowed memory size of ######## bytes exhausted (tried [...]]]></description> <content:encoded><![CDATA[<p>We&#8217;ve all been there: You drag yourself out of bed in the morning, crawl to your computer, and boot up the oh-so-familiar blog space. But instead of finding your lovingly crafted website, complete with self-made logos and beautiful banners, all you find is this error:</p><p><strong>Fatal error: Allowed memory size of ######## bytes exhausted (tried to allocate ## bytes) in /home/user/public_html/wp-includes/phpfile.php on line 80.</strong></p><p>Before you start swearing at your monitor or worse—we’re thinking that stapler looks appropriately weighted for some hefty hucking—know that this issue is easily fixed, and doesn’t have to be the day-wrecker you feel it might be.</p><p>It’s worth noting that your exact error message may vary, but as long as it says something about your memory being more worn out than an obese man at a 10k, you’re golden: The issue has to do with available computing space, and you’re still reading the right tutorial.</p><p><iframe
width="660" height="315" src="http://www.youtube.com/embed/kDUZU3_2n_U" frameborder="0" allowfullscreen></iframe></p><p>The likely issue is that you’ve just installed a new plug-in or extension, and now WordPress is acting like an estranged lover. There are a couple of ways to correct the issue. The easiest is to disable any recently installed extensions and see if that corrects the problem. However, this is certainly less than desirable, as you likely want that new piece of code. With that in mind, you might try to expand the available memory space for your site. This can be accomplished in the following way:</p><p>Essentially, you&#8217;ll need to change the amount of memory available for PHP. This can be done in a number of ways, and it might be that there’s only one that works for your server. Always query your web host first—or if you’re feeling gung-ho, <strong>locate your php.ini</strong> file and do this to it!</p><p><strong>Locate the following line:</strong></p><pre class="brush: php; title: ; notranslate">memory_limit = 32M ; Maximum amount of memory a script may consume</pre><p>Change &#8220;32M&#8221; to &#8220;64M,&#8221; and then cross your fingers. Some hosts limit the amount of memory you can delegate yourself to PHP, so if this doesn’t correct the issue, therein may lie your problem. If you can’t acquire access to php.ini, you might try adding the same line to the .htcaccess file in your WordPress main installation folder.</p><p>If none of those are possible, then you&#8217;re in a sticky boat, Pilgrim: Call up the tech-support you&#8217;re paying for and get them to do one of the things we just discussed.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/" title="An Overview of PHP-Based Content Management Systems Beyond WordPress">An Overview of PHP-Based Content Management Systems Beyond WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/introducing-modx-cms-%e2%80%93-the-ultimate-in-flexibility-and-compatibility/" title="Introducing MODx CMS – The Ultimate in Flexibility and Compatibility">Introducing MODx CMS – The Ultimate in Flexibility and Compatibility</a></li><li><a
href="http://webhostinggeeks.com/blog/popular-free-control-panels-no-charge-great-value/" title="Popular Free Control Panels &#8211; No Charge, Great Value">Popular Free Control Panels &#8211; No Charge, Great Value</a></li><li><a
href="http://webhostinggeeks.com/blog/are-you-paying-too-much-for-web-hosting/" title="Are You Paying Too Much for Web Hosting?  ">Are You Paying Too Much for Web Hosting? </a></li><li><a
href="http://webhostinggeeks.com/blog/establishing-your-online-presence-with-wordpress-hosting/" title="Establishing Your Online Presence with WordPress Hosting">Establishing Your Online Presence with WordPress Hosting</a></li><li><a
href="http://webhostinggeeks.com/blog/fantastico-cpanel-best-kept-secret/" title="Fantastico: cPanel’s Best Kept Secret">Fantastico: cPanel’s Best Kept Secret</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-themes-new-design-portfolio-sites/" title="WordPress Themes vs. Designing From Scratch vs. Portfolio Sites">WordPress Themes vs. Designing From Scratch vs. Portfolio Sites</a></li><li><a
href="http://webhostinggeeks.com/blog/2012-award-best-php-host/" title="2012 Award for the Best PHP Hosting">2012 Award for the Best PHP Hosting</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-website-speed-optimization/" title="Top 9 Ways to Optimize Your WordPress Server for Blazing Fast Speeds">Top 9 Ways to Optimize Your WordPress Server for Blazing Fast Speeds</a></li><li><a
href="http://webhostinggeeks.com/blog/optimize-wordpress-search-engines/" title="Top 4 Ways to Optimize WordPress for Search Engines">Top 4 Ways to Optimize WordPress for Search Engines</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/php-memory-error-rut-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Alternative&#8217;s to WordPress &#8211; Other Content Management Systems do Exist</title><link>http://webhostinggeeks.com/blog/alternative-to-wordpress-content-management-systems/</link> <comments>http://webhostinggeeks.com/blog/alternative-to-wordpress-content-management-systems/#comments</comments> <pubDate>Thu, 15 Sep 2011 05:34:40 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[CMS]]></category> <category><![CDATA[concrete5]]></category> <category><![CDATA[Drupal]]></category> <category><![CDATA[Geeklog]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2331</guid> <description><![CDATA[WordPress may be the ten-gallon hat and eight-hundred pound gorilla of Content Management Systems (or CMS, for the tech-savvy and initiated) but that doesn’t mean it’s the only kid on the block. In fact, there are quite a few other PHP-based management systems out there that are more than capable of getting the job done. [...]]]></description> <content:encoded><![CDATA[<p>WordPress may be the ten-gallon hat and eight-hundred pound gorilla of <a
href="http://webhostinggeeks.com/blog/cms/">Content Management Systems</a> (or CMS, for the tech-savvy and initiated) but that doesn’t mean it’s the only kid on the block. In fact, there are quite a few other <a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/">PHP-based management systems</a> out there that are more than capable of getting the job done. We’ve compiled a few of our favorites here, and as long as you’re feeling brave enough to go outside the box, we’ve got the roadmap.<br
/> <span
id="more-2331"></span><br
/> <strong>Geeklog</strong></p><p>We know <a
href="http://www.geeklog.net/" target="_blank">Geeklog</a> may not look the prettiest, but this CMS is every bit as functional as WordPress and then some. Popular sites like Mac OS X hints have been using it for years, in case you need a reference. Geeklog is a ninja when it comes to <a
href="http://www.mysql.com/" target="_blank">mySQL</a>, <a
href="http://www.postgresql.org/" target="_blank">PostgreSQL</a> and <a
href="http://www.microsoft.com/sqlserver/en/us/default.aspx" target="_blank">Microsoft SQL</a>, as well as content syndication, mass user deletion, forums, and multi-language support. Not to mention the word “geek” is in the title, which tickles our pickle five ways to Sunday.</p><p><strong><a
href="http://www.concrete5.org/" target="_blank">concrete5</a></strong></p><p>This CMS has been garnering an immense amount of attention for its ease of use and feature-rich editing. The system allows users to edit pages directly from the management software without having to go through any kind of complex administrative filter. Even images can be mangled straight from the source, making it easier than ever to manipulate your media. Not to mention that concrete5 is completely free and open-source, meaning you’re free to soak your hands in its code any day you’re feeling particularly daring.</p><p><strong>Drupal</strong></p><p>Ah, <a
href="http://drupal.org/" target="_blank">Drupal</a>! It’s been reported that this CMS is being used by one in every 66 sites around the world, including some heavyweight, multi-national government institutions. It’s a weighty offering, and one that’s every bit as feature-rich as WordPress. It works with every kind of database server you can think of, and is also compatible with every operating system known to man. Not to mention its huge list of features, including multi-user file editing, multiple sites, and massively useful security restrictions. Drupal also supports one of the best user communities around (a fact touted by the developer often) making it accessible and and functional, especially when issues arrive.</p><p>That’s all we’ve got for you today! If you’re still suckling the <a
href="http://wordpress.org/" target="_blank">WordPress</a> source, maybe you’ll look into a few of our other favorites for future projects. No matter where you go, though, quality CMS isn’t hard to find. Whether open-source code, a massive user community, or a gorgeous user interface is your kick, you can always find something to match.</p><p>Feel free to post a comment if we left any killer WordPress alternatives out!</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li><a
href="http://webhostinggeeks.com/blog/php-based-content-management-systems/" title="An Overview of PHP-Based Content Management Systems Beyond WordPress">An Overview of PHP-Based Content Management Systems Beyond WordPress</a></li><li><a
href="http://webhostinggeeks.com/blog/transition-content-management-system/" title="When to Transition to a Content Management System">When to Transition to a Content Management System</a></li><li><a
href="http://webhostinggeeks.com/blog/drupal-7-to-further-simplify-website-management/" title="Drupal 7 to Further Simplify Website Management">Drupal 7 to Further Simplify Website Management</a></li><li><a
href="http://webhostinggeeks.com/blog/why-a-cms-is-essential-for-doing-online-business-in-the-21st-century/" title="Why a CMS is Essential for Doing Online Business in the 21st Century">Why a CMS is Essential for Doing Online Business in the 21st Century</a></li><li><a
href="http://webhostinggeeks.com/blog/content-management-systems-for-multi-user-blogs/" title="Content Management Systems for Multi-User Blogs">Content Management Systems for Multi-User Blogs</a></li><li><a
href="http://webhostinggeeks.com/blog/content-management-systems-and-site-design/" title="Content Management Systems and Site Design">Content Management Systems and Site Design</a></li><li><a
href="http://webhostinggeeks.com/blog/is-wordpress-really-a-cms/" title="Is WordPress Really a CMS?">Is WordPress Really a CMS?</a></li><li><a
href="http://webhostinggeeks.com/blog/introducing-the-phpwebsite-cms/" title="Introducing the phpWebSite CMS">Introducing the phpWebSite CMS</a></li><li><a
href="http://webhostinggeeks.com/blog/fantastico-cpanel-best-kept-secret/" title="Fantastico: cPanel’s Best Kept Secret">Fantastico: cPanel’s Best Kept Secret</a></li><li><a
href="http://webhostinggeeks.com/blog/wordpress-website-hosting/" title="WordPress Website and WordPress Hosting">WordPress Website and WordPress Hosting</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/alternative-to-wordpress-content-management-systems/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: d3pnguju6g7vh.cloudfront.net

Served from: webhostinggeeks.com @ 2012-05-25 14:56:54 -->
