Skip to main content

69 Tools to Monitor, Measure, and Track Your Website


69 Tools to Monitor, Measure, and Track Your Website


SEOmoz Page Strength Tool
 – A useful tool that gives an overall look at the strength of a page.PAGE ANALYSIS:
  1. Sitening’s SEO Analyzer – See if your pages are structured to achieve high search engine rankings.
  2. Self SEO’s Page Speed Checker – Test the load time of your pages and your competitor’s pages.
  3. GoogleRankings.com – Check the use of keywords and phrases on your site.
  4. Popuri – See several items such as PageRank and inbound links all at once.
  5. Keyword Density Analysis – See how frequently you are using certain words and phrases.
  6. Meta Tag Analyzer – How are search engine spiders seeing your meta tags?
  7. Code to Text Ratio – Check for code bloat.
  8. Strongest Subpages Tool – Finds the 30 strongest subpages on your domain.
  9. Similar Page Checker – Avoid duplicate content.
  10. SEO Analysis Tool – Measures the ranking potential of a page.
  11. WebSitePulse – A few different tools to test your sites performance.
  12. Website Grader – Get a score for your site and even compare it to competitors if you want.
  13. Watchfire WebXACT – Test for quality, accessibility, and privacy issues.
STATS:
  1. Google Analytics – The leading free stats program.
  2. AWStats
  3. StatCounter
  4. AddFreeStats
  5. OneStat
  6. Smart Tracking
  7. Alexa – See where your site ranks.
BLOG STATS:
  1. FeedBurner – Stats on your feed and your subscribers.
  2. pMetrics – from Performancing.
  3. pMetrics Plugin- Extending pMetrics.
  4. IceRocket – Free stats program for blogs.
  5. Technorati – See who’s linking to you.
STATS PLUS:
  1. Crazy Egg – Provides visual data about your visitors.
  2. Mint – An extensible, self-hosted web site analytics program.
WEBMASTER TOOLS:
  1. Google Webmaster Tools – Lots of information that shows you how Google sees your site.
  2. Web CEO – A collection of a number of useful tools. Free and paid editions.
CHECK AND TRACK SEARCH ENGINE RANKINGS:
  1. Sitening’s SERP Tracker – Test your page’s optimization.
  2. Search Engine Rankings Checker – From Mike’s Marketing Tools.
  3. Google Banned Checker – Has the largest search engine in the world banned your website? Find out here.
  4. Number of Pages Indexed – How many pages do you have indexed by search engines?
  5. Website SEO Checkup – Make sure you’re ready to get high search engine rankings.
  6. GeoTargeting Detection Tool from SEOmoz – Determine how well your site is targeted to country specific search engines.
GOOGLE PAGERANK:
  1. PageRank Prediction – You need a minimum of 100 backlinks.
  2. Smart PageRank – Check your PR.
REPUTATION AND BUZZ MONITORING:
  1. Google Alerts – Have preset alerts sent to you by email.
  2. co.mments – Monitor comments on blogs.
  3. Conversation Tracker from BlogPulse
  4. Trend Search from BlogPulse
  5. Keotag – See if blogs are using your company name in the tags of their blog posts.
  6. BoardTracker – Watch for mentions of your company in forums.
LINKS:
  1. Dead Links tool from W3C – Find broken links.
  2. Link Popularity Checker – From Mike’s Marketing Tools.
  3. Xenu’s Link Sleuth – Find broken links.
  4. Backlinks and Anchor Text – See who’s linking to you and what anchor text they are using.
  5. Reciprocal Links Checker – Do you have agreements with others for reciprocal links? Check them here.
SPIDER SIMULATOR:
  1. Summit Media’s Spider Simulator
  2. Spider View
  3. Webconfs.com Spider Simulator
CSS ANALYSIS TOOLS:
  1. Clean CSS – Formatting and Optimizing
  2. CSS Tidy – Optimizer and parser.
  3. CSS Redunancy Checker – Redundancy is easy to do with CSS. Fix it with this.
  4. CSS Analyzer – A validator plus.
VALIDATORS:
  1. HTML – Validator from W3C.
  2. CSS – Validator from W3C.
  3. RSS – Validator from W3C.
WEBSITE PERFORMANCE:
  1. AlertSite Website Performance Monitor
  2. KeyNote
  3. WebWatch Bot
  4. IPCheckPoint
GOOGLE ADSENSE:
  1. Free Charts and Graphs
  2. AdSense Notifier – Shows your AdSense stats in the status bar.
BROWSER COMPATIBILITY:
  1. BrowserShots – See screenshots of your page in a number of different browsers.
  2. Ready.mobi – Test your site for use with mobile browsers.
OTHER:
  1. Geotargeting – find the location of your host’s servers
  2. Find Your Site’s IP Address

Comments

Popular posts from this blog

10 jQuery Custom Scrollbar Plugins

10 jQuery Custom Scrollbar Plugins If you ever wanted to add some custom scrollbars to your website, to scroll the contents and the default browser scrollbars just doesn’t match up with your design, than make sure you check this list of 10 jQuery custom scrollbar plugins. Hope you find the following information helpful. 1. jScrollPane – custom cross-browser scrollbars Kelvin Luck’s jScrollPane was originally developed in December 2006. It is a jQuery plugin which provides you with custom scrollbars which work consistently across all modern browsers. You can style the scrollbars using simple CSS and they degrade gracefully where JavaScript is disabled. 2. Plugin JQuery : Scrollbar This page is written in french so use Google’s translate service to translate this page to your preferred language. Download is available for the plugin.  The purpose of this plugin is to add a scrollbar to the item of your choice, to view any content which is larger than the size – vizib

connect ftp with gridview / display files in gridview from ftp or server

HTML Markup Below is the HTML Markup of the page, where I have an ASP.Net control  FileUpload  to upload files, a  Button control to trigger file uploads and an ASP.Net GridView control to display the files from folder. < asp : FileUpload   ID ="FileUpload1"   runat ="server"   /> < asp : Button   ID ="btnUpload"   runat ="server"   Text ="Upload"   OnClick ="UploadFile"   /> < hr   /> < asp : GridView   ID ="GridView1"   runat ="server"   AutoGenerateColumns ="false"   EmptyDataText   =   "No files uploaded">      < Columns >          < asp : BoundField   DataField ="Text"   HeaderText ="File Name"   />          < asp : TemplateField >              < ItemTempl

Working with Ajax UpdatePanel in asp.net

During work with our applications if we entered any values in textbox controls and click on a button in form we will see full postback of our page and we will lost all the controls values whatever we entered previously this happend because of postback. If we want to avoid this full postback of page and round trip to server we need to write much code instead of writing much code we can use ajax updatepanel control. Ajax updatepanel will help us to avoid full postback of the page i.e., avoid refresh of the whole page content with postback and stop flickering of the page which is associated with a postback and allows only partial postbacks. By using Ajax updatepanel we can refresh only required part of page instead of refreshing whole page. Ajax updatepanel works on very smooth concepts. but in some cases we got stuck while using Ajax updatepanel. But you need not to worry. Here i am showing you how to resolve the issues for different cases Lets start with very basic use of A