<?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>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; webmaster</title> <atom:link href="http://www.ghacks.net/tag/webmaster/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 16:53:42 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Speed Up WordPress Page Loading Times By Removing l10n.js</title><link>http://www.ghacks.net/2011/10/25/speed-up-wordpress-page-loading-times-by-removing-l10n-js/</link> <comments>http://www.ghacks.net/2011/10/25/speed-up-wordpress-page-loading-times-by-removing-l10n-js/#comments</comments> <pubDate>Tue, 25 Oct 2011 12:19:05 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[page load]]></category> <category><![CDATA[speed up site]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress tips]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=51927</guid> <description><![CDATA[I recently noticed that my WordPress blog&#8217;s page loading times increased through the roofs which made me reevaluate everything that contributed to the loading times of the website. I implemented a few changes on the blog to improve page loading times. I first got rid of the three social networking buttons pointing to Google Plus, [...]]]></description> <content:encoded><![CDATA[<p>I recently noticed that my WordPress blog&#8217;s page loading times increased through the roofs which made me reevaluate everything that contributed to the loading times of the website. I implemented a few changes on the blog to improve page loading times. I first got rid of the three social networking buttons pointing to Google Plus, Facebook and Twitter, and replaced them with the Add This script instead. The benefit here was that it reduced the external JavaScript code that needed to be loaded for the functionality from three to one.</p><p>I also noticed that articles with hundreds of comments were loading significantly slower than pages with less comments. This made me reduce the number of comments per page to 50 root comments (plus their answers).</p><p>Today I noticed that WordPress added another JavaScript to ever page. The script in wp-inlcudes/l10n.js that is related to the admin bar that the WordPress developers added to one of the recent versions of the blogging platform.</p><p>While it is a small file with a size of 233 bytes it is still a script that is loaded by anyone, not just the admin of the blog. This somehow does not make a lot of sense. The important thing here is that the blog needs to make the request to load the element, not the time it takes to load the 223 bytes.</p><p><a
href="http://www.ghacks.net/wp-content/uploads/2011/10/ghacks-page-objects.jpg"><img
src="http://www.ghacks.net/wp-content/uploads/2011/10/ghacks-page-objects-600x296.jpg" alt="ghacks page objects" title="ghacks page objects" width="600" height="296" class="alignnone size-medium wp-image-51928" /></a></p><p>WordPress administrators may want to remove the JavaScript element from being loaded by every blog visitor to speed up the blog&#8217;s page loading times. The easiest way to remove the l10n.js from being loaded with WordPress is to unload it in the functions.php file in the WordPress theme folder.</p><p>All you need to do for that is to add the following line of code to the end of the functions.php file.</p><p><code>wp_deregister_script('l10n');</code></p><p>Please note that this may disable part of the admin bars toolbar functionality. Users over at <a
href="http://wordpress.stackexchange.com/questions/5451/what-does-l10n-js-do-in-wordpress-3-1-and-how-do-i-remove-it">Stack Exchange</a> have found a way to keep the JavaScript loaded for administrators of the blog.</p><p>if ( !is_admin() ) {<br
/> function my_init_method() {<br
/> wp_deregister_script( &#8216;l10n&#8217; );<br
/> }<br
/> add_action(&#8216;init&#8217;, &#8216;my_init_method&#8217;);<br
/> }</p><p>Just add this code instead to the functions.php file.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/10/25/speed-up-wordpress-page-loading-times-by-removing-l10n-js/feed/</wfw:commentRss> <slash:comments>20</slash:comments> </item> <item><title>MobiTest, Test Mobile Website Performance</title><link>http://www.ghacks.net/2011/10/06/mobitest-test-mobile-website-performance/</link> <comments>http://www.ghacks.net/2011/10/06/mobitest-test-mobile-website-performance/#comments</comments> <pubDate>Thu, 06 Oct 2011 19:36:06 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Online Services]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[mobile devices]]></category> <category><![CDATA[mobitest]]></category> <category><![CDATA[page speed]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[website performance]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=51223</guid> <description><![CDATA[The rise of smartphones and other mobile handheld devices has increased the importance of optimizing websites for smartphones and other mobile devices. There are three core aspects that need to be taken into consideration. The size of the display which is often a lot smaller than standard desktop display resolutions, the technologies supported by those [...]]]></description> <content:encoded><![CDATA[<p>The rise of smartphones and other mobile handheld devices has increased the importance of optimizing websites for smartphones and other mobile devices. There are three core aspects that need to be taken into consideration. The size of the display which is often a lot smaller than standard desktop display resolutions, the technologies supported by those devices and the bandwidth which often results in slower connection speeds and as a result page loading times.</p><p>MobiTest is a free online service that webmasters can use to test the performance of websites on mobile devices. The service is completely free and requires no registration.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/10/mobile-website-test.jpg" alt="mobile website test" title="mobile website test" width="417" height="273" class="alignnone size-full wp-image-51224" /></p><p>Webmasters find the options of the screenshot above on the frontpage of the service. All that it takes to run a test is to enter a website url into the form on the start page. The remaining options are completely optional. They include a menu to select a specific mobile device for the test (several iPhone and Android models mostly from Canada but also the Netherlands and United States), the number of runs, video capturing of the loading and whether the results should be made public or private.</p><p>Tests are then started with a click on the Run Performance Test button. The service will add the speed test to the end of the queue. Information about the test&#8217;s status are always displayed on the screen.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/10/mobile-test.jpg" alt="mobile test" title="mobile test" width="600" height="231" class="alignnone size-full wp-image-51225" /></p><p>The developers suggest to bookmark the unique page address to come back later if a lot of websites are listed in the queue.</p><p>Each test result highlights several important information. Among them a screenshot of the website and how it is displayed on the selected mobile device, the page loading time and the total size of the page in Kilobytes. MobiTest grades each tested web page and displays a waterfall chart that highlights all connections that were made during the test.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/10/website-performance.jpg" alt="website performance" title="website performance" width="523" height="364" class="alignnone size-full wp-image-51226" /></p><p>Especially the ability to create a video snapshot of the page loading time on the selected mobile device is handy. As are the different locations and devices that webmasters can choose from. An option to run tests with all supported devices would have been handy.</p><p>Webmasters who want to test their website&#8217;s mobile performance can head over to the <a
href="http://www.blaze.io/mobile/">Blaze MobiTest</a> website to do so.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/10/06/mobitest-test-mobile-website-performance/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Google Adds Site Health To Webmaster Tools</title><link>http://www.ghacks.net/2011/09/30/google-adds-site-health-to-webmaster-tools/</link> <comments>http://www.ghacks.net/2011/09/30/google-adds-site-health-to-webmaster-tools/#comments</comments> <pubDate>Fri, 30 Sep 2011 07:35:55 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[google search]]></category> <category><![CDATA[google webmaster tools]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[webmaster tools]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=50964</guid> <description><![CDATA[I have only a good dozen websites listed under my Google account in Webmaster Tools. In case you do not know what that is, it is a service for webmaster to verify domain ownership to get additional information about the status of each website added in the Google search engine. You can manage crawl rates, [...]]]></description> <content:encoded><![CDATA[<p>I have only a good dozen websites listed under my Google account in Webmaster Tools. In case you do not know what that is, it is a service for webmaster to verify domain ownership to get additional information about the status of each website added in the Google search engine. You can manage crawl rates, see errors, get suggestions and can look at the latest important issues that Google identified while crawling the site.</p><p>Those information previously were only available after clicking on a site in Google Webmaster Tools which was not a issue for webmasters with one or two domains listed there, but could very well have been a deal-breaker for webmasters with dozens or even hundreds of verified domains. Imagine having to click on each domain to check their health status.</p><p>Google yesterday made the announcement that they have redesigned the Webmaster Tools start page. Instead of just displaying a list of domains there, the page is now showing site health for every domain right on the homepage.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/09/google-webmaster-tools-sitehealth.png" alt="google webmaster tools site health" title="google webmaster tools site health" width="581" height="523" class="alignnone size-full wp-image-50967" /></p><p>Webmasters now see on first glance if something&#8217;s wrong with one of their websites. Sites with health problems are listed at the top of the list. Warnings may include that malware has been detected on the site, that important pages have been removed or that the robots.txt file is blocking important pages.</p><p>Each site is displayed with a thumbnail screenshot and link to manage the site in Webmaster Tools. A click on a problem opens additional information about the problem detected on the site.</p><p><a
href="http://googlewebmastercentral.blogspot.com/2011/09/work-smarter-not-harder-with-site.html">Susan Moskwa</a>, Google Webmaster Trends Analyst, notes that Google is using the display currently only for accounts with less than 100 sites listed. Webmasters with more than 100 sites will see site health at the top of the Dashboard for each site. While I&#8217;m not 100% certain it seems to suggest that accounts with more than 100 domains still have to use the old way of verifying that everything&#8217;s all right with their websites.</p><p>Google plans to expand the site health notifications in the future to include additional issues (currently only malware, removed urls, blocked urls are reported).</p><p>I personally like the new layout, as it speeds up the process of making sure that no potential issues are missed when using Webmaster Tools.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/09/30/google-adds-site-health-to-webmaster-tools/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Is Your Site Being Outranked By Scrapers? Report Them!</title><link>http://www.ghacks.net/2011/08/30/is-your-site-being-outranked-by-scrapers-report-them/</link> <comments>http://www.ghacks.net/2011/08/30/is-your-site-being-outranked-by-scrapers-report-them/#comments</comments> <pubDate>Tue, 30 Aug 2011 08:51:35 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[scraper]]></category> <category><![CDATA[scraper sites]]></category> <category><![CDATA[search engine]]></category> <category><![CDATA[webmaster]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=49840</guid> <description><![CDATA[So called scraper sites or scrapers are one of the dark phenomenons of the Internet. The sites basically republish the RSS feed of one or multiple unique websites on a domain, usually without rights or link back to the original source. Technology in this sector has advanced in past years, and scraping has been combined [...]]]></description> <content:encoded><![CDATA[<p>So called scraper sites or scrapers are one of the dark phenomenons of the Internet. The sites basically republish the RSS feed of one or multiple unique websites on a domain, usually without rights or link back to the original source. Technology in this sector has advanced in past years, and scraping has been combined with article spinning to create unique low quality articles instead of 1:1 copies.</p><p>One would assume that search engines like Google or Bing had the tools to distinguish between original and copy and act accordingly. This unfortunately though is not always the case.</p><p>These sites often rank for long tail keywords which drive some traffic from the search engines to the sites. And since the majority of them runs Adsense ads, they make a pretty penny from that.</p><p>It is bad enough that those sites can copy and paste contents automatically on their blogs and earn money from it. Even worse is the fact that the process of setting up a new scraper site does not take more than ten minutes tops, and with automation even less.</p><p>So called auto blogs have been a trend in recent years in the Black Hat communities.</p><p>Some legit webmasters even experience something that they should not: A scraper site outranking the site where the article was published originally.</p><p>The search engines leave webmasters who experience the issue more or less alone. They basically ask the webmaster to fill out DCMA requests and send them to the scraper sites. Problem here is that many use proxy hosting or other forms of obfuscation so that it is not possible to contact the webmaster directly. Plus, webmasters usually deal with multiple scraper sites which leads to a never ending cat and mouse game, especially if you take the easy set up of new sites into account.</p><p>Webmasters have criticized Google in particular for this in the past, considering that Google could identify the majority of domain owners easily through their Adsense program as the majority of scraper sites uses Adsense for monetization.</p><p>Google recently asked webmasters to report scraper pages to them. The data will be used to test and improve algorithms that target those scraper sites.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/report-scraper-pages.png" alt="report-scraper-pages" title="report-scraper-pages" width="548" height="600" class="alignnone size-full wp-image-49841" /></p><p>Webmasters can submit scraper sites <a
href="https://docs.google.com/spreadsheet/viewform?formkey=dGM4TXhIOFd3c1hZR2NHUDN1NmllU0E6MQ&#038;theme=0AX42CRMsmRFbUy1mYzJkYmE4MS04Mzc4LTQ0ZGMtYjFlYi03NjU4MjkyMjIwMWY&#038;ifq">on this</a> web form.</p><p>It is about time that Google puts an end to this practice, especially since the company&#8217;s recent drive to promoting &#8220;quality&#8221; sites in their search engines.</p><p>Here are several good resources for webmasters who want to do more than just reporting.</p><p><a
href="http://www.career-evolution.net/how-to-deal-with-content-thieves.php">How to deal with content thieves</a><br
/> <a
href="http://perishablepress.com/press/2010/09/24/content-scrapers-suck-ass/">How to deal with content scrapers</a><br
/> <a
href="https://www.google.com/webmasters/tools/spamreport?hl=en">Report Spam To Google</a></p><p>If you are a webmaster, what&#8217;s your experience with scraper sites?</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/08/30/is-your-site-being-outranked-by-scrapers-report-them/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Display Author Profile Photos On Google Search</title><link>http://www.ghacks.net/2011/08/18/display-author-profile-photos-on-google-search/</link> <comments>http://www.ghacks.net/2011/08/18/display-author-profile-photos-on-google-search/#comments</comments> <pubDate>Thu, 18 Aug 2011 13:35:11 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[author profile]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[google profile]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=49249</guid> <description><![CDATA[Maybe you have spotted one of the recent changes on Google search results pages already. Some website listings, Lifehacker&#8217;s for instance, display an author profile photo next to their listing in the Google search results. This only happens on pages where a single author can be easily identified, which is the case for most blog [...]]]></description> <content:encoded><![CDATA[<p>Maybe you have spotted one of the recent changes on Google search results pages already. Some website listings, Lifehacker&#8217;s for instance, display an author profile photo next to their listing in the Google search results. This only happens on pages where a single author can be easily identified, which is the case for most blog posts. The question is: How can you get the same treatment?</p><p>It is thankfully not super complicated to configure your site to be compatible with the new author photo snippets that show up on Google Search. It is at this point in time however not guaranteed that your photo, or a photo of one of your authors, will appear in Google Search. It is rumored that Google has enabled that feature only for selected blogs and sites.</p><p>Nevertheless, it does not hurt to add the code to your site and Google Profile. And if your site gets picked by Google, you can expect a higher CTR (click-through rate) than sites without an author profile photo in Google.</p><p>Lets take a look at how it looks like in the search engine if it is configured correctly and enabled by Google:</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/google-search-author-profile-photos.png" alt="google search author profile photos" title="google search author profile photos" width="600" height="500" class="alignnone size-full wp-image-49250" /></p><p>Here are the steps that you need to undertake:</p><h2>Creating An About Author page</h2><p>You first need to create an about author page on your website. You then need to link to that page from all posts that this author writes. The link needs to use the <strong>rel=&#8221;author&#8221;</strong> parameter. How it is added depends largely on how the author information are posted on the post pages.</p><p>Here on Ghacks, the code looks like this:</p><blockquote><p>&lt;p class=&#8221;tags&#8221;&gt;Author: &lt;a href=&#8221;http://www.ghacks.net/author/martin/&#8221; title=&#8221;Posts by Martin Brinkmann&#8221; rel=&#8221;author&#8221;&gt;Martin Brinkmann&lt;/a&gt;</p></blockquote><p>Adding the code can be an easy task on single author blogs, but a bit more complicated on multi-author blogs. The best way to add support on those blogs and sites is to install a plugin like <a
href="http://wordpress.org/extend/plugins/allow-rel-and-html-in-author-bios/">Allow REL= and HTML in Author Bios</a> that adds the support.</p><p>You are not yet finished though. The about author page needs to exist for every author on the site. The actual page can contain any kind of information. One important part though is that it needs to link to the Google profile of that author. The link to the Google profile needs to contain the parameter <strong>rel=&#8221;me&#8221;</strong>.</p><blockquote><p>&lt;a rel=&#x201d;me&#x201d; href=&#x201d;http://profiles.google.com/ID&#x201d;&gt; Author Name &lt;/a&gt;</p></blockquote><h2>Linking Back from Google Profile</h2><p>In the last step, we need to link back from the Google profile to the about page on the website. Open your Google Profile, click the Profile icon at the top and then the Edit Profile button at the top. Locate links on the right side and select the Add custom link option.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/links-about-page-google-profile.png" alt="links about page google profile" title="links about page google profile" width="346" height="401" class="alignnone size-full wp-image-49255" /></p><p>You need to link to the author page on the website, and enable the &#8220;this page is especially about me&#8221;. You also need to make sure that a photo is added to the profile.</p><h3>Testing the rich snippet</h3><p>Open the <a
href="http://www.google.com/webmasters/tools/richsnippets">rich snippet testing tool</a> and enter an url from your website that is linked to a single author (a blog post for instance).</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/rich-snippet-tool.png" alt="rich-snippet-tool" title="rich-snippet-tool" width="600" height="326" class="alignnone size-full wp-image-49256" /></p><p>If you see the author photo next to the listing, you have configured the author profile photo support on your site correctly.</p><p>To summarize:</p><ul><li>Create an about author page on your site. Link from that page to the Google Profile of that author with the rel=&#8221;me&#8221; tag. Link the author&#8217;s blog posts on the website with the rel=&#8221;author&#8221; tags to the about author page on the blog.</li><li>Add a photo and a link to the author&#8217;s about page on the Google Profile of that author. Make sure the &#8220;this page is especially about me&#8221; box is ticked.</li><li>Check for correct implementation with the help of the Rich Snippet Tool.</li></ul> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/08/18/display-author-profile-photos-on-google-search/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Google Updates Sitelinks in Search Results</title><link>http://www.ghacks.net/2011/08/17/google-updates-sitelinks-in-search-results/</link> <comments>http://www.ghacks.net/2011/08/17/google-updates-sitelinks-in-search-results/#comments</comments> <pubDate>Wed, 17 Aug 2011 10:51:39 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Search Engines]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[google webmaster]]></category> <category><![CDATA[google webmaster tools]]></category> <category><![CDATA[search engine]]></category> <category><![CDATA[sitelinks]]></category> <category><![CDATA[webmaster]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=49198</guid> <description><![CDATA[So called sitelinks are displayed if a specific search term has an authority site associated with it. If you search for Ghacks for instance, you will notice that my site is displayed at the top. Below the standard listing are the site links, which previously used about the same amount of space as a standard [...]]]></description> <content:encoded><![CDATA[<p>So called sitelinks are displayed if a specific search term has an authority site associated with it. If you search for Ghacks for instance, you will notice that my site is displayed at the top. Below the standard listing are the site links, which previously used about the same amount of space as a standard Google search results site listing.</p><p>Google today announced that they have modified site links. When you now search for Ghacks in the Google search engine, you will notice that the site links use up a lot of space. On my 1920&#215;1200 resolution and a maximized window, that&#8217;s about two thirds of the screen.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/google-search-sitelinks.png" alt="google search sitelinks" title="google search sitelinks" width="482" height="600" class="alignnone size-full wp-image-49199" /></p><p>Here is a screenshot of Google&#8217;s old sitelinks layout for comparison.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/old-google-sitelinks.png" alt="old-google-sitelinks" title="old-google-sitelinks" width="526" height="146" class="alignnone size-full wp-image-49200" /></p><p>Why has Google made the decision to change the sitelinks layout? The Webmaster Central blog lists four reasons: Visibility, Flexibility, Clarity and Quality.</p><ul><li><strong>Visibility:</strong> The font size of the link text has been increased. Both the url and the first free words of the description added.</li><li><strong>Flexibility</strong>: Sitelinks are now query dependent, and the maximum number of sitelinks has been increased from eight to twelve.</li><li><strong>Clarity</strong>: Sitelinks and standard search results are now separated, which means that a sitelink entry will not appear in the general search results and vice verse.</li><li><strong>Quality</strong>: Google with the update has &#8220;combined the signals&#8221; used for &#8220;site links and ranking&#8221;.</li></ul><p>I personally think that Google went a bit overboard with the new sitelinks design. It takes an extreme amount of space. Both the description and url information are more or less useless, considering that you won&#8217;t usually see the full url or more than the first five or six words of the description on the search results page.</p><p>I&#8217;d rather like to see options to customize the layout. For my site, I&#8217;d remove the descriptions completely and start the urls after the domain name, as it should be clear that results come from the same domain (with the exception if a subdomain is listed of course).</p><p>Another thing that I think is missing is the ability to pick your own links for the sitelinks. Google picks them automatically, and your only option of influencing the listing is by demoting urls in the Webmaster Tools. First, that is no guarantee that the link won&#8217;t show up as a sitelink anymore, and second it does not guarantee that a better link is picked by Google&#8217;s algorithm.</p><p>For my site, I&#8217;d really like to add more categories and get rid of the articles that are displayed. That&#8217;s however not really possible.</p><p>You find more information about Google&#8217;s new sitelinks <a
href="http://googlewebmastercentral.blogspot.com/2011/08/introducing-new-and-improved-sitelinks.html">at the</a> Google Webmaster Central blog. Have you encountered the new sitelinks in Google&#8217;s search engine yet? If so, what&#8217;s your opinion?</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/08/17/google-updates-sitelinks-in-search-results/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Submit URLs To Google Via Google Webmaster Tools</title><link>http://www.ghacks.net/2011/08/04/submit-urls-to-google-via-google-webmaster-tools/</link> <comments>http://www.ghacks.net/2011/08/04/submit-urls-to-google-via-google-webmaster-tools/#comments</comments> <pubDate>Thu, 04 Aug 2011 06:22:06 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[google search]]></category> <category><![CDATA[google webmaster tools]]></category> <category><![CDATA[search engine]]></category> <category><![CDATA[webmaster]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=48594</guid> <description><![CDATA[Creating a new website can be a very rewarding process. Webmasters usually run into a phase shortly after they have setup the site where they have to wait until the site gets indexed in the big search engines. This can take minutes, hours, days and sometimes even weeks, as it depends on the search engine [...]]]></description> <content:encoded><![CDATA[<p>Creating a new website can be a very rewarding process. Webmasters usually run into a phase shortly after they have setup the site where they have to wait until the site gets indexed in the big search engines. This can take minutes, hours, days and sometimes even weeks, as it depends on the search engine bots and their first visit to the website. Indexation of contents is usually fast if links are posted on a authority set or well crawled website, or if pings and social bookmarking is used to get the contents indexed.</p><p>Sometimes though you wait and wonder why the darn page is not in the index right now. This can also be a problem for an established site, for instance if you have changed content on a popular post or on your site in general. You&#8217;d like to see the new contents indexed in the search engines which usually does not happen right after you have hit the save button.</p><p>Google has now announced that they have added an option for webmasters to submit their urls to the search engine in Google Webmaster Tools.</p><p>The existing Fetch as Googlebot feature in Webmaster Tools has been improved with a submit to index option which basically allows you to submit the fetched url to Google for evaluation and inclusion in the index.</p><p>Here is how this works. Open Google Webmaster Tools and follow the Diagnostics > Fetch As Googlebot option in the left sidebar. You have to select the right domain first, of course. You need to add it if it is not already listed in Webmaster Tools.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/submit-to-index.png" alt="submit to index" title="submit to index" width="400" height="138" class="alignnone size-full wp-image-48595" /></p><p>You need to enter the url that you want to crawl. This can be a website&#8217;s homepage, a subpage or any other page that is publicly accessible on the Internet. Click Fetch to retrieve the site as Googlebot. This process may take between a few seconds to a few minutes. Once done you get a status report on the same page and an option to submit to index.</p><p>You get a prompt first where you can select to submit only the single url or the url and all pages that it links to.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/submit-url-to-index-confirm.png" alt="submit-url-to-index-confirm" title="submit-url-to-index-confirm" width="600" height="189" class="alignnone size-full wp-image-48596" /></p><p>Google currently has a limit of 50 individual page submissions per week, and 10 page with all linked pages submissions per week. The numbers are shown on the Fetch as Googlebot page.</p><p>Google has revamped the public Crawl URL form as well. The core difference besides the captcha is that webmasters and users do not have to verify ownership of the page or site to submit it to the index.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/08/crawl-url.png" alt="crawl-url" title="crawl-url" width="366" height="336" class="alignnone size-full wp-image-48597" /></p><p>The new Submit to Index feature is handy for webmasters who have troubles getting their website or a specific part of that website indexed in Google. (<a
href="http://googlewebmastercentral.blogspot.com/2011/08/submit-urls-to-google-with-fetch-as.html?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+blogspot%2FamDG+%28Official+Google+Webmaster+Central+Blog%29">via</a>)</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/08/04/submit-urls-to-google-via-google-webmaster-tools/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Google Page Speed Service, Website Optimization Service</title><link>http://www.ghacks.net/2011/07/28/google-page-speed-service-website-optimization-service/</link> <comments>http://www.ghacks.net/2011/07/28/google-page-speed-service-website-optimization-service/#comments</comments> <pubDate>Thu, 28 Jul 2011 12:01:10 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[optimize website]]></category> <category><![CDATA[page speed]]></category> <category><![CDATA[page speed service]]></category> <category><![CDATA[webmaster]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=48326</guid> <description><![CDATA[Google just announced the availability of the webmaster related service Page Speed Service. You may remember that the company started to introduce its Page Speed service about two years ago which provided suggestions to webmasters and developers on how to improve the page loading times of their websites and web services. The Page Speed Service [...]]]></description> <content:encoded><![CDATA[<p>Google just announced the availability of the webmaster related service Page Speed Service. You may remember that the company started to introduce its Page Speed service about two years ago which provided suggestions to webmasters and developers on how to improve the page loading times <a
href="http://code.google.com/apis/pagespeedonline/">of their</a> websites and web services.</p><p>The Page Speed Service is a new addition to the Page Speed family. It basically acts as a proxy, or content delivery network for the website. The benefits according to Google lie in the 25% to 60% improvement range.</p><p>Google Page Speed Service is not as complicated to setup as a content delivery network. It does however require a change of nameservers at the domain registrar or web server. The DNS entry needs to point to Google. Here is what the service does:</p><blockquote><p>Page Speed Service fetches content from your servers, rewrites your pages by applying web performance best practices, and serves them to end users via Google&#8217;s servers across the globe. Your users will continue to access your site just as they did before, only with faster load times. Now you don’t have to worry about concatenating CSS, compressing images, caching, gzipping resources or other web performance best practices.</p></blockquote><p>Probably the biggest advantage over a CDN and local optimizations is that it is less complicated and time consuming. All that it takes is to change the DNS server to make use of recommended speed optimization settings and features such as compression, caching or merging of CSS files.</p><p>Google has created an online tool to test the page loading time of the website and the optimized website. A form is displayed on the Web Page Test site. Webmasters need to enter the url of a website that they want to test into the form. The process will take several minutes to complete.</p><p>The results page displays the page load time, start render time of the page, repeat view page load time and repeat view render time of both the normal and optimized website.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/07/page-speed-comparison.png" alt="page speed comparison" title="page speed comparison" width="600" height="281" class="alignnone size-full wp-image-48327" /></p><p>A test on Ghacks revealed that the optimized service would take longer to load and render. That&#8217;s likely because Ghacks is highly optimized for fast page loading times. It could also be because of different kinds of ads that have been displayed during the optimized page&#8217;s loading.</p><p>The very same page displays a visual comparison of both page loading times. This could be interesting to analyze both states in detail.</p><p>A comparison for another website turned out to be more favorably.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/07/page-speed-service-comparison.png" alt="page speed service comparison" title="page speed service comparison" width="600" height="289" class="alignnone size-full wp-image-48328" /></p><p>This highlights that it is important to check individual websites to make sure that they might benefit from Google&#8217;s Page Speed Service.</p><p>A click on View Test displays detailed information about the conducted tests. The information display median values and detailed information from Google&#8217;s Page Speed tool. Webmasters can use the information to analyze unoptimized areas of their website.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2011/07/webpage-test.png" alt="webpage-test" title="webpage-test" width="600" height="525" class="alignnone size-full wp-image-48330" /></p><p>Google plans to offer the service with &#8220;competitive&#8221; pricing. For now, it is open to a limited set of webmasters free of charge. Webmasters and developers who are interested in testing Google&#8217;s Page Speed Service can apply by <a
href="https://docs.google.com/a/google.com/spreadsheet/viewform?hl=en_US&#038;formkey=dDdjcmNBZFZsX2c0SkJPQnR3aGdnd0E6MQ">filling out</a> a web form over at Google Docs.</p><p>The form requires an email address of a Google Account, a website url that domain ownership needs to be verified if accepted into the trial and the approximate page views per day that the website gets. There is no guarantee of inclusion. Google has not yet revealed the pricing, it will be interesting to see how &#8220;competitive&#8221; it will be in comparison to content deliver networks.</p><p>The official announcement <a
href="http://googlewebmastercentral.blogspot.com/2011/07/page-speed-service-web-performance.html?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+blogspot%2FamDG+%28Official+Google+Webmaster+Central+Blog%29">can be</a> accessed here.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/07/28/google-page-speed-service-website-optimization-service/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Google Rolls Out Search Algorithm, Targets Content Farms</title><link>http://www.ghacks.net/2011/02/25/google-rolls-out-search-algorithm-targets-content-farms/</link> <comments>http://www.ghacks.net/2011/02/25/google-rolls-out-search-algorithm-targets-content-farms/#comments</comments> <pubDate>Fri, 25 Feb 2011 09:33:00 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Search Engines]]></category> <category><![CDATA[content farms]]></category> <category><![CDATA[google search]]></category> <category><![CDATA[search engine]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[websites]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=40215</guid> <description><![CDATA[Google is making a lot of changes lately which can partially be attributed to the rising criticism that search quality has taken the dive in recent years. The aim of the latest change that has been rolled out yesterday in the US is to move &#8220;more&#8221; quality sites to the top of the search results, [...]]]></description> <content:encoded><![CDATA[<p>Google is making a lot of changes lately which can partially be attributed to the rising criticism that search quality has taken the dive in recent years. The aim of the latest change that has been rolled out yesterday in the US is to move &#8220;more&#8221; quality sites to the top of the search results, and the low content sites down. The main problem here is that Google does not define the terms &#8220;quality site&#8221;, &#8220;content farm&#8221; or &#8220;low-quality&#8221;. Google <a
href="http://googleblog.blogspot.com/2011/02/finding-more-high-quality-sites-in.html">merely</a> states that the &#8220;update is designed to reduce rankings for low-quality sites—sites which are low-value add for users, copy content from other websites or sites that are just not very useful&#8221;.</p><p>If you&#8217;d ask me I&#8217;d say ehow, answers.com, mahalo and the like, plus all article directories like ezinearticles, single-page sites like hubpages or Squidoo and Wikipedia like sites (including Wikipeda).</p><p>It is to early to say how the algorithmic change affects search. It is currently rolled out in the US with other countries and regions to follow later this year. If you look at webmaster forums like Webmaster World you <a
href="http://www.webmasterworld.com/google/4261944-7-30.htm">notice that</a> several posters are not happy at all with the changes. While it is not possible to determine the quality of their sites, many report that their &#8220;legit&#8221; sites saw a traffic drop of 30-60% while low-quality sites remained unaffected. The drops happened on February 23 for most webmasters.</p><p>It may take weeks before the search engine settles down which means that the results that are currently showing are likely not the results you will be seeing in March.  Google confirms that the algorithmic improvement &#8211; that&#8217;s what they call it &#8211; impacts 11.8% of all search queries, a high percentage. The update did not rely on feedback from users who have been using the <a
href="http://www.ghacks.net/2011/02/16/blocking-spam-in-search-engines/">Personal Blocklist</a> extension for Chrome. The algorithmic change did however address 84% of the &#8220;top several dozen or so&#8221; most blocked domains from the Chrome extension which Google sees as confirmation that the update is indeed improving search quality.</p><p>The problem with that assessment is that it does not necessarily mean that quality sites have filled the positions. Some webmasters who have voiced their opinion in the forum thread linked above have reported that low quality sites have taken over the positions, and that the change affected legit sites that they own or monitor.</p><p>Again, it may be to early to tell at this point if the algorithmic change has a positive effect on search quality. Do you see changes in the Google US search engine? If you do, would you say the search quality has improved, or declined? (<a
href="http://techcrunch.com/2011/02/24/google-targets-content-farms-with-major-search-algorithm-tweaks/">via</a>)</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/02/25/google-rolls-out-search-algorithm-targets-content-farms/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Validome, Web Page Validator</title><link>http://www.ghacks.net/2010/11/25/validome-web-page-validator/</link> <comments>http://www.ghacks.net/2010/11/25/validome-web-page-validator/#comments</comments> <pubDate>Thu, 25 Nov 2010 10:39:08 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Online Services]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[html]]></category> <category><![CDATA[online server]]></category> <category><![CDATA[validation service]]></category> <category><![CDATA[validome]]></category> <category><![CDATA[web development]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[xml]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=37268</guid> <description><![CDATA[One of the aspects of being a webmaster is to make sure that your web pages are compatible with the most popular web browsers. This requires some tweaking and hacks, especially if Internet Explorer 6 comes into the picture. Validating web pages is just one aspect of this. Most browsers handle invalid elements well so [...]]]></description> <content:encoded><![CDATA[<p>One of the aspects of being a webmaster is to make sure that your web pages are compatible with the most popular web browsers. This requires some tweaking and hacks, especially if Internet Explorer 6 comes into the picture. Validating web pages is just one aspect of this. Most browsers handle invalid elements well so that the page is displayed to the user even though it may not be displayed exactly as the web developer has intended.</p><p>Website validators like the <a
href="http://validator.w3.org/">W3C</a> Markup Validation Service check a web page for validation errors. Webmasters use these services to correct validation errors on their websites.</p><p>Here is an example why validation is important. About a year ago I noticed that the RSS feed of Ghacks was <a
href="http://www.ghacks.net/2009/04/14/internet-explorer-8-and-feeds-the-xml-page-cannot-be-displayed/">throwing</a> an XML error in Internet Explorer 8. This was caused by a single character in one of the latest articles that was not escaped (meaning instead of writing the  character &amp; directly one would have to use <code>&amp;amp;</code> instead.</p><p>That single character caused problems in the feed delivery, and I had to work longer than usual to get it fixed. Consequences of invalid code are not always that drastic, but it exemplifies the impact that it can have on a website.</p><p>Validome is another website validation service. It is a bit stricter when it comes to validating pages. It can happen that a page passes as a XHTML 1.0 Transitional document in the W3C validation, and fails in the Validome validation.</p><p>Another difference between the two validation engines is that Validome supports verifications of local and remote documents. Users can either enter an url in the form on the site, or upload a document from their local computer system.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/11/validome-550x265.jpg" alt="validome" title="validome" width="550" height="265" class="alignnone size-medium wp-image-37271" /></p><p>Extended settings are offered to check the document with a specific user agent or language.</p><p>A click on Validate performs the validation of the document. Errors are displayed directly.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/11/validation-error-550x430.jpg" alt="validation error" title="validation error" width="550" height="430" class="alignnone size-medium wp-image-37272" /></p><p>The service lists the line and column of the validation error, the error position and an explanation of the error. This is often enough to fix the issue in the document.</p><p><a
href="http://www.validome.org/validate">Validome</a> is an excellent alternative to the W3C validation service. It is usually enough to use Validome since it appears to be stricter in the validation. Most webmasters on the other hand will probably use both services anyway.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/11/25/validome-web-page-validator/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Speed Up Your Website By Optimizing Images</title><link>http://www.ghacks.net/2010/11/15/speed-up-your-website-by-optimizing-images/</link> <comments>http://www.ghacks.net/2010/11/15/speed-up-your-website-by-optimizing-images/#comments</comments> <pubDate>Mon, 15 Nov 2010 09:31:46 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[optimize images]]></category> <category><![CDATA[optimize png]]></category> <category><![CDATA[riot]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[webmaster tips]]></category> <category><![CDATA[website loading time]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=36876</guid> <description><![CDATA[Page speed is a ranking factor in the Google Search engine. According to Google officials it is currently used in 1 out of 1000 queries. I think it was Matt Cutts who said that speed acted as a tie breaker in situations. It is however likely that speed will play a bigger role in the [...]]]></description> <content:encoded><![CDATA[<p>Page speed is a ranking factor in the Google Search engine. According to Google officials it is currently used in 1 out of 1000 queries. I think it was Matt Cutts who said that speed acted as a tie breaker in situations. It is however likely that speed will play a bigger role in the future. But it is not only the search engine marketing and visibility aspect that plays a role here. The Majority of visitors likes a fast loading website. Depending on value or need to access those contents they may be inclined to wait, or leave the page if it loads to slow.</p><p>Webmasters have lots of options to reduce the page loading time of their websites. This includes removing unnecessary scripts, using compression, minifying HTML, CSS and JavaScript files, merging files where possible but also to optimize images that are hosted on the server.</p><p>The difference between an optimized image and an unoptimized image can make a big difference in page loading times. Think of it this way: If you can halve the size of each image hosted on your web server, without reducing the visible image quality, then you have cut the image loading time by halve as well (well halve is not entirely correct but lets use that figure for the sake of the argument).</p><p>The two main image formats used on the web are png and jpg. Jpg images are usually well compressed and there is little to gain by reducing their quality further. The image quality drops significantly at a point.</p><p>Png images on the other hand offer lots of room for improvement, if they have been saved as true color png images. Lets take a look at the following two images for the sake of this argument.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/11/aptitude_main-true-color1.png" alt="aptitude main true color" title="aptitude main true color" width="500" height="341" class="alignnone size-full wp-image-36878" /></p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/11/aptitude_main-optimized.png" alt="aptitude main optimized" title="aptitude main optimized" width="500" height="341" class="alignnone size-full wp-image-36879" /></p><p>Do you see a difference in image quality? The second image&#8217;s size is 64 Kilobytes, that is 102 Kilobytes less than the size of the first image.</p><h3>Using Riot to optimize images</h3><p>You can use lots of different programs to optimize images. They all come with the capabilities but differ highly in their batch optimization capabilities. Riot is a free portable software that can process images in batch. (see <a
href="http://www.ghacks.net/2010/04/21/image-resizer-and-optimizer-riot/">Image Resizer And Optimizer Riot</a>)</p><p>The program interface looks like this on startup. I have already made the relevant changes to the lower half. In particular, you need to switch to the PNG tab, select Optimal 256 Colors Palette, best compression (slow), NeuQuant neural-net (slow) and PNGout Xtreme (very slow) for the output files.</p><p>You then click the Batch icon at the top which opens an overlay window. Click on Add Images (or the small arrow next to it) to load images directly or by folder. Please note that you should only load png images. It does not help to convert jpg images to png, considering that they are still linked as jpg images on the web.</p><p><a
href="http://www.ghacks.net/wp-content/uploads/2010/11/riot-image-optimizer.png"><img
src="http://www.ghacks.net/wp-content/uploads/2010/11/riot-image-optimizer-500x330.png" alt="riot image optimizer" title="riot image optimizer" width="500" height="330" class="alignnone size-medium wp-image-36889" /></a></p><p>Make sure you select a second folder for the output images. A click on start optimizes all images loaded in the window.</p><p>Webmasters can then upload the optimized images to their web server.</p><p>Please note that the reduction to 256 colors may not work for all image types. It works well for screenshots and other images that we publish here at Ghacks.</p><p>The best option for WordPress based websites was to process one image folder at a time. WordPress saves image uploads in monthly folders. The whole process per folder was to copy all png images from a folder to the local system, add those images to Riot, process them in Riot and reupload them to the server in the same directory after comparing some of the input and output images.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/11/15/speed-up-your-website-by-optimizing-images/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Open Validator, Website Validation Software</title><link>http://www.ghacks.net/2010/08/09/open-validator-website-validation-software/</link> <comments>http://www.ghacks.net/2010/08/09/open-validator-website-validation-software/#comments</comments> <pubDate>Mon, 09 Aug 2010 17:00:47 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[linux software]]></category> <category><![CDATA[mac software]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[open validator]]></category> <category><![CDATA[w3c validator]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[websites]]></category> <category><![CDATA[windows software]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=32552</guid> <description><![CDATA[A part of a webmaster&#8217;s routine is the validation of markup languages on managed websites, to make sure that the websites are displayed correctly and uniformly in web browsers. An online tool that many webmasters use is W3C Validator, which can verify the markup of a single web page, and display errors that it encounters. [...]]]></description> <content:encoded><![CDATA[<p>A part of a webmaster&#8217;s routine is the validation of markup languages on managed websites, to make sure that the websites are displayed correctly and uniformly in web browsers. An online tool that many webmasters use is <a
href="http://validator.w3.org/">W3C Validator</a>, which can verify the markup of a single web page, and display errors that it encounters.</p><p>Webmasters with larger projects may want to use a software that can perform these validations on all pages of a website. Open Validator, the web conformance tool, can do that, and more.</p><p><span
id="more-32552"></span>The Open Source software is available for Linux, Mac and Windows PCs. A wizard is displayed on startup, that aids the user in the selection of a local or remote website. Additional parameters can be defined, including the depth of recursion, the conformance tests that should be run, the document type, whether a proxy server should be used for the connection, the browser user agent for emulation purposes and pages that should be ignored.</p><p>Open Validator then downloads and scans all pages that are part of the selection. This process is speedy, it usually takes less than 15 seconds for the results to appear. Large web projects may take longer on the other hand.</p><p>Each page is listed at the top, with its page title and url. Selecting a page displays a snapshot of it as a thumbnail image, the page&#8217;s source code and an error report in the lower half of the interface.</p><div
id="attachment_32553" class="wp-caption alignnone" style="width: 488px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/08/open-validator.png"><img
src="http://www.ghacks.net/wp-content/uploads/2010/08/open-validator-478x500.png" alt="open validator" title="open validator" width="478" height="500" class="size-medium wp-image-32553" /></a><p
class="wp-caption-text">open validator</p></div><p>The three error and warning categories are sorted in expanding tables, that provide detailed information for the webmaster. The outline column lists validation categories like design practices, server, HTTP and site considerations or Body information. Error numbers are listed in each row to give the webmaster a first overview of the number of errors and warnings on the page.</p><p>Webmasters can directly edit the source code of the page, a click on Revalidate validates the page anew. This works similar to the Firefox add-on Firebug, with the difference that the changes need to be revalidated before the results are shown.</p><p>Open Validator offers an impressive feature set:</p><blockquote><p>1) Verification of a single page or entire web site at your option;<br
/> 2) HTML Validation against W3C DTDs and WHATWG (X)HTML5 pre-release schemas;<br
/> 3) Automatic checking and correction of many aspects of conformance to international best practices;<br
/> 4) Visualization of a snapshot with a given character encoding (the user agent is also chosen in order to present the specific version originally intended to be seen in a given web browser);<br
/> 5) Complete verification of links.<br
/> 6) Automatic correction of missing widths and heights of images to enable better responsiveness of web pages;<br
/> 7) Automatic correction of missing meta tags elements like default language and metadata;<br
/> 8) Support for web pages in Chinese, Japanese, Korean and many other languages.<br
/> 9) Performance optimization for multi-core processors.<br
/> 10) Validation during navigation.<br
/> 11) Application of standards during revalidation.<br
/> 12) Memory revalidation with no need to make all corrections of a web page at once (users may correct small portions of the code and see the results pressing F5).<br
/> 13) HTML Tidy accessibility check.<br
/> 14) Balloon tooltips for contextual help.<br
/> 15) Recursive validation for frames.<br
/> 16) Proxy support.<br
/> 17) Integrated web inspector with javascript debugger.<br
/> 18) Site map detection in 51 languages.<br
/> 19) Exportation of reports to HTML<br
/> 20) Bypass selected paths when using recursive options<br
/> 21) Exportation of reports to ODF<br
/> 22) Memorization of login in protected parts of sites<br
/> 23) Command line tool for unassisted report generation<br
/> 24) SSL support</p></blockquote><p>Not all errors or warnings that Open Validator detects will throw an error at the W3C Validator. The software goes beyond just checking the markup, which becomes obvious for instance in the design practices category where suggestions for well-engineered websites are included in the report. The findings of the tool are very thorough, which may turn away some webmasters who may feel overwhelmed by the reports.</p><p>Professional webmasters on the hand find in Open Validator a tool that can be used as a quality conformance test for their web properties.</p><p>Webmasters who want to try out <a
href="http://rightwebpage.com">Open Validator</a> can download a version for their operating system from the project website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/08/09/open-validator-website-validation-software/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Find Out which Website Loads Faster</title><link>http://www.ghacks.net/2010/07/16/find-out-which-website-loads-faster/</link> <comments>http://www.ghacks.net/2010/07/16/find-out-which-website-loads-faster/#comments</comments> <pubDate>Fri, 16 Jul 2010 16:48:42 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Online Services]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[page speed]]></category> <category><![CDATA[site speed]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[website]]></category> <category><![CDATA[website loading time]]></category> <category><![CDATA[which loads faster]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=28312</guid> <description><![CDATA[Site speed has been added as a ranking factor by Google some time ago. Webmasters since then have started optimizing their websites&#8217; page loading times. Some of the optimizations done included reducing the number of elements loaded when people visit the site, optimizing media elements, minifying CSS and JavaScript, and using web caching technologies to [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.ghacks.net/2010/04/09/google-adds-site-speed-to-web-search-ranking-algorithm/">Site speed</a> has been added as a ranking factor by Google some time ago. Webmasters since then have started optimizing their websites&#8217; page loading times. Some of the optimizations done included reducing the number of elements loaded when people visit the site, optimizing media elements, minifying CSS and JavaScript, and using web caching technologies to reduce the dynamic elements loaded on page loads.</p><p>Tools have been created to test the page loading time of a website, for instance <a
href="http://www.ghacks.net/2007/12/02/webmasters-analyse-your-website-with-yslow/">Yslow</a> or <a
href="http://www.ghacks.net/2009/06/05/website-optimization-page-speed-for-firebug/">Google Page Speed</a> which both show in detail the loading time and the elements that are responsible for it.</p><p><span
id="more-28312"></span>These tools are also used by webmasters to test the loading speed of related website. Those times give the webmaster a good indication if more optimization needs to be done. If a web page loads at least as fast as the fastest competing website then it is usually not necessary to optimize further, if it is slower there might be still room for improvement.</p><p>Which Loads Faster is an online service that compares the page load time of two websites by racing them against each other.</p><div
id="attachment_28314" class="wp-caption alignnone" style="width: 510px"><img
src="http://www.ghacks.net/wp-content/uploads/2010/07/which-loads-faster1.png" alt="which loads faster" title="which loads faster" width="500" height="388" class="size-full wp-image-28314" /><p
class="wp-caption-text">which loads faster</p></div><p>The website offers a few preset speed comparisons and the option to create a custom comparison.</p><p>To race two pages, a user needs to add two page urls into the form at the top and click the go button. Which Loads Faster will instantly start loading and displaying the websites in two columns on the same page.</p><p>Page loading times of both websites are displayed in milliseconds, and the faster one is indicated with an arrow and a percentage value that indicates how much faster it is than the other web page.</p><p>The Race link at the top navigation offers another interesting variant. Here it is possible to add up multiple urls to each side to see which loads faster than the other. This could be an interesting option to compare the homepage and several subpages of websites with each other.</p><p>The settings contain an option to switch the page loading mode from parallel to serial, helpful if the two sides may interfere with each other.</p><p><a
href="http://whichloadsfaster.com/">Which Loads Faster</a> is a free online service that can be very beneficial to webmasters. Additional information about the page loading times would be helpful, for instance a display of the page elements and their loading times or the hardware and software that is powering the different sites. (via <a
href="http://www.tothepc.com/archives/compare-loading-speed-of-two-websites/">To The PC</a>)</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/07/16/find-out-which-website-loads-faster/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>WordPress Hack Terrifies Webmasters</title><link>http://www.ghacks.net/2010/04/12/wordpress-hack-terrifies-webmasters/</link> <comments>http://www.ghacks.net/2010/04/12/wordpress-hack-terrifies-webmasters/#comments</comments> <pubDate>Mon, 12 Apr 2010 08:54:42 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[The Web]]></category> <category><![CDATA[cloaing]]></category> <category><![CDATA[virus]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress exploit]]></category> <category><![CDATA[wordpress hack]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=24415</guid> <description><![CDATA[Reports about a WordPress hack affecting self-hosted WordPress blogs have appeared on the Internet in March. The hack seems to affect WordPress 2.9.2, the latest version of the blogging platform. To make matters worse there seem to be two &#8211; possibly unrelated &#8211; issues that webmasters experience. One is a malware attack that is spreading [...]]]></description> <content:encoded><![CDATA[<p>Reports about a WordPress hack affecting self-hosted WordPress blogs have appeared on the Internet in March. The hack seems to affect WordPress 2.9.2, the latest version of the blogging platform.</p><p>To make matters worse there seem to be two &#8211; possibly unrelated &#8211; issues that webmasters experience. One is a malware attack that is spreading malware on hacked blogs while the other is making use of cloaking techniques to serve a different version of the blog to search engine spiders than to regular visitors and admins.</p><p>The cloaking hack appeared on radars in March when bloggers and hosters reported about compromised sites. Media Temple for instance stated on March 2nd that &#8220;a number of customer sites [..] have been compromised&#8221;.</p><p><span
id="more-24415"></span>They identified several patterns the attackers used, one of which placed random-string names in the document root of the blog.</p><p>But Media Temple hosted WordPress blogs were not the only ones hit by the attack. Reports from webmasters hosted by Godaddy, Network Solutions or VPS.net indicated that the attack was not web hoster specific.</p><p>Fast forward to April 6. <a
href="http://www.christopherspenn.com/2010/04/find-the-latest-wordpress-hack/">Christopher Penn</a> discovered that his blog had been compromised. He found out that the hack on his site injected a new option name into the wp_options table that was using encoded Javascript. The option name always started with rss_.</p><p>Deleting that name from the database table stopped the cloaking issues he was experiencing. The key did however appear again which suggested that his blog was still open for the attack.</p><p>The vulnerability itself has not been discovered yet. Chris suggested that it has either been the TimThumb plugin or an outdated version of Magpie that WordPress ships with. Both have not yet been confirmed to be the entry points.</p><p>There has been no response yet from the WordPress developers regarding this issue.</p><p>To make matters worse a second attack has hit WordPress blogs, this time to spread malware. It is not yet clear if the two attacks are related but it is likely that they are.</p><p><a
href="http://techcocktail.com/wordpress-hacked-virus-cloaks-search-engines-2010-04">Frank Gruber</a> posted information about that second attack on his blog which ironically seems to have been successfully compromised as well.</p><blockquote><p>The virus somehow infiltrates WordPress and adds a new file in your scripts directory called jquery.js and then inserts that file into the header or footer files of your site. It also inserts an iFrame that calls a 3rd party site which is known for malware or other malicious activities.</p></blockquote><p>The Trend Micro blog is <a
href="http://blog.trendmicro.com/wordpress-blogs-suffer-mass-compromise/">sharing</a> additional information about the virus that is being spread using this attack. The attack  &#8220;leads into an infection chain that leads to various malware, including a rogue antivirus[..]&#8220;.</p><p>To sum it up:</p><ul><li>Several WordPress blogs running the latest official version are currently successfully compromised.</li><li>Attackers either manipulate the blog to spread malware (more recently) or to cloak links that are only visible to search engines</li><li>It is currently not clear how the attacks are carried out.</li><li>Some pointers are given on how to disinfect a blog</li></ul><p>WordPress webmasters should check their blogs immediately to make sure that it has not been compromised yet. A wordpress plugin like <a
href="http://wordpress.org/extend/plugins/antivirus/">Antivirus</a> might also help in preventing a successful attack.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/04/12/wordpress-hack-terrifies-webmasters/feed/</wfw:commentRss> <slash:comments>22</slash:comments> </item> <item><title>Optimize Pictures With Web Resizer</title><link>http://www.ghacks.net/2010/03/01/optimize-pictures-with-web-resizer/</link> <comments>http://www.ghacks.net/2010/03/01/optimize-pictures-with-web-resizer/#comments</comments> <pubDate>Mon, 01 Mar 2010 17:44:17 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Online Services]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[optimize pictures]]></category> <category><![CDATA[pictures]]></category> <category><![CDATA[web resizer]]></category> <category><![CDATA[webmaster]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=23409</guid> <description><![CDATA[One of the many aspects that webmasters need to take care of is to optimize their websites so that users from all over the world can access it without unnecessary delays because of unoptimized contents. One of the things that need to be optimized are pictures that are displayed on the website. Reducing the size [...]]]></description> <content:encoded><![CDATA[<p>One of the many aspects that webmasters need to take care of is to optimize their websites so that users from all over the world can access it without unnecessary delays because of unoptimized contents. One of the things that need to be optimized are pictures that are displayed on the website. Reducing the size of images can reduce the load time of the web site tremendously without degrading the picture quality.</p><p>One of the online services that can be used for that is Web Resizer. The picture optimizer supports images up to a size of five Megabytes that can be loaded directly on the service&#8217;s homepage. Web Resizer will automatically process the uploaded image and display an optimized version of it. This new picture is displayed to the original one so that both can be compared on the screen.</p><p><span
id="more-23409"></span><img
src="http://www.ghacks.net/wp-content/uploads/2010/03/web_resizer-500x356.jpg" alt="" title="web resizer" width="500" height="356" class="alignnone size-medium wp-image-23410" /></p><p>The service will furthermore display the new size of the picture and the image reduction percentage. The controls at the bottom can be used to further optimized the result. It is here for instance possible to change the output image quality, sharpen the image or change the color saturation and contrast. Web Resizer will then reprocess the original image and display a new processed picture on the page.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2010/03/optimize_pictures-500x249.jpg" alt="" title="optimize pictures" width="500" height="249" class="alignnone size-medium wp-image-23411" /></p><p>One interesting option is the ability to compare even more image variants by enabling the &#8220;compare image sizes&#8221; checkbox. This displays the image in various picture quality settings on the screen. The results are fine for most purposes but the most professional environments. Webmasters who want to optimize the pictures on their websites can access Web Resizer <a
href="http://webresizer.com/resizer/">here</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/03/01/optimize-pictures-with-web-resizer/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>WordPress Custom Tag Templates</title><link>http://www.ghacks.net/2010/02/03/wordpress-custom-tag-templates/</link> <comments>http://www.ghacks.net/2010/02/03/wordpress-custom-tag-templates/#comments</comments> <pubDate>Wed, 03 Feb 2010 10:23:58 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[The Web]]></category> <category><![CDATA[Tools]]></category> <category><![CDATA[custom tag templates]]></category> <category><![CDATA[tag templates]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wordpress custom tag templates]]></category> <category><![CDATA[wordpress tips]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=22761</guid> <description><![CDATA[Tags are an essential part of nearly every WordPress blog. Webmasters use tags to categorize posts. One side-effect of tagging posts in WordPress is that these tags are sometimes indexed by search engines. Visitors from those search engines will then see a page containing excerpts of the posts that have been tagged with that tag. [...]]]></description> <content:encoded><![CDATA[<p>Tags are an essential part of nearly every WordPress blog. Webmasters use tags to categorize posts. One side-effect of tagging posts in WordPress is that these tags are sometimes indexed by search engines. Visitors from those search engines will then see a page containing excerpts of the posts that have been tagged with that tag.</p><p>This can result in two problems for the webmaster. Problem one is indexation. It can happen that a tag page gets indexed instead of the actual post. There are plugins that can deal with that problem by adding canonical tags to those links so that the search engines know that the post page should be indexed with priority for the keyword and not the tags page.</p><p><span
id="more-22761"></span>The second problem is that the tag page can irritate search engine users as they only see excerpts and not a single article. This can look spammy to some and might have a negative impact on a visitor&#8217;s perception of the page and the website in general.</p><p>We have posted an option to create <a
href="http://www.ghacks.net/2009/04/08/wordpress-blogs-create-custom-tag-pages/">custom tag pages</a> in WordPress back in April of last year and that method is still valid and working.</p><p>This method basically creates a new template file for each tag that the webmaster wants to customize. It can for instance be used to display an introduction to visitors so that they know what the page is about. This method allows the posting of media as well as text on the tag pages.</p><p>Posting those additional information can be beneficial to the search engine indexation of the tag page as well since it adds unique content to those pages.</p><p>The disadvantage of that method is that a new template file needs to be created for each tag that the webmaster wants to customize. This is impractical for websites with thousands of tags.</p><p>Another method was posted at the Likemind blog. This new method has been introduced in WordPress 2.8. It makes use of a new tag variable called description which can be added to the tag&#8217;s template so that it will be displayed on the tag pages of the website.</p><p>Some WordPress themes come without a tag.php file. If that is the case it needs to be created and modified to include the description. The easiest way to do so is to copy the index.php file and rename the copy to tag.php. The following code needs to be added before the loop in tag.php</p><blockquote><p>&lt;!&#8211;Start Code&#8211;&gt;<br
/> &lt;?php $tag_desc = tag_description(); ?&gt;<br
/> &lt;?php if($tag_desc) : ?&gt;<br
/> &lt;div class=&quot;tag-description&quot;&gt;<br
/> &lt;?php print $tag_desc ;?&gt;<br
/> &lt;/div&gt;<br
/> &lt;?php endif; ?&gt;<br
/> &lt;!&#8211;End Code&#8211;&gt;</p></blockquote><p>Each tag page will from then on display the tag&#8217;s description if available. Tag descriptions can be edited in the Posts > Post Tags menu in the WordPress admin interface.</p><p>The benefit of this approach is that only one template needs to be created and that everything else can be handled from within the WordPress admin area. That tag description can also be used as the meta description. There are some disadvantages though as it is difficulty to add formatting and media to the description (if at all possible).</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/02/03/wordpress-custom-tag-templates/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Google Browser Size</title><link>http://www.ghacks.net/2009/12/17/google-browser-size/</link> <comments>http://www.ghacks.net/2009/12/17/google-browser-size/#comments</comments> <pubDate>Thu, 17 Dec 2009 13:13:53 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[The Web]]></category> <category><![CDATA[browser size]]></category> <category><![CDATA[google browser size]]></category> <category><![CDATA[usability]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[website design]]></category> <category><![CDATA[websites]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=21528</guid> <description><![CDATA[Google Browser Size is a new web service that has been published by Google Labs that can be used to visualize the browser window sizes of users visiting a specific website. The service will display transparent information on top of the website that has been loaded visualizing how much of the website visitors see without [...]]]></description> <content:encoded><![CDATA[<p>Google Browser Size is a new web service that has been published by Google Labs that can be used to visualize the browser window sizes of users visiting a specific website.</p><p>The service will display transparent information on top of the website that has been loaded visualizing how much of the website visitors see without having to scroll. This is done by displaying percentages on the screen and using colors to differentiate the different groups from each other.</p><p>A 98% rating for example means that 98% of all visitors of the website have their browser window open to the size or larger. It does also mean that 2% use a smaller size than the one displayed.</p><p><span
id="more-21528"></span><img
src="http://www.ghacks.net/wp-content/uploads/2009/12/google_browser_size-500x411.jpg" alt="google browser size" title="google browser size" width="500" height="411" class="alignnone size-medium wp-image-21529" /></p><p>The service can provide the webmaster with important information about the site&#8217;s visitors as it can aid in optimizing specific elements on the website to increase their exposure to all visitors without them having to scroll to locate it.</p><p>Five, ten or even twenty percent of all visitors is a huge number on some sites. That&#8217;s a big number considering that some visitors tend to leave a website without scrolling the page they landed on.</p><p>To use <a
href="http://browsersize.googlelabs.com/">Google Browser Size</a> for a specific website enter the url of the website into the text form at the top. Please note that the service will not automatically align the website at the left browser border which might be necessary for sites that do not do that automatically to visualize the real percentages. A user with a 1920 monitor resolution will for instance see a different result for the same website than a user with a 1024 monitor resolution. It is therefor important to align the content to the left side of the screen.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/12/17/google-browser-size/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Google Analytics Intelligence</title><link>http://www.ghacks.net/2009/11/22/google-analytics-intelligence/</link> <comments>http://www.ghacks.net/2009/11/22/google-analytics-intelligence/#comments</comments> <pubDate>Sun, 22 Nov 2009 09:32:14 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[google analytics]]></category> <category><![CDATA[google analytics intelligence]]></category> <category><![CDATA[traffic analysis]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[websites]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=19617</guid> <description><![CDATA[Google has added a new module to Google Analytics called Intelligence. The currently in beta module displays custom and automatic alerts that are created from website traffic operations. It is not sure yet if all Google Analytics users have access to this new module of the website traffic analysis service yet or if it has [...]]]></description> <content:encoded><![CDATA[<p>Google has added a new module to <a
href="http://www.google.com/analytics/">Google Analytics</a> called Intelligence. The currently in beta module displays custom and automatic alerts that are created from website traffic operations. It is not sure yet if all Google Analytics users have access to this new module of the website traffic analysis service yet or if it has been made available to select users only.</p><p>Google Analytics users who can access it will find a display of their website&#8217;s traffic graph along with another bar below that is showing the alerts for the corresponding days. Alerts are color coded with automatic alerts using a light green and custom alerts a light blue color. There will only be automatic alerts in the beginning.</p><p><span
id="more-19617"></span><a
href="http://www.ghacks.net/wp-content/uploads/2009/11/google_analytics_intelligence.jpg"><img
src="http://www.ghacks.net/wp-content/uploads/2009/11/google_analytics_intelligence-500x106.jpg" alt="google analytics intelligence" title="google analytics intelligence" width="500" height="106" class="alignnone size-medium wp-image-19618" /></a></p><p>The automatic alerts will give a webmaster immediate information about traffic jumps. This includes major traffic changes to certain pages on the website, a change in a page&#8217;s bounce rate, pageviews or a higher or lower than usual visitor stream from a specific country, state or region.</p><p><a
href="http://www.ghacks.net/wp-content/uploads/2009/11/google_analytics.jpg"><img
src="http://www.ghacks.net/wp-content/uploads/2009/11/google_analytics-500x168.jpg" alt="google_analytics" title="google_analytics" width="500" height="168" class="alignnone size-medium wp-image-19619" /></a></p><p>This gives the webmaster a quick overview of traffic developments on a specific web project or website. There are certain possibilities where Google Analytics Intelligence module can help. Webmasters could for instance investigate traffic increases or decreases more effectively as it will for instance display a decrease in traffic to a very popular page on the website. The webmaster could then analyze the issue further.</p><p>It is furthermore possible to create custom alerts and this could be very interesting to some webmasters. Custom alerts are created from a list of available alert conditions. The webmaster selects a traffic type to be monitored. This can be all traffic, traffic from a campaign, keyword, medium and landing or exit page. This traffic type is then combined with a metric that is triggering the alert. This again can be pageviews, total visitors, revenue or pre-defined goals. The selected metric is then given a threshold value. An alert is then automatically created whenever that value is crossed.</p><p>Another interesting option is to look at weekly or monthly reports which even gives a better overview as day to day variations are something that every webmaster has to live with. Google Analytics Intelligence is available in the left sidebar menu of the Google Analytics account.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/11/22/google-analytics-intelligence/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Internet Explorer Application Compatibility VPC Image</title><link>http://www.ghacks.net/2009/09/17/internet-explorer-application-compatibility-vpc-image/</link> <comments>http://www.ghacks.net/2009/09/17/internet-explorer-application-compatibility-vpc-image/#comments</comments> <pubDate>Thu, 17 Sep 2009 17:24:34 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Browsing]]></category> <category><![CDATA[Internet Explorer]]></category> <category><![CDATA[internet explorer 6]]></category> <category><![CDATA[internet explorer 7]]></category> <category><![CDATA[internet explorer 8]]></category> <category><![CDATA[internet-explorer]]></category> <category><![CDATA[virtual pc]]></category> <category><![CDATA[web browser]]></category> <category><![CDATA[webmaster]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=16438</guid> <description><![CDATA[Web designers and webmasters need to check their designs and websites not only in web browsers from various web browser developers but also in different versions of a web browser. Microsoft&#8217;s Internet Explorer for example has a distribution rate that is still divided among the versions 6, 7 and 8 of Internet Explorer making it [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://www.ghacks.net/wp-content/uploads/2009/04/internet_explorer_8.png" alt="internet explorer 8" title="internet explorer 8" width="128" height="128" class="alignleft size-full wp-image-11776" />Web designers and webmasters need to check their designs and websites not only in web browsers from various web browser developers but also in different versions of a web browser. Microsoft&#8217;s Internet Explorer for example has a distribution rate that is still divided among the versions 6, 7 and 8 of Internet Explorer making it a necessity to test the website in all three of these versions (unless you are a huge site and have decided to cut off Internet Explorer 6 completely).</p><p>There are various options to test a website in different versions of Internet Explorer. Some, like <a
href="http://www.ghacks.net/2008/08/30/use-multiple-internet-explorer-versions-simultaneously/">IETester</a>, make it possible to install multiple versions of Internet Explorer on the same computer system. Others, like <a
href="http://www.ghacks.net/2007/04/24/view-your-site-in-different-browsers/">Browsershots</a>, are online tools that can test a website in various web browsers as well.</p><p><span
id="more-16438"></span>A third possibility is now offered by Microsoft directly in the form of virtual PC images. Internet Explorer 6, Internet Explorer 7 and Internet Explorer 8 are provided as virtual PC images. It is possible to download a virtual PC image for each web browser running under Windows XP or Internet Explorer 7 or Internet Explorer 8 images running under Windows Vista.</p><p>The Windows XP images have a size of around 600 Megabytes each while the Windows Vista images triple that size. The only limitation is an expiration date for the virtual PC images. The Windows XP images will expire in January 2010 while the Vista images will expire 120 days after their first execution. These expiration dates make the virtual PC images a less than favorable solution but its probably better than not testing the various editions of Internet Explorer at all.</p><p>Users who are interested in the virtual PC images can <a
href="http://www.microsoft.com/downloads/en/details.aspx?FamilyId=21EABB90-958F-4B64-B5F1-73D0A413C8EF&amp;displaylang=en">download</a> them directly from the Microsoft website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/09/17/internet-explorer-application-compatibility-vpc-image/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Local Apache Web Server Wampserver</title><link>http://www.ghacks.net/2009/09/17/local-apache-web-server-wampserver/</link> <comments>http://www.ghacks.net/2009/09/17/local-apache-web-server-wampserver/#comments</comments> <pubDate>Thu, 17 Sep 2009 09:08:17 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Open Source]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[apache]]></category> <category><![CDATA[apache server]]></category> <category><![CDATA[apache web server]]></category> <category><![CDATA[mysql]]></category> <category><![CDATA[php]]></category> <category><![CDATA[wampserver]]></category> <category><![CDATA[webmaster]]></category> <category><![CDATA[xampp]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=16430</guid> <description><![CDATA[Running a local Apache web server is essential for many webmasters. It is always a good idea to test code locally before publishing it on the Internet. Professional webmasters usually test their code in a local web server before it gets published. Mainly to avoid possible downtimes in the live environment but also to avoid [...]]]></description> <content:encoded><![CDATA[<p>Running a local Apache web server is essential for many webmasters. It is always a good idea to test code locally before publishing it on the Internet. Professional webmasters usually test their code in a local web server before it gets published. Mainly to avoid possible downtimes in the live environment but also to avoid the hassle of having to upload and edit code on the Internet or network. It&#8217;s simply faster to test everything locally.</p><p>Wampserver is an Apache web server for the Windows operating system. It provides in many regards the same functionality of other web server solutions like <a
href="http://www.ghacks.net/2007/01/31/host-your-own-webserver/">XAMPP</a> or <a
href="http://www.ghacks.net/2009/03/28/home-web-server/">Home Web Server</a> which we have reviewed in the past. The latest version of the local web server package will install Apache 2.2.11, MySQL 5.1.36 and PHP 5.3.0 on the local computer system.</p><p><span
id="more-16430"></span>One interesting unique feature is the ability to add different versions of Apache, MySQL and PHP to the installation in the form of add-ons. This can be very handy to test a website locally under multiple different Apache, MySQL or PHP release versions.</p><p><img
src="http://www.ghacks.net/wp-content/uploads/2009/09/apache_web_server.gif" alt="apache web server" title="apache web server" width="281" height="289" class="alignnone size-full wp-image-16431" /></p><p>The installation of Wampserver will always install the latest versions of Apache, MySQL and PHP. One interesting security feature is the ability to limit access to the web server to localhost. It is required to click on the &#8220;put online&#8221; option to make it available to other computer systems as well.</p><p>Additional Apache, MySQL and PHP versions can be installed from the Wamp add-ons <a
href="http://www.wampserver.com/en/add-ons.php">page</a>. All add-ons are provided as executables that can be installed easily on the operating system.</p><p>Webmasters who need to test code offline can use Wampserver to do so. It is especially useful to test code against multiple versions of Apache, MySQL and PHP. Something that the other home server solutions do not provide.</p><p><a
href="http://www.wampserver.com/en/">Wampserver</a> is Open Source and can be downloaded from the developer&#8217;s website.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2009/09/17/local-apache-web-server-wampserver/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> </channel> </rss>
