SEO Services
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsWeb DesignSEO Services

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old June 16th, 2007, 07:05 AM
RadioactiveFrog's Avatar
RadioactiveFrog RadioactiveFrog is offline
Senior Glowing Wizard
ASP Free God 7th Plane (8000 - 8499 posts)
 
Join Date: May 2005
Location: Sussex
Posts: 8,223 RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 173370 Folding Title: Super Ultimate Folder - Level 1Folding Points: 173370 Folding Title: Super Ultimate Folder - Level 1Folding Points: 173370 Folding Title: Super Ultimate Folder - Level 1Folding Points: 173370 Folding Title: Super Ultimate Folder - Level 1Folding Points: 173370 Folding Title: Super Ultimate Folder - Level 1Folding Points: 173370 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Weeks 4 Days 3 h 46 m 30 sec
Reputation Power: 327
Send a message via MSN to RadioactiveFrog
Facebook
SEO Useful Tools

Ok, i have recently been working on SEO'in a clients site! And i have come across some useful tools so far that i thought i would share.

Maybe we could make this a sticky and get people to add to it!!

123-Reg Instant Traffic
This isn't a free tool, but there are different variations of the tool. What does it do? - "InstantTraffic uses real-time search engine data and analysis tools to get your site listed and let you know how it’s performing against similar websites." It produces some interesting and helpful data and the monthly report is good and prompts me to work more on the SEO for that site.

Create a Google Site Map
SiteMaps as you will read in other stickies are an important part in optimising your site, but it can be time consuming. I came across this tool today that is very useful and creates much of it for you! Take a look!

Google Keyword Tool
Creating keywords might seem easy, but it is important to think about what your customers/visitors will be searcing for to find you, not just what you know the company will be found under! So this tool helps by asking for what you would type in and then offers suggestions. It also shows last months search quantity for that keyword / phrase and the competition for it as well!

Overture Keyword Suggestion Tool
This is much like the google keyword tool, somestimes comes up with some different suggestions and also often shows a different months search data from the google tool. Just a good alternative!

Bulk Check Sites Google Page Rank
With this tool you can bulk check a load of sites page ranks, which is very helpful for those of us working on multiple sites!


I am sure there ar eloads of other tools that help, so if you have come across ones that you can say are good and worth other people using maybe list them here and say what they do!

Cheers,

RF

Reply With Quote
  #2  
Old June 16th, 2007, 06:27 PM
pws1970 pws1970 is offline
Contributing User
ASP Free Loyal (3000 - 3499 posts)
 
Join Date: Aug 2005
Posts: 3,250 pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 20017 Folding Title: Starter FolderFolding Points: 20017 Folding Title: Starter Folder
Time spent in forums: 4 Weeks 1 Day 4 h 5 m 50 sec
Reputation Power: 364
SEO Tools dontacha just love em'.

Perhaps the Dogs Dangly Bits out there at this moment in time is SEO for Firefox Extension from SEOBook.

http://tools.seobook.com/firefox/seo-for-firefox.html

It has every thing you require for traffic estimation, back-links, supplemental, whois and so much more...

SEO Desktop App's that I use in my own environment (I did use the demo's but have since signed up for the full releases)

IBP 9
Web CEO

Also I have this script that is written in (dare I say it ...PHP) that will check your ranking up to the first 50 pages or 500 positions and I would be most grateful if anyone could translate it into asp... the script

PHP Code:
<?



if (isset($_GET['url']) && isset($_GET['keyword'])) {
   
   
$gg_url 'http://www.google.com/search?hl=en&q=' urlencode($_GET['keyword']) . '&start=';
   
   
$url preg_replace('(^http://|/$)','',$_GET['url']);
   
   for (
$page 0$page 50$page++) {
     
     
$handle fopen($gg_url $page  ,'r');
     
     
$scraped ''
     
      if (
$handle) {
        while (!
feof($handle)) {
            
$buffer fgets($handle4096);
            
$scraped .= $buffer;
        }
        
fclose($handle);
      }
      
      
$results = array(); 
      
preg_match_all('/a href="([^"]+)" class=l.+?>.+?<\/a>/',$scraped,$results); 
      
      foreach (
$results[1] as $serp) {
        
$serp preg_replace('(^http://|/$)','',$serp);
        if (
$serp == $url) {
          
header('Location: ' $gg_url$page '0');
          exit;
        }
        
      }
      
   }  
   
$error_message 'Not in top 500 search results';
}

