<?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; SEO / SEM</title> <atom:link href="http://webhostinggeeks.com/blog/seo-sem/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, 09 Feb 2012 05:48:19 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Top 9 Ways to Optimize Your WordPress Server for Blazing Fast Speeds</title><link>http://webhostinggeeks.com/blog/2012/02/08/wordpress-website-speed-optimization/</link> <comments>http://webhostinggeeks.com/blog/2012/02/08/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[CSS]]></category> <category><![CDATA[eTags]]></category> <category><![CDATA[Image Files]]></category> <category><![CDATA[JS]]></category> <category><![CDATA[optimize database]]></category> <category><![CDATA[Static Content]]></category> <category><![CDATA[Static Media]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[WordPress admin]]></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 <a
href="http://wordpress.org/extend/plugins/wp-minify/">wp minify</a> 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>March 31, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/03/31/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>January 16, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/16/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>January 11, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/11/wordpress-website-hosting/" title="WordPress Website and WordPress Hosting">WordPress Website and WordPress Hosting</a></li><li>January 1, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/01/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li>December 9, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/09/wordpress-blogger/" title="WordPress vs. Blogger">WordPress vs. Blogger</a></li><li>October 7, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/07/the-13-best-free-wordpress-plugins/" title="The 13 Best Free WordPress Plugins">The 13 Best Free WordPress Plugins</a></li><li>October 3, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/03/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>September 19, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/19/php-memory-error-rut-wordpress/" title="Get Out of the PHP Memory Error Rut with WordPress">Get Out of the PHP Memory Error Rut with WordPress</a></li><li>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/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>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/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></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2012/02/08/wordpress-website-speed-optimization/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Top 4 Ways to Optimize WordPress for Search Engines</title><link>http://webhostinggeeks.com/blog/2012/01/16/optimize-wordpress-search-engines/</link> <comments>http://webhostinggeeks.com/blog/2012/01/16/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 engine optimization]]></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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/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>January 26, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/01/26/search-engine-optimization-keywords-vs-content/" title="Search Engine Optimization: Keywords vs. Content">Search Engine Optimization: Keywords vs. Content</a></li><li>January 18, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/01/18/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>July 24, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/07/24/avoid-these-five-seo-mistakes/" title="Avoid These Five SEO Mistakes ">Avoid These Five SEO Mistakes </a></li><li>July 23, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/07/23/seven-seo-myths-debunked/" title="Seven SEO Myths Debunked">Seven SEO Myths Debunked</a></li><li>January 1, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/01/fastest-wordpress-hosting/" title="Fastest WordPress Hosting in Town ">Fastest WordPress Hosting in Town </a></li><li>December 1, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/01/seo-importance/" title="The Importance of SEO">The Importance of SEO</a></li><li>September 25, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/25/search-engine-optimization-tips-for-bing/" title="Search Engine Optimization tips for Bing">Search Engine Optimization tips for Bing</a></li><li>September 21, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/21/search-engine-optimization-companies-worthy-cost/" title="Are Search Engine Optimization Companies – Worthy of the Cost?">Are Search Engine Optimization Companies – Worthy of the Cost?</a></li><li>September 14, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/14/dummies-guide-seo/" title="The Dummies&#8217; Guide To SEO">The Dummies&#8217; Guide To SEO</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2012/01/16/optimize-wordpress-search-engines/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Fastest WordPress Hosting in Town</title><link>http://webhostinggeeks.com/blog/2012/01/01/fastest-wordpress-hosting/</link> <comments>http://webhostinggeeks.com/blog/2012/01/01/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[bandwith]]></category> <category><![CDATA[HostGator]]></category> <category><![CDATA[hosting wordpress]]></category> <category><![CDATA[InMotion]]></category> <category><![CDATA[search engine optimization]]></category> <category><![CDATA[Web Hosting Hub]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Wordpress hosting]]></category> <category><![CDATA[wp hosting]]></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.</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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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://webhostinggeeks.com/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>January 11, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/11/wordpress-website-hosting/" title="WordPress Website and WordPress Hosting">WordPress Website and WordPress Hosting</a></li><li>January 16, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/16/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>December 9, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/09/wordpress-blogger/" title="WordPress vs. Blogger">WordPress vs. Blogger</a></li><li>October 3, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/03/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>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/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>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/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>September 7, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/07/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>September 2, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/02/transition-content-management-system/" title="When to Transition to a Content Management System">When to Transition to a Content Management System</a></li><li>June 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/06/15/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>May 20, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/05/20/important-features-of-content-management-systems/" title="Important Features of Content Management Systems">Important Features of Content Management Systems</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2012/01/01/fastest-wordpress-hosting/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>The Importance of SEO</title><link>http://webhostinggeeks.com/blog/2011/12/01/seo-importance/</link> <comments>http://webhostinggeeks.com/blog/2011/12/01/seo-importance/#comments</comments> <pubDate>Thu, 01 Dec 2011 18:41:05 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[search engine optimization]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[SEO content]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=3310</guid> <description><![CDATA[SEO is an abbreviation for Search Engine Optimization. What does this mean? For the average person, it is nothing important but for a website owner, SEO is everything. The purpose of SEO is to use certain keywords that, when entered in a search engine by a random individual, will lead directly to the particular website [...]]]></description> <content:encoded><![CDATA[<p>SEO is an abbreviation for Search Engine Optimization. What does this mean? For the average person, it is nothing important but for a website owner, SEO is everything. The purpose of SEO is to use certain keywords that, when entered in a search engine by a random individual, will lead directly to the particular website which will result in far more traffic being drawn into the website.</p><p><strong>What does SEO do for a website?</strong></p><p>SEO makes a website so much easier to read for the viewers. The pages of your website will look better and be much easier to read when you use SEO content. This also allows the viewers of your website to find the exact information they are looking for instead of having to search through piles and piles of content and information posted on your website.</p><p>The truth is, every website has to start off at some point and, in the beginning, traffic may be very low and practically non-existent. With no traffic, your website will not be successful and it will be practically a waste of your time. If you want your amazing website to be viewed by millions of users, SEO is the key to all of your problems.</p><p><strong>Ways that SEO can help YOUR website!</strong></p><p>1. Drives more traffic to your website. Traffic is needed for all websites to receive the amount of attention they are looking for. SEO is the primary tool for receiving the high amount of traffic you are looking for.</p><p>2. Receive new viewers. You may already have people who frequent your website but SEO will allow you to get hundreds of new viewers when they search for certain keywords using a search engine.</p><p>3. Helps you earn more money if you depend on revenue share websites for your money. For example, if you have a blog and you use Google Adsense as a means of making money from that website, SEO drives more traffic to your website which equals more clicks on ads which in return equals a higher profit for you.</p><p><strong>Set your website up for success</strong></p><p>If you want your website to be successful, before you get started with the SEO of your content, you need to first make sure that your website looks professional. Once you begin using SEO content, you will receive so many new visitors to your website from the search engine and because you will receive new visitors and viewers, it is important that your website looks its very best to keep the visitors coming back and prevent them from leaving your website out of frustration or anger.</p><p><strong>How do I make my website look its best?</strong></p><p>1. Organize all of your content</p><p>2. Highlight important information in bold or italic text</p><p>3. Use a navigation system so that viewers can navigate on your website very quick and easily</p><p>4. Use a layout or template that represents your website and looks professional. Making your own layout is not too hard and can be done using a software program. You can also buy pre-made layouts and templates or pay someone online to create the layout for you. Either way, the layout should look professional and neat because it reflects on you and your business.</p><p>5. Insert images when necessary. Never use clip art images because they look unprofessional and immature. Use stock photos or images that you have taken yourself with a high quality camera.</p><p>6. Keep your content detailed but straight to the point. Don&#8217;t post up too much useless information which is commonly referred to as being fluff.</p><p>7. Use a font that is professional. A lot of new websites make the mistake of using ridiculous or silly fonts that they think look good but is actually very unprofessional looking and can drive visitors away from the website.</p><p>Once you have followed these few tips to ensure that your website looks amazing and professional, you can begin your SEO content. When you write the content that belongs on your website, you will need to use a set of keywords that are often searched for in search engines. When you use these keywords with your content, you will receive much more traffic, thus the purpose of SEO in the first place. You can use an SEO tool to get you started with figuring out the right keywords for your content on the website.</p><p>Once you use the SEO for your content, the goal is to have your website show on the search engine website on one of the first pages. It is a major accomplishment to have the link to your website on the first page of the search engine results but it is just as good to be on some of the first few pages of the search engine results.</p><p><strong>Conclusion</strong></p><p>After you begin using SEO on a regular basis for all of your content needs, you will notice major changes. You will notice that the number of people visiting your page has drastically increased. In fact, you should set up a hidden hit counter which will allow you to see how many visitors you are receiving to your website each and every day. This is a great way for you to watch your traffic grow and grow after using SEO on your website. In many instances, you will increase the amount of traffic dramatically which can help your website grow, expand, and become even more successful than it was before you started using SEO.</p><p>SEO is very important to a successful website and many newbies to the world of websites do not seem to realize this. If you are new to the world of websites, it is important that you realize how essential SEO content is for the success of your website. If you do not know how to use SEO in your content, there are many freelance writers available on the Internet, on websites such as Elance and oDesk, who specialize in SEO writing and would gladly help you with all of your SEO content needs.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>January 16, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/16/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>September 25, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/25/search-engine-optimization-tips-for-bing/" title="Search Engine Optimization tips for Bing">Search Engine Optimization tips for Bing</a></li><li>September 21, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/21/search-engine-optimization-companies-worthy-cost/" title="Are Search Engine Optimization Companies – Worthy of the Cost?">Are Search Engine Optimization Companies – Worthy of the Cost?</a></li><li>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/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>September 14, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/14/dummies-guide-seo/" title="The Dummies&#8217; Guide To SEO">The Dummies&#8217; Guide To SEO</a></li><li>September 10, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/10/advice-search-engine-optimization/" title="Common Advice in Search Engine Optimization">Common Advice in Search Engine Optimization</a></li><li>September 8, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/08/seo-web-hosting-powerful-tool/" title="SEO Web Hosting: A Powerful Tool to Dominate Search Engine Rankings">SEO Web Hosting: A Powerful Tool to Dominate Search Engine Rankings</a></li><li>September 2, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/02/thinking-offpage-seo-think-white-hat-seo/" title="Thinking Offpage SEO &#8211; Think White-Hat SEO">Thinking Offpage SEO &#8211; Think White-Hat SEO</a></li><li>September 1, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/01/effect-search-engine-marketing/" title="Search Engine Marketing Effect">Search Engine Marketing Effect</a></li><li>March 14, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/03/14/how-dedicated-host-can-enhance-search-engine-optimization-results/" title="How Dedicated Host Can Enhance Search Engine Optimization Results">How Dedicated Host Can Enhance Search Engine Optimization Results</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/12/01/seo-importance/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>4 Steps to Automate Twitter Relationship Building in 15 Minutes</title><link>http://webhostinggeeks.com/blog/2011/11/29/automate-twitter-relationship/</link> <comments>http://webhostinggeeks.com/blog/2011/11/29/automate-twitter-relationship/#comments</comments> <pubDate>Tue, 29 Nov 2011 07:26:40 +0000</pubDate> <dc:creator>Dmitry</dc:creator> <category><![CDATA[Guest Posts]]></category> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[Tools]]></category> <category><![CDATA[Webmaster Resources]]></category> <category><![CDATA[Google Alerts]]></category> <category><![CDATA[Point Blank SEO]]></category> <category><![CDATA[Rss Mix]]></category> <category><![CDATA[seo]]></category> <category><![CDATA[Technorati]]></category> <category><![CDATA[Twitter]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=3235</guid> <description><![CDATA[This is a guest post by Jon Cooper from Point Blank SEO. Building relationships is at the heart of link building, because people are the ones giving links, not websites. The newest and hottest way to build relationships in your niche is to engage with them on social media, but we all know how time [...]]]></description> <content:encoded><![CDATA[<p>This is a guest post by Jon Cooper from <a
href="http://pointblankseo.com/" target="_blank">Point Blank SEO</a>.</p><p>Building relationships is at the heart of link building, because people are the ones giving links, not websites. The newest and hottest way to build relationships in your niche is to engage with them on social media, but we all know how time consuming this can be. Take, for example, twitter. Although an awesome tool to use to talk to influential people in your niche, the hours you spend each day pile up over time.<span
id="more-3235"></span></p><p>I recently just started doing SEO for a client who didn’t have a company twitter account, so I had to start from scratch. I didn’t want to spend much time on twitter, but at the same time I wanted to yield it for all it’s worth. Here’s a simple 4-step guide to automating your twitter account to tweet about the things you want, and the best part about it is that it won’t take you more than 15 minutes! Over time, the people/companies in your niche will take notice of your tweets, and this can be the first step to connecting personally with each of them.</p><p>1. <strong>Identify influential bloggers</strong></p><p><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/most-influential-blogs.jpg" alt="Most Influential Blogs" title="Most Influential Blogs" width="500" height="319" class="alignnone size-full wp-image-3267" /></p><p>They don’t necessarily have to be the cream of the crop in your niche, but rather just the ones you want to start building relationships with. Once you <a
href="http://technorati.com/blogs/top100/" target="_blank">identify them</a>, make a list of all of their RSS feeds in a simple text document.</p><p>2. <strong>Use Google Alerts</strong></p><p><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/google-alerts.jpg" alt="Google Alerts" title="Google Alerts" width="500" height="206" class="alignnone size-full wp-image-3268" /></p><p>If you’ve never used <a
href="http://www.google.com/alerts" target="_blank">Google Alerts</a> before, it’s a tool to help you monitor the Web for any keyword or phrase of your choosing. For example, if I wanted to know whenever the phrase “link building contest” was mentioned, I could sign up for a daily Google Alert &#038; get it sent to my email or by RSS feed. In this case, set up a couple alerts and have them be created as RSS feeds. Make sure you add these RSS feeds to your text document list.</p><p>3. <strong>Combine the feeds</strong></p><p><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/rss-mix.jpg" alt="RSS Mix" title="RSS Mix" width="500" height="240" class="alignnone size-full wp-image-3269" /></p><p>By using <a
href="http://www.rssmix.com/" target="_blank">RSS Mix</a>, you’re able to combine any number of RSS feeds into just one. This will bypass some of the fees you would have had to pay in the next step.</p><p>4. <strong>Use Hootsuite to tweet the RSS</strong></p><p><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/hootsuite.jpg" alt="HootSuite" title="HootSuite" width="500" height="278" class="alignnone size-full wp-image-3270" /></p><p><a
href="http://www.hootsuite.com/" target="_blank">Hootsuite</a> is an awesome tool to stay on top of twitter, and luckily for us it’s free to use. Sign up for an account, sync your twitter account, and then add an RSS feed to your account. The RSS feed you’re adding is the combined one we created in step 3. Set it up so each new item is tweeted via your twitter account.</p><p>The reason we combined the feeds in step 3 is because Hootsuite’s free plan allows only 2 RSS feeds, so if you wanted to use all of the ones individually through it, you would have to pay $6/month.</p><p>I don’t recommend this as a full time option for your twitter account, but rather as a great way to get started. By tweeting about the most relevant content in your niche, you have a great chance as being one of the twitter authorities. Also, make sure you’re tweeting about your own content too, whether it’s adding your feed to the mega feed we created in Step 3 or if you’re doing it manually.</p><p>If you’d like to keep up to date with the latest news &#038; content on link building and relationship building, <a
href="http://gplus.to/pointblankseo" target="_blank">add Point Blank SEO</a> to your circles, or <a
href="http://www.twitter.com/jrcooper14" target="_blank">follow Jon Cooper on Twitter</a>.</p><p>Thanks for reading! Be sure to leave any feedback below; I’m dying to hear what you have to say!</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>October 7, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/10/07/introducing-the-intelbuilder-cms/" title="Introducing the IntelBuilder CMS">Introducing the IntelBuilder CMS</a></li><li>January 16, 2012 &ndash; <a
href="http://webhostinggeeks.com/blog/2012/01/16/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>December 1, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/01/seo-importance/" title="The Importance of SEO">The Importance of SEO</a></li><li>November 23, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/23/top-social-networks/" title="Top 5 Social Networking Platforms">Top 5 Social Networking Platforms</a></li><li>November 4, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/04/life-blogging-web-2-0/" title="Life Blogging and the Web 2.0">Life Blogging and the Web 2.0</a></li><li>September 25, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/25/search-engine-optimization-tips-for-bing/" title="Search Engine Optimization tips for Bing">Search Engine Optimization tips for Bing</a></li><li>September 21, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/21/search-engine-optimization-companies-worthy-cost/" title="Are Search Engine Optimization Companies – Worthy of the Cost?">Are Search Engine Optimization Companies – Worthy of the Cost?</a></li><li>September 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/15/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>September 14, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/14/dummies-guide-seo/" title="The Dummies&#8217; Guide To SEO">The Dummies&#8217; Guide To SEO</a></li><li>September 10, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/10/advice-search-engine-optimization/" title="Common Advice in Search Engine Optimization">Common Advice in Search Engine Optimization</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/11/29/automate-twitter-relationship/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Top 5 Social Networking Platforms</title><link>http://webhostinggeeks.com/blog/2011/11/23/top-social-networks/</link> <comments>http://webhostinggeeks.com/blog/2011/11/23/top-social-networks/#comments</comments> <pubDate>Wed, 23 Nov 2011 23:31:52 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[Bebo]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Friendster]]></category> <category><![CDATA[Hi5]]></category> <category><![CDATA[MySpace]]></category> <category><![CDATA[social networking]]></category> <category><![CDATA[social networking platform]]></category> <category><![CDATA[social networking sites]]></category> <category><![CDATA[Twitter]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=3146</guid> <description><![CDATA[The world has definitely changed within the last 10 years. Before, communication was challenging and time consuming. To connect with others, there was a simple phone call or perhaps a trip. Now, individuals can come “face-to-face” with their friends and relatives through web cam, Skype and Yahoo Messenger. The process of communicating is virtually easy [...]]]></description> <content:encoded><![CDATA[<p>The world has definitely changed within the last 10 years. Before, communication was challenging and time consuming. To connect with others, there was a simple phone call or perhaps a trip. Now, individuals can come “face-to-face” with their friends and relatives through web cam, <a
href="http://www.skype.com/intl/en/home" target="_blank">Skype</a> and Yahoo Messenger. The process of communicating is virtually easy as there seems to be an endless supply of instant messaging services as well as chatting options with popular social networking sites such as <a
href="http://facebook.com/" target="_blank">FaceBook</a> or <a
href="http://www.myspace.com/" target="_blank">MySpace</a>. Not only do these platforms connect relatives or friends, but also corporations. Virtual meetings can be held over the internet with <a
href="http://www.gotomeeting.com/" target="_blank">GotoMeeting</a> and reports are easily sent with emails. The internet has vastly improved the communication world. With the creation of various social networking sites, people can now be bonded in ways that was not possible before.</p><p>There are many platforms that allow individuals to communicate. Of course, the social networking sites such as Facebook or MySpace are the most popular; however, forums and web discussions are becoming increasingly popular as well. These platforms allow users to discuss various topics and it is very possible that, depending on the subject you are interested in, there is some type of forum that exists that specifically targets that subject. The process of creating a forum or web discussion is dependent on the skills the person has within web hosting and code. Forums and web discussions are still not quite as popular as other social networking sites, but they have the versatility to become anything the creator wants it to be, which is making it popular among individuals.</p><p><strong><span
style="text-decoration: underline">Who are social networking sites for?</span></strong></p><p>Almost everyone has some type of social networking site and businesses are now creating their very own which would allow them to connect more deeply with their customers. By creating such sites, businesses are now able to see what their customers truly think in a relaxed, comfortable state. Individuals and businesses alike want a social networking platform that is easy to use and popular.</p><p>Here are the top five social networking platforms:</p><ol> <a
href="http://www.facebook.com/"><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/facebook-logo.jpg" alt="facebook-logo" title="facebook-logo" width="150" height="47" class="alignnone size-full wp-image-3157" /></a><br
/> <a
href="http://www.myspace.com/"><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/myspace-logo.jpg" alt="myspace-logo" title="myspace-logo" width="150" height="45" class="alignnone size-full wp-image-3156" /></a><br
/> <a
href="http://www.bebo.com/"><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/bebo-logo.gif" alt="bebo-logo" title="bebo-logo" width="150" height="58" class="alignnone size-full wp-image-3155" /></a><br
/> <a
href="http://www.friendster.com/"><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/friendster-logo.gif" alt="friendster-logo" title="friendster-logo" width="150" height="40" class="alignnone size-full wp-image-3154" /></a><br
/> <a
href="http://hi5.com/"><img
src="http://webhostinggeeks.com/blog/wp-content/uploads/2011/11/hi5-logo1-140x61.jpg" alt="hi5-logo" title="hi5-logo" width="150" height="61" class="alignnone size-thumbnail wp-image-3158" /></a></ol><p>These five social networking websites are in the lead over all other social networking sites online. One may wonder how the rankings for the top five social networking platforms are decided. The decision is based on a number of factors. These factors include:</p><ul><li>Profiles</li><li>Security</li><li>Features for Networking</li><li>Support</li><li>Friend Focus</li></ul><p>These few factors are what determine whether or not the social networking platform is a success. Profiles are the most essential factor because this is how a user expresses themselves and who they are to the public and to the people who they know. On a profile, users can talk about their likes and dislikes, hobbies and interests, and literally be themselves. Users value being able to have a profile that is easy to use and allows them to talk about themselves and what they are into. A user profile should be easy to set up and understand, but also decent enough to allow the user to show who they are and their personality through their profile.</p><p><strong><span
style="text-decoration: underline">The Importance of Security</span></strong></p><p>Security is definitely another major factor on what makes a social networking platform successful. Users value their privacy and security. Who would want to be a user of a social networking website that didn&#8217;t value the security of its users? Surely, no one would. Each and every successful social networking platform should have security options for its users. These options include giving the users a block button so that they are able to block anyone they want, especially people who may be bothering them online. Users should also be able to block off certain parts of their profile from other people if they wish.</p><p><strong><span
style="text-decoration: underline">Available Features</span></strong></p><p>The features for networking are definitely an additional bonus. If a social networking platform wants to have success, it will need to offer tons of features to its users. It is important that social networking platforms remember they are in constant competition with others. Features that should be offered to the users include picture updates, video update, groups, status updates, and tons of other features that the users want.</p><p>Support is a necessity especially for those who are new to using social networking platforms. The last thing that a platform should want to do is to leave a user feeling unsure and left out. The platform should offer support and advice to new users and there should always be a section available to users that answers some of the most frequently asked questions.</p><p><strong><span
style="text-decoration: underline">Connecting with Friends</span></strong></p><p>Last but certainly not least, friend focus is essential and it is the main way that a social networking platform will grow. Users want to be able to connect with their friends and family members. If a social networking platform wants to be successful, they have to make the friend focus easy for users to keep in contact with one another.</p><p><strong><span
style="text-decoration: underline">In Conclusion</span></strong></p><p>Overall, it seems as though Facebook has mastered most of these features because it is number one on the list of top five social networking platforms. Facebook has received a 4 star rating for security, support and friend focus. Facebook also received a 3 star rating for profiles and 3.5 stars for networking features. Facebook currently takes the lead as the number one social networking platform, but the website does have some fairly stiff competition.</p><p>MySpace comes in as a close second. The website received a 4 star rating for all features except for the friend focus feature. When it came to friend focus, MySpace received a 3 star rating, which is what put the social networking platform at number two in the list. MySpace is in constant competition with Facebook for the number one spot. If Facebook wants to keep its number one spot or if MySpace wants to reach that number one spot, changes will need to be made on both ends. The same goes for the other three social networking platforms and all of the other platforms that have not been able to make it within the top five.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>August 22, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/08/22/twitter-for-business/" title="How to Use Twitter for Business">How to Use Twitter for Business</a></li><li>December 8, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/12/08/understanding-your-community-hosting-options/" title="Understanding Your Community Hosting Options">Understanding Your Community Hosting Options</a></li><li>December 6, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/06/facebook-vs-myspace/" title="Facebook vs. MySpace &#8211; The Battle for Supremacy">Facebook vs. MySpace &#8211; The Battle for Supremacy</a></li><li>November 30, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/30/facebook-googleplus/" title="Facebook vs. Google Plus">Facebook vs. Google Plus</a></li><li>November 4, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/04/life-blogging-web-2-0/" title="Life Blogging and the Web 2.0">Life Blogging and the Web 2.0</a></li><li>April 27, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/04/27/best-methods-for-generating-youtube-traffic/" title="Best Methods for Generating YouTube Traffic">Best Methods for Generating YouTube Traffic</a></li><li>June 22, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/06/22/the-insecurity-of-web-upload-forms/" title="The Insecurity of Web Upload Forms ">The Insecurity of Web Upload Forms </a></li><li>December 13, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/13/facebook-features/" title="Top 10 Features of Facebook">Top 10 Features of Facebook</a></li><li>December 4, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/12/04/introduction-to-video-hosting/" title="Introduction to Video Hosting">Introduction to Video Hosting</a></li><li>October 7, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/10/07/introducing-the-intelbuilder-cms/" title="Introducing the IntelBuilder CMS">Introducing the IntelBuilder CMS</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/11/23/top-social-networks/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Are The Growing Google Concerns Fair?</title><link>http://webhostinggeeks.com/blog/2011/11/08/growing-google-concerns/</link> <comments>http://webhostinggeeks.com/blog/2011/11/08/growing-google-concerns/#comments</comments> <pubDate>Tue, 08 Nov 2011 09:11:16 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[Random Stuff]]></category> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[China Syndrome]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Privacy concerns]]></category> <category><![CDATA[site ranking]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2987</guid> <description><![CDATA[With Google&#8217;s ascent to the top of not only the internet world but the entire global business world comes the expected amount of complaints about its practices.  This isn&#8217;t to say that the complaints are all knee-jerk, more that there&#8217;s probably some statistical average of, shall we say, “yuck” that a company needs to participate [...]]]></description> <content:encoded><![CDATA[<p>With Google&#8217;s ascent to the top of not only the internet world but the entire global business world comes the expected amount of complaints about its practices.  This isn&#8217;t to say that the complaints are all knee-jerk, more that there&#8217;s probably some statistical average of, shall we say, “yuck” that a company needs to participate in, in order to get that far.</p><p>So this isn&#8217;t unexpected.  The bigger question is, <em>is it fair?</em>  For those of you not aware of the nitty gritty, we take a look here at some of the biggest complaints lodged against the king of search engines, maps, and about 50 other services, to see whether or not they deserve all of the bad rep they&#8217;ve gotten.</p><p><strong>Site rankings – what&#8217;s fair?</strong></p><p><em><span
style="text-decoration: underline">The problem</span></em>: Google is still thought of first as not only the world&#8217;s most used search engine, but in some cases the world&#8217;s only search engine.  “Google” is a verb; you never hear someone saying that they are going to “Bing” their name.  This has placed immense importance on the search engine&#8217;s results, which in turn, has caused some to object that the rankings the search engines give to certain results are not fair.</p><p><em><span
style="text-decoration: underline">Our take</span></em>: The problem with this objection is that we have now collectively come to any real determination about what a “fair” search engine would look like.  An example of this is the complaint that newer sites often get nudged out in favor of those of established sites.  But is that not arguably a good thing?  If I made a website tomorrow called the “Toyota Checkers Club”, should the term “Toyota” really give equal weighting to both my site and the car manufacturer?</p><p>A more reasonable complaint is in the assertion that Google may favor their own sites and products disproportionately to that of other web sites that are just as popular and established, offering the same services.  Google has responded in turn that they do not “cook the books” to favor their own sites.  Are they telling the truth?  On this one, we suggest stepping back and seeing what the hard data says before drawing any conclusions.</p><p><strong>The China Syndrome</strong></p><p><em><span
style="text-decoration: underline">The problem</span></em>: As big as Google is, they are still subject to the law.  Being a global company, this means that they are subject to many competing laws.  While some of them have drawn little criticism, such as their compliance with the Digital Millennium Copyright Act and removal of child pornography web sites, it was their alliance with the Chinese government that drew the greatest condemnation.</p><p>China has had what is known as the “Great Firewall” in place for roughly a decade now, and if Google was to take part in Chinese electronic society, it would have to submit to its requirements.  For a while, they chose to do exactly that, and a firestorm of complaints followed.</p><p><em><span
style="text-decoration: underline">Our take</span></em>: It is perhaps a minority position, but we consider this the most unfair of all the complaints made against Google.  China&#8217;s policies are not Google&#8217;s fault. To the end, it appears that Google stretched China&#8217;s electronic rules to their limits.  One example of this is the fact that users who had their search results censored, as happened with people who attempted to find information on, for example, the Tianamen Square Massacre, were told that they had their results censored.  This is a rather amazing concession, as it practically begs the user to hack around the firewall to find out more.</p><p>Moreover, what Google probably realized and Chinese authorities didn&#8217;t, is that users who want to get around their restrictions can.  Hackers live by getting around restriction.  So while governmental buffoons are running around trying to find what the hot term of the day is to censor, the billion users are finding hundreds of new terms to say the same thing.  Playing along with the Chinese government probably did wonders in letting those who knew how to play with Google&#8217;s systems to get out of it what they wanted.</p><p>And when even that wasn&#8217;t enough and China started hacking Google for user information, they finally pulled the plug.  No, on this one, we can&#8217;t convict.</p><p><strong>Privacy concerns</strong></p><p><em><span
style="text-decoration: underline">The problem</span></em>: We probably don&#8217;t even need to define the problem.  Any company whose currency is information is naturally going to get involved in situations in which they are accused of using that information inappropriately.  There are too many examples of this to easily list here.</p><p><em><span
style="text-decoration: underline">Our take</span></em>: The problem with this complaint is that while it is in an area which one would be rightly concerned about, so far few of the complaints have been that specific.  They have mostly taken the form of noticing cooperation between Google and various governmental authorities, but not making much of the way of exact charges.  This leaves us in a grey area of worry without hard evidence.</p><p>We are not going to go so far in this case as to de facto clear Google of all wrongdoing.  What we can say is that we are not seeing the tendency we see in, say, Facebook, to see just how fast they are capable of selling themselves out.  We&#8217;re not saying it&#8217;s not there, only that as of right now, we need to see more solid data.</p><p><strong>Other concerns</strong></p><p>Summarizing some of the other complaints about Google we have the following:</p><ul><li><strong><span
style="text-decoration: underline">Copyright</span></strong>: Projects like Google Books have been criticized on their failure to observe copyright agreements.  Whether or not this is a bad thing is probably a function of what your personal views on intellectual property is.</li><li><strong><span
style="text-decoration: underline">Energy consumption</span></strong>: Some have criticized Google on environmental grounds, claiming that their servers use up as much energy as a large American city.  Google has responded with investments in green energy.  This complaint is hard to really put much stock into, as it’s more a function of how popular their servers are than in any action on their part.</li><li><strong><span
style="text-decoration: underline">Street view</span></strong>: Google&#8217;s Street View has been the subject of a number of complaints.  One was, again, an invasion of privacy on a pictorial level.  It seems hard logically to avoid that, and the number of complaints has been far outweighed by the number of people who use the service. Another was its surveillance of Wi-Fi networks.  This raised more hairs, and this time Google agreed, stating that they were <em>“acutely aware that they failed badly here”.</em></li></ul><p><strong><span
style="text-decoration: underline">Off the hook?</span></strong></p><p>For most of these issues, we&#8217;ve given Google a partial or total pass, or at least the benefit of the doubt.  This may make it sound like we&#8217;re acquitting them across the board.  We&#8217;re not.  As Google sticks its hand into just about every area of the World Wide Web experience, it&#8217;s right to keep a close eye on their activities.  So far though, for being one of the biggest companies in human history, they don&#8217;t seem to be doing all that bad a job of following their own motto <em>“Don&#8217;t be evil.”</em></p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>October 5, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/05/social-networking-wars/" title="Social Networking Wars – A Great Show, and an Educational One">Social Networking Wars – A Great Show, and an Educational One</a></li><li>September 10, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/10/advice-search-engine-optimization/" title="Common Advice in Search Engine Optimization">Common Advice in Search Engine Optimization</a></li><li>August 31, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/08/31/top-5-cloud-storage-service-providers/" title="Top 5 Cloud Storage Service Providers">Top 5 Cloud Storage Service Providers</a></li><li>March 22, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/03/22/google-docs-improving-social-commenting/" title="Google Docs Improving Social Commenting">Google Docs Improving Social Commenting</a></li><li>January 21, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/01/21/where-is-google-headed/" title="Where is Google Headed?">Where is Google Headed?</a></li><li>August 3, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/08/03/what-is-the-google-sandbox/" title="What is the Google Sandbox?">What is the Google Sandbox?</a></li><li>July 2, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/07/02/what-is-the-google-caffeine-update/" title="What is the Google Caffeine Update? ">What is the Google Caffeine Update? </a></li><li>April 23, 2010 &ndash; <a
href="http://webhostinggeeks.com/blog/2010/04/23/serps-and-backlinks-%e2%80%93-the-keys-to-seo/" title="SERPs and Backlinks – The Keys to SEO ">SERPs and Backlinks – The Keys to SEO </a></li><li>December 30, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/12/30/five-simple-website-safety-tips/" title="Five Simple Website Safety Tips ">Five Simple Website Safety Tips </a></li><li>November 2, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/11/02/do-you-need-cloud-hosting/" title="Do You Need Cloud Hosting? ">Do You Need Cloud Hosting? </a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/11/08/growing-google-concerns/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to Start Your Own Social Networking Site &#8211; And Keep it Up</title><link>http://webhostinggeeks.com/blog/2011/10/27/start-your-own-social-networking-site/</link> <comments>http://webhostinggeeks.com/blog/2011/10/27/start-your-own-social-networking-site/#comments</comments> <pubDate>Thu, 27 Oct 2011 12:51:51 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[Buddypress]]></category> <category><![CDATA[Elgg]]></category> <category><![CDATA[Kit Social]]></category> <category><![CDATA[Ning]]></category> <category><![CDATA[social networking]]></category> <category><![CDATA[SocialGo]]></category> <category><![CDATA[WiserEarth]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2822</guid> <description><![CDATA[If it exists on the internet, chances are someone has made it easier for you to do the same thing yourself.  Social networking is increasingly included in this rule.  As it becomes a world onto itself, it&#8217;s becoming easier for individual users to create their own islands within it. If you&#8217;re tired of FaceBook, Twitter, [...]]]></description> <content:encoded><![CDATA[<p>If it exists on the internet, chances are someone has made it easier for you to do the same thing yourself.  Social networking is increasingly included in this rule.  As it becomes a world onto itself, it&#8217;s becoming easier for individual users to create their own islands within it.</p><p>If you&#8217;re tired of FaceBook, Twitter, and all of the other sites that you can name as well as we can, you always have the option to just go it at yourself, and create your own place to share <a
href="http://www.lolcats.com/" target="_blank">LOLcats pics</a> and <a
href="http://youtube.com" target="_blank">YouTube videos</a>.  Like all such endeavors, it comes with its own caveats and warnings ahead of time that should be heeded.</p><p><strong>Know why you&#8217;re doing it</strong></p><p>Perhaps more than most other types of internet endeavors, you need to think clearly about exactly why you are doing this.  With so much of the world already taken by existing networks, you&#8217;re not going to get people running to your new one just because it exists.</p><p>If you want to have any reasonable hope that your network will go anywhere, it needs to be a place that services a type of community that isn&#8217;t well-served anywhere else.  Here are a few examples:</p><p>Business and artistic guilds and communities that need to maintain strong ties to one another.</p><ul><li>Social groups that are, if not marginalized, perhaps at least specialized enough that they could benefit from the special attention that someone who understands them can give.</li><li>Religious groups that would benefit from the safety of an environment in which they know they wouldn&#8217;t be judged.</li></ul><p><strong>Know where you&#8217;re doing it</strong></p><p>If you&#8217;ve gotten that far, then your next question is where you are going to setup shop.  Included in the question of “where” is “how”.  There are two main routes you can go here.</p><p>One way you can do this is to find some social networking software, load it onto your web hosting account, fire it up and handle the administrative back-end yourself.  There are a number of key advantages to this approach.  You will have every customization option at your fingertips, especially since many of the packages that you&#8217;ll find are open-source.  You&#8217;ll have full access to the network&#8217;s back-end at all times in case of a problem.  All of this means, though, that it could be a lot more work.  You may get some help from your web host if you run into technical difficulty, but don&#8217;t count on it.</p><p>The other method is to setup a network that is a part of larger social networking super-site.  There exist web sites where you can create your own social networking home from within their larger community.  The advantages of this approach are that their setup tends to be far easier, and you have the support of people who know how to run these specific networks backing you up.  The disadvantage is that you are also that their mercy.  If they decide they don&#8217;t like your topic for whatever reason you could be shut down on a moment&#8217;s notice.  You are also beholden to their tech support, which in some cases didn&#8217;t promise any impressive response times.</p><p><strong>If you want it easy</strong></p><p>All that said, here are a few places in which you can pursue the latter option and let someone else do the heavy lifting:</p><ul><li><strong><span
style="text-decoration: underline"><a
href="http://www.ning.com/" target="_blank">Ning</a></span></strong> – Ning is by far the largest of these services that you will find.  Operating since 2005, its servers host more than 90,000 networks.  That size though comes with a price … literally.  Last year Ning removed all free social networks from their site.  Granted, their lowest level account is a mere $2.95 a month.  Still, they&#8217;re done a lot of other things to send the strong message that they are heavily focused on their bottom line, such as removing all adult sites and removing the search feature until user pressure forced them to reinstate it.</li><li><strong><span
style="text-decoration: underline"><a
href="http://www.socialgo.com/" target="_blank">SocialGO</a></span></strong> – A smaller network, but one with a rich list of features.</li><li><strong><span
style="text-decoration: underline"><a
href="http://www.wiserearth.org/" target="_blank">WiserEarth</a></span></strong> – A good home for networks designed around a social issue.  Be sure to look at their terms of service: they are very specific about what kinds of groups do and don&#8217;t qualify.</li></ul><p><strong>If you want to do it yourself</strong></p><p>If you are ready to be bold and dive into the nuts and bolts of setting this up yourself, here are some of the software packages most commonly suggested:</p><ul><li><strong><span
style="text-decoration: underline"><a
href="http://buddypress.org/" target="_blank">Buddypress</a></span></strong> – This open-source WordPress plug in has a lot of fans.  It is free, easily customizable with addons and templates, and some hosts actually support one-click install for it.</li><li><strong><span
style="text-decoration: underline"><a
href="http://www.kitd.com/kickapps/" target="_blank">Kit Social Platform</a></span></strong> – Formerly known as “KickApps”, this is one of the more respected of the professional (meaning, not free) solutions.  It works off of your own domain, comes with an API and developers kit, and is available for a 14-day-trial from distributing company KIT digital.</li><li><strong><span
style="text-decoration: underline"><a
href="http://elgg.org/" target="_blank">Elgg</a></span></strong> – Elgg has been around for a long time, and has been a popular choice for most of its existence.  It is described as being both full of features and simple to use.</li></ul><p><strong>I&#8217;ve set it up: now what do I do?</strong></p><p>First, obviously, you need users.  Don&#8217;t measure yourself by FaceBook.  If you have 100 or so users, that&#8217;s a success.  Remember, unless you&#8217;re trying to run this as a business (not something we would advise given the competition), your goal is to support a community.  Every single person that you do this for is one more victory.</p><p>Once they are there, you simply need to help keep the community&#8217;s blood flowing.  One web site suggested that it was akin to a dinner party: you need to provide the space, the atmosphere, and then a few seeds of conversation.  From there, you step back and let it happen, nudging it from time to time when necessary.</p><p><strong>It&#8217;s your baby: nurture it</strong></p><p>That last part is mandatory: you have to keep an eye on it at all times.  The number of ways that it can devolve into something not worth most of its members&#8217; time because of a few bad apples is countless.  Also keep a close ear out for what features you may want to add on to help boost the community&#8217;s discussion effectiveness.  Finally, make sure that you encourage users to write you about any technical problem they see, no matter how small.</p><p>Don&#8217;t be too intimidated.  This is work, but it&#8217;s work others have done, and you can too.  Even if all you make is a small home for a few people that need it, the reward</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>December 13, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/13/facebook-features/" title="Top 10 Features of Facebook">Top 10 Features of Facebook</a></li><li>December 6, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/06/facebook-vs-myspace/" title="Facebook vs. MySpace &#8211; The Battle for Supremacy">Facebook vs. MySpace &#8211; The Battle for Supremacy</a></li><li>November 30, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/30/facebook-googleplus/" title="Facebook vs. Google Plus">Facebook vs. Google Plus</a></li><li>November 23, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/23/top-social-networks/" title="Top 5 Social Networking Platforms">Top 5 Social Networking Platforms</a></li><li>November 4, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/04/life-blogging-web-2-0/" title="Life Blogging and the Web 2.0">Life Blogging and the Web 2.0</a></li><li>October 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/15/exploring-the-social-networking-world/" title="Exploring The Social Networking World">Exploring The Social Networking World</a></li><li>September 10, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/10/advice-search-engine-optimization/" title="Common Advice in Search Engine Optimization">Common Advice in Search Engine Optimization</a></li><li>September 6, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/06/e-commerce-and-social-media/" title="E-commerce and Social Media: No Longer Oil and Water">E-commerce and Social Media: No Longer Oil and Water</a></li><li>August 22, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/08/22/twitter-for-business/" title="How to Use Twitter for Business">How to Use Twitter for Business</a></li><li>December 8, 2009 &ndash; <a
href="http://webhostinggeeks.com/blog/2009/12/08/understanding-your-community-hosting-options/" title="Understanding Your Community Hosting Options">Understanding Your Community Hosting Options</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/10/27/start-your-own-social-networking-site/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Competition in Social Networking: The Rise of Google+ and the Status of FaceBook</title><link>http://webhostinggeeks.com/blog/2011/10/25/competition-in-social-networking-google-plus-facebook/</link> <comments>http://webhostinggeeks.com/blog/2011/10/25/competition-in-social-networking-google-plus-facebook/#comments</comments> <pubDate>Tue, 25 Oct 2011 08:50:43 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Google Google+]]></category> <category><![CDATA[privacy]]></category> <category><![CDATA[social network]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2798</guid> <description><![CDATA[It&#8217;s been seen all over the tech world news, people are increasingly displeased with FaceBook and their questionable privacy practices  as well as their increasing addition of new features without even a previous statement giving the user the opportunity to choose if they wish to implement them at this time. It has also been a [...]]]></description> <content:encoded><![CDATA[<p>It&#8217;s been seen all over the tech world news, people are increasingly displeased with <a
href="http://www.facebook.com/" target="_blank">FaceBook</a> and their questionable privacy practices  as well as their increasing addition of new features without even a previous statement giving the user the opportunity to choose if they wish to implement them at this time. It has also been a well-known fact that, generally speaking, Google has not gotten the hang of social networking, just yet.</p><p>Thankfully, those days are now over. When Google announced its newest social networking initiative, <a
href="https://plus.google.com" target="_blank">Google+</a>, most people were, of course, skeptical. After all, Buzz shared all of their contacts information and their own publicly and angered their users to no end. It also brought the company under an oversight committee with the FCC for the next 20 years. So on June 28<sup>th</sup> 2011 when a limited field trial of Google+ was announced on the official Google blog, there were those who were generally not that interested or impressed. However, as time went by and invitations were beginning to circulate, an amazing thing occurred: IT was proclaimed that Google finally got their user-friendly privacy laden social networking engine!</p><p><strong>Spam Infested Walls and Poorly Managed Group</strong><strong>s</strong></p><p>The timing of this release could not have been better, truly. During this time period, FaceBook had begun making improvements to how the social networking giant handled everything from personal details and security to how friends lists were displayed, and there were very few users who were satisfied, let alone happy with the changes. Their news feeds were being dominated by those applications that now had free reign to post on friends&#8217; walls crowding out the actual status updates with games like “Fish-ville” and “Sims.” Users were also finding that their groups were being attacked and changed, a move that made it impossible for the group leader to interact with their group members no matter how long the group had been in existence without beginning again from moment one and re-inviting them to join the group.</p><p>Many users had been asking for the option of further defining their friends groups so that updates could be further managed. While FaceBook made a move to have options for showing a particular post only to XYX friends list or to exclude XYZ person or group of friends, it was clunky and the rules must be set for each post. Google+ learned much it seems from the problems that FaceBook has been facing. With a neatly streamlined interface, users are given “circles” of friends that are user defined. When posting, you are given a prompt to choose which circles you wish to share this with, or if you want to share it publicly, with all users.</p><p><strong>Profiles, Interests, and User Choice</strong></p><p>Another feature of Google+ that users find to be a better executed version of a FaceBook feature is how interests appear. On FaceBook, in the sidebars of your page, there are listings for interests such as: actresses, movies and establishments. There is the option to “like” them, adding a listing in your profile of goodness only knows how many listings. From the most inane like “sleep” and “food” to the names of bands and movies, your profile becomes cluttered with this mess! Taking a lesson from these oft voiced issues, Google+ Created what they call “sparks”. These are user interests and, when searched for and chosen, only the ones that you mark specifically are added to your sparks file and you receive updates on your news feed for only those that you chose.</p><p><strong>Chat and Archiving</strong></p><p>When it comes to chat, Google+ uses their ever stable G chat which rarely, if ever, freezes or otherwise disrupts the browser of the user, and saves conversations within your G mail in a special folder meant for them. Unfortunately, FaceBook seems to not yet understand the need for a stable chat engine or for easy archiving of said conversations. Regularly FaceBook chat will freeze a user’s browser and messages get stashed away in your in-box, making it impossible unless you have an excellent memory to tell a conversation from an in-box message.</p><p>Also, a much clamored-over feature that FaceBook users have been rallying for is Video conferencing and group chat. While these features are now available on FaceBook, Google+ was launched with them available and working without any freezing or slowing of your system or even distortion of sound.</p><p><strong>Privacy</strong></p><p>FaceBook has been charged with many privacy issues, especially lately, including:</p><ul><li><strong>Data mining:</strong> Where information is gathered about a person through their website usage and used to advertise other services to them. The information gathered is often sold to a third party.</li></ul><ul><li><strong>Customization Issues:</strong> FaceBook only allows for plain text to customize your site, unlike some of its more popular contenders. Due to this however, innovative minds have begun creating and using hacks to customize their sites, causing others to become infected with their hacks (usually Java Scripted) and slowing down their system.</li></ul><ul><li><strong>Lack of live support:</strong> In our 24/7 lives, customer service that is live and reachable at any time around the clock is crucial. Especially since FaceBook sells credits for its widely-used games, questions about billing are sure to arise.</li></ul><p>Google+, while in its infancy, is working out the kinks as they go along.</p><ul><li><strong>Privacy:</strong> Google+ is fueled by your Google profile which in its default settings is 100% search-able.</li></ul><ul><li><strong>Service Linking:</strong> Google is fond of linking all of its services to create a suite of programs that can be used together <em>or</em> separately. Be certain of what Google products are being drawn upon when you sign up and begin posting.</li></ul><ul><li><strong>Copyright:</strong> A not well known clause in their terms of use make anything that you post using Google+ the property of Google and can be used in any way that they see fit. This, as I am sure you can imagine, makes some waves.</li></ul><p><strong>In conclusion</strong></p><p>While FaceBook and Google+ both have their flaws and their upsides, it is being shown now that what was once the product or service on every person&#8217;s lips, there will always be new innovations in social networking. It has become such a large part of how to communicate with our loved ones, coworkers and friends that seeing more streamlined and more secure services will be the path that any and all social networking sites must take if they wish to survive. Google+ is here to stay. However, so is FaceBook, as they will eventually serve two different demographics. Our prediction is that Google+ will become the social network of the 20-30 something business people while those younger and older will gravitate towards busier FaceBook.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>December 7, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/07/facebook-privacy/" title="Facebook and Privacy: A Strain too Great?">Facebook and Privacy: A Strain too Great?</a></li><li>December 14, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/14/best-android-apps/" title="Arm Yourself with the Top 5 Android Apps">Arm Yourself with the Top 5 Android Apps</a></li><li>December 13, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/13/facebook-features/" title="Top 10 Features of Facebook">Top 10 Features of Facebook</a></li><li>December 6, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/06/facebook-vs-myspace/" title="Facebook vs. MySpace &#8211; The Battle for Supremacy">Facebook vs. MySpace &#8211; The Battle for Supremacy</a></li><li>November 30, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/30/facebook-googleplus/" title="Facebook vs. Google Plus">Facebook vs. Google Plus</a></li><li>November 23, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/23/top-social-networks/" title="Top 5 Social Networking Platforms">Top 5 Social Networking Platforms</a></li><li>November 4, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/04/life-blogging-web-2-0/" title="Life Blogging and the Web 2.0">Life Blogging and the Web 2.0</a></li><li>October 26, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/26/tor-look-at-the-onion-router/" title="What is Tor? A Closer Look at The Onion Router">What is Tor? A Closer Look at The Onion Router</a></li><li>October 15, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/15/exploring-the-social-networking-world/" title="Exploring The Social Networking World">Exploring The Social Networking World</a></li><li>October 13, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/13/facebook-new-king-advertise-in-their-kingdom/" title="Facebook is the New King – How to Advertise in Their Kingdom">Facebook is the New King – How to Advertise in Their Kingdom</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/10/25/competition-in-social-networking-google-plus-facebook/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Exploring The Social Networking World</title><link>http://webhostinggeeks.com/blog/2011/10/15/exploring-the-social-networking-world/</link> <comments>http://webhostinggeeks.com/blog/2011/10/15/exploring-the-social-networking-world/#comments</comments> <pubDate>Sat, 15 Oct 2011 14:56:33 +0000</pubDate> <dc:creator>Art</dc:creator> <category><![CDATA[SEO / SEM]]></category> <category><![CDATA[CafeMom]]></category> <category><![CDATA[Care2]]></category> <category><![CDATA[deviantART]]></category> <category><![CDATA[Link Expats]]></category> <category><![CDATA[social network]]></category> <category><![CDATA[social networking]]></category> <category><![CDATA[Stickam]]></category><guid
isPermaLink="false">http://webhostinggeeks.com/blog/?p=2727</guid> <description><![CDATA[Facebook, Twitter, and probably soon Google+, get most of the analysis of the social networking world.  With that comes most of the attention of advertisers.  This is the billion-user World Wide Web, though.  For every bar that all the cool kids are hanging out at, there are plenty of local bars near them with people [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.facebook.com/" target="_blank">Facebook</a>, <a
href="http://twitter.com/" target="_blank">Twitter</a>, and probably soon <a
href="https://plus.google.com" target="_blank">Google+</a>, get most of the analysis of the social networking world.  With that comes most of the attention of advertisers.  This is the billion-user World Wide Web, though.  For every bar that all the cool kids are hanging out at, there are plenty of local bars near them with people spending money the same as anyone else.</p><p>These local hangouts, though, can often be a little less friendly to marketing sharks.  Let&#8217;s face it, too: you&#8217;re not interested in being one.  You just want to advertise your services to people who might honestly be interested.  Even the local dives have ads posted in them.  To do so simply requires that you understand the scene, and treat it with respect.</p><p>So let&#8217;s drop the metaphor and look at some of the smaller but still popular social networking sites.  For our purposes we are going to focus on native English sites that mostly have at least 1 million users.  If you can speak other languages then there are many very large ones that represent good alternate markets.</p><p><strong>CafeMom</strong></p><p><a
href="http://www.cafemom.com/" target="_blank">CafeMom</a> has been growing tremendously, and is on the verge of breaking through “niche” status to become one of the web&#8217;s bigger players.  An outgrowth of ClubMom, this social networking site panders to the moms who need an outlet that they can share with other moms (men are specifically barred from registering).  General socializing happens here, but also advice and support for just about every mothering need out there.</p><p><em><span
style="text-decoration: underline">What the advertiser should know</span></em>: CafeMom is very advertiser friendly.  If you are offering a physical product of some kind, you should consider sending free samples: this is one of the draws the site uses to get people to register.  Remember that the goal of this site is to make the lives of the mothers there easier.  Make sure that whatever you are advertising is geared towards that, even if indirectly.</p><p><strong>Care2</strong></p><p>It&#8217;s a sign of how huge the World Wide Web has become that a site with 14 million users is considered 2nd-tier.  Care2 hasn&#8217;t rushed to growth, but has been slowly building their user base since 1998.  The reason is that this is not a site that puts profits first.  <a
href="http://www.care2.com/" target="_blank">Care2</a> is a social networking site for activists.  It allows individuals to work with each other, discuss issues, and most importantly find concrete ways to channel their energies into effective social change.</p><p><em><span
style="text-decoration: underline">What the advertiser should know</span></em>: Care2 takes their commitment to social values seriously.  This includes their approach to advertisements.  They have on their site a long explanation of what their advertising principles are.  Read it.  Make sure you can convince them that you will enhance their site, not just draw from it. One minor marketing addendum: according to the site&#8217;s founder, Care2&#8242;s user base is also mostly female.</p><p><strong>Link Expats</strong></p><p>If you measure the success of a web site by how well it fulfills the Web&#8217;s potential of bringing disparate people together, this is about as successful as it gets.  <a
href="http://www.linkexpats.com/" target="_blank">Link Expats</a> is a place for people who are removed from their home country for any reason to find each other, talk, and assist each other.</p><p><em><span
style="text-decoration: underline">What the advertiser should know</span></em>: While some of the reasons that someone would be a member of this site are benign, some are (literally) deadly serious.  This site as a result has strong privacy protections.  Users can&#8217;t even friend each other, but they can ban one another easily for spamming.  Get the idea?  Follow the site&#8217;s rules to a T, and don&#8217;t push.</p><p><strong>deviantART</strong></p><p><a
href="http://www.deviantart.com/" target="_blank">deviantART</a> is one of the longest running and best supported amateur artist social networking sites in existence.  Just about every type of 2D art is represented, and with 14 million members, just about every demographic is represented.  There isn&#8217;t that much in the way of large communal spaces: chat rooms are the only thing this site has that fulfills that function.  Most of the interaction occurs on the pages of artists and their works.</p><p><em><span
style="text-decoration: underline">What the advertiser should know</span></em>: Ads are only visible to users who don&#8217;t upgrade to premium memberships.  That doesn&#8217;t look to be a small demographic on this site any time soon, though (reference the term “starving artist”).  In fact, it&#8217;s large enough that you can almost treat this like a “normal” demographic distribution of users, albeit one with a bit of geeky edge to it.  Anything either tech-oriented or counterculture-leaning should find an audience here.</p><p><strong>Stickam</strong></p><p>You might have used this site before and not realized it.  <a
href="http://www.stickam.com/" target="_blank">Stickam</a> is one of the premier media sharing sites on the web, with a particular focus on streaming video.  Because the demand for this kind of service is quickly growing, and because they make embedding easy, Stickam winds up often quietly embedded in other web sites.  If a site you use has recently addedy a video chat room, check the credits: it&#8217;s possibly a Stickam room.</p><p><em><span
style="text-decoration: underline">What the advertiser should know</span></em>: Stickam has worked heavily with major media kings like MTV and CBS Radio.  This gives it a bit of a MySpace feel: if you know the kind of demographic that comparison brings to mind, then you know about what to expect.  If you don&#8217;t, we&#8217;ll sum it up: a culturally diverse group of mostly beginner to intermediate web users (this is a broad stroke: please don&#8217;t take offense Stickam wizards) who probably are used to seeing web advertising.  This is with one catch: many chat rooms are adult-oriented.  Be sure you&#8217;re OK with this.</p><p><strong><a
href="http://vampirefreaks.com/" target="_blank">VampireFreaks</a></strong></p><p>It may seem like we&#8217;re just fulfilling some editorial requirement of including one “strange” site by closing with these guys.  This isn&#8217;t so much that case.  It&#8217;s more to hammer home the point that sometimes you are dealing with a very specific subculture, and you need to know how to approach them with respect.</p><p>VF servers the “Gothic Industrial Culture”.  If you don&#8217;t know what this is then it&#8217;s hard to describe it without resorting to obnoxious stereotypes.  Consider it those who like to “play in the dark”, in just about every meaning that this phrase might bring to mind.  The name itself is likely a “scaring the normal” point of pride jab.  If this description in any way weird you out, you should probably look elsewhere.</p><p><em><span
style="text-decoration: underline">What the advertiser should know</span></em>: This is a very self-aware demographic.  Thus it&#8217;s best to neither approach them with a typical suit-and-tie motif nor try to pretend you&#8217;re a part of this crowd, assuming you&#8217;re not.  Despite the very showy appearance of this crowd, believe it when we say that they&#8217;ll respect you the more real you are.</p><h3  class="related_post_title">Related posts:</h3><ul
class="related_post"><li>December 13, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/13/facebook-features/" title="Top 10 Features of Facebook">Top 10 Features of Facebook</a></li><li>December 6, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/12/06/facebook-vs-myspace/" title="Facebook vs. MySpace &#8211; The Battle for Supremacy">Facebook vs. MySpace &#8211; The Battle for Supremacy</a></li><li>November 30, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/30/facebook-googleplus/" title="Facebook vs. Google Plus">Facebook vs. Google Plus</a></li><li>November 23, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/23/top-social-networks/" title="Top 5 Social Networking Platforms">Top 5 Social Networking Platforms</a></li><li>November 4, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/11/04/life-blogging-web-2-0/" title="Life Blogging and the Web 2.0">Life Blogging and the Web 2.0</a></li><li>October 27, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/27/start-your-own-social-networking-site/" title="How to Start Your Own Social Networking Site &#8211; And Keep it Up">How to Start Your Own Social Networking Site &#8211; And Keep it Up</a></li><li>October 25, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/10/25/competition-in-social-networking-google-plus-facebook/" title="Competition in Social Networking: The Rise of Google+ and the Status of FaceBook">Competition in Social Networking: The Rise of Google+ and the Status of FaceBook</a></li><li>September 10, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/10/advice-search-engine-optimization/" title="Common Advice in Search Engine Optimization">Common Advice in Search Engine Optimization</a></li><li>September 6, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/09/06/e-commerce-and-social-media/" title="E-commerce and Social Media: No Longer Oil and Water">E-commerce and Social Media: No Longer Oil and Water</a></li><li>August 22, 2011 &ndash; <a
href="http://webhostinggeeks.com/blog/2011/08/22/twitter-for-business/" title="How to Use Twitter for Business">How to Use Twitter for Business</a></li></ul>]]></content:encoded> <wfw:commentRss>http://webhostinggeeks.com/blog/2011/10/15/exploring-the-social-networking-world/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

Served from: webhostinggeeks.com @ 2012-02-09 13:21:08 -->