?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
    <title>Where's it rank at Google?</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

  <style type="text/css">
     
     form { width: 500px; margin: 0 auto; }
     
     .error_message { color: #920000; }
     
     label { 
       display: block; 
       margin-top: 1em;
     } 
     
     input[type=submit] { 
       margin-top: 1em;
     }
     
     address { font-size: .75em; text-align: center; }
     
  </style>
  
  <script type="text/javascript" language="javascript">
    
    function init() {
      document.url_kw.keyword.focus();
    }
    
  </script>
    
</head>

<body onload="javascript: init();">
  
  <form name="url_kw" action="<?= $_SERVER['PHP_SELF'?>" method="get">
    
    <fieldset>
      
      <legend>Where's it rank at Google?</legend>
        
      <? if ($error_message): ?>
       <strong class="error_message">Not found in top 500 search results</strong>
      <? endif; ?>
      
      <label for="url">URL:</label>
      <input type="text" name="url" id="url" size="55" value="<?= isset($_GET['url']) ? $_GET['url'] : 'http://' ?>" />
      
      <br />
      
      <label for="keyword">Keyword:</label>
      <input type="text" name="keyword" id="keyword" size="35" value="<?= isset($_GET['keyword']) ? $_GET['keyword'] : null ?>" />
      
      <br />
      
      <input type="submit" name="submit_button" value="SEARCH" onclick="this.value='Searching...';" />
      
      <input type="button" value="CANCEL" onclick="javascript: window.location='<?= $_SERVER['HTTP_REFERER'?>';" />
      
      <br />
      

     
    </fieldset>
    

    
  </form>

</body>

</html>
Comments on this post
micky agrees!

Last edited by pws1970 : June 16th, 2007 at 06:31 PM.

Reply With Quote
  #3  
Old August 24th, 2007, 08:17 AM
jhnrang jhnrang is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2007
Posts: 1 jhnrang User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 50 m 9 sec
Reputation Power: 0
I would like to contribute a little.

When-ever I need to check ranking of a site for a keyword -

I use this (URL address blocked: See forum rules) that can give results upto 1000.

Last edited by jmurrayhead : August 24th, 2007 at 08:31 AM.

Reply With Quote
  #4  
Old October 6th, 2007, 04:47 PM
sirronstuff sirronstuff is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Location: Fort Worth, TX
Posts: 13 sirronstuff User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 37 m 54 sec
Reputation Power: 0
Here is a site I have been using and absolutely love. Awesome tools that have been able to show me what my competition has done to show up in the major search engines and has saved me a ton of time.

http://www.webuildpages.com/cool-seo-tool/

Another I use is: http://www.websitegrader.com/

another is: http://www.backlinkwatch.com/ pulls out all the backlinks to your site, or OTHERS! Nice to know where you can consider putting links.

Another one I have been using, but cannot verify just how much of a difference it makes is:

http://directorysubmitter.imwishlis...ndard-download/

Makes submitting to directories easier, but I have shown little benefit to that so far. I think most of them have no follow tags.

And found this one yesterday for the first time, and I'll probably use it from time to time.

http://rnk1.com/

I hope others continue to share more. Thanks.

Last edited by Shadow Wizard : October 8th, 2007 at 09:13 AM. Reason: fixed the links

Reply With Quote
  #5  
Old October 6th, 2007, 04:48 PM
sirronstuff sirronstuff is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Location: Fort Worth, TX
Posts: 13 sirronstuff User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 37 m 54 sec
Reputation Power: 0
wish I knew what it was. The product two posts above me. See up to 1000 in google. That would be nice and a huge time saver.

Reply With Quote
  #6  
Old October 8th, 2007, 09:21 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 48th Plane (28500 - 28999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 28,836 Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 21st Grade (Above 100000 Reputation Level)  Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2Folding Points: 544103 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 3 Months 2 Weeks 1 Day 13 h 54 m 20 sec
Reputation Power: 2389
Quote:
Originally Posted by sirronstuff
wish I knew what it was. The product two posts above me. See up to 1000 in google. That would be nice and a huge time saver.
probably spam, if it was removed by moderator. the spammer can always
buy legitimate advertisement here so you might see what he's trying to sell.
regarding your links, you can post links now I have Edited your post for you.

Reply With Quote
  #7  
Old October 8th, 2007, 10:18 AM
sirronstuff sirronstuff is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Location: Fort Worth, TX
Posts: 13 sirronstuff User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 37 m 54 sec
Reputation Power: 0
Quote:
Originally Posted by Shadow Wizard
probably spam, if it was removed by moderator. the spammer can always
buy legitimate advertisement here so you might see what he's trying to sell.
regarding your links, you can post links now I have Edited your post for you.


Oh hey thanks. I am completely ok with the rules in place to require "time in grade" as it eliminates spammers. I will look forward to contributing as I can. Thanks again.

Reply With Quote
  #8  
Old October 14th, 2007, 05:43 PM
pws1970 pws1970 is offline
Contributing User
ASP Free Loyal (3000 - 3499 posts)
 
Join Date: Aug 2005
Posts: 3,250 pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)pws1970 User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 20017 Folding Title: Starter FolderFolding Points: 20017 Folding Title: Starter Folder
Time spent in forums: 4 Weeks 1 Day 4 h 5 m 50 sec
Reputation Power: 364
I ran a review over this product -- Rank Checker -- on my blog post Search Engine Rank Checker -- it checks your rankings upto 1000 positions in Google, yahoo, MSN and Ask.

Its quite a neat tool.

Reply With Quote
  #9  
Old October 15th, 2007, 10:23 AM
sirronstuff sirronstuff is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Location: Fort Worth, TX
Posts: 13 sirronstuff User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 37 m 54 sec
Reputation Power: 0
Thumbs up

Quote:
Originally Posted by pws1970
I ran a review over this product -- Rank Checker -- on my blog post Search Engine Rank Checker -- it checks your rankings upto 1000 positions in Google, yahoo, MSN and Ask.

Its quite a neat tool.


That is VERY COOL! Thanks. I tried it right away, and it seems pretty accurate. That will save so much time, as right now I am going into each search engine and putting my words in. Thanks for posting that.

Here are some more I recently found that may have some value:

Find link partners based on keywords

Making your robots page

Reply With Quote
  #10  
Old August 22nd, 2008, 01:36 PM
danielscott8 danielscott8 is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Posts: 6 danielscott8 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 53 m 54 sec
Reputation Power: 0
Thumbs up

very useful information and seo tools, Thanks for providing the tools details...........

Reply With Quote
  #11  
Old September 1st, 2008, 07:00 AM
ddwebguru ddwebguru is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Posts: 3 ddwebguru User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 13 m 33 sec
Reputation Power: 0
Seo book rank checker tool is excellent -

Reply With Quote
  #12  
Old January 11th, 2009, 09:03 AM
ralman ralman is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jan 2009
Posts: 3 ralman User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 m 15 sec
Reputation Power: 0
I believe the key of SEO is to actually use simple actions over and over.

Reply With Quote
  #13  
Old August 3rd, 2009, 04:41 AM
Maria2009 Maria2009 is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2009
Posts: 1 Maria2009 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 19 sec
Reputation Power: 0
thanks for your suggestion

[Moderators Note: URL Removed]

Reply With Quote
  #14  
Old November 3rd, 2009, 05:42 AM
Mellanie Mellanie is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2009
Posts: 10 Mellanie User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 58 m 46 sec
Reputation Power: 0
Thanks for sharing, that tools very helpful and will be more if you haved strong keyword analytics

Reply With Quote
Reply

Viewing: ASP Free ForumsWeb DesignSEO Services > SEO Useful Tools


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
Stay green...Green IT