|
|
||||||
|
||||||
| Index Link To US Private Messages Archive FAQ RSS | ||||||
| Search Engine Optimization Forum SEO is much easier with help from peers and experts! The WebProWorld SEO forum is for the discussion and exploration of various search engine optimization topics. Any non (engine) specific SEO or SEM topics should go here. |
Share Thread: & Tags
|
||||
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
I am looking for a free tool, where I can type in my domain name and the tool will spider all web pages on that domain.
I have seen several were you have to type in each page name, that is fine if you have a small website. I would like for the tool to spider all the pages it finds itself. Any help? thanks.......
__________________
Audio Bible on CD, DVD, MP3 and tape | Biblia Reina Valera en espaņol en CD y cassette | Audio Bible |
|
||||
|
The google sitemap generator tools do this. And they make a sitemap for you while they do it.
|
|
|||
|
Looks like i have to download a program, do some configuring, plus i have never used the tool. there must be something easier and better out there? right?
__________________
Audio Bible on CD, DVD, MP3 and tape | Biblia Reina Valera en espaņol en CD y cassette | Audio Bible |
|
||||
|
|
|
|||
|
You mention in the subject about a meta tag spidering tool but are you actually looking for a sitemap creator?
For sitemaps, this is a good webtool. http://www.xml-sitemaps.com/ Chris |
|
|||
|
I am just looking for a meta tag spidering tool, NOT a site map builder.
Thanks.........
__________________
Audio Bible on CD, DVD, MP3 and tape | Biblia Reina Valera en espaņol en CD y cassette | Audio Bible |
|
|||
|
that one cost $99.00, i would to find a free one if i could.
__________________
Audio Bible on CD, DVD, MP3 and tape | Biblia Reina Valera en espaņol en CD y cassette | Audio Bible |
|
|||
|
Hello,
Can you run PHP? Modify to write your own... Code:
<?php
/**
* Function to read meta information from the given domain.
*
* @param string $domain
*/
function getSiteMeta($domain){
// Read META info
$tags = get_meta_tags($domain);
// Check the result and display it.
if (sizeof($tags) == 0){
echo '<tr><td>No META information was found!</td></tr>';
}
foreach ($tags as $key=>$value) {
echo "<tr><td>$key: </td><td>$value</td></tr>";
}
}
?>
<html>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="domain">
<table>
<tr><td>Site URL: <input name="domainname" type="text"/></td></tr>
<tr><td><input type="submit" name="submitBtn" value="Get META" /></td></tr>
</table>
</form>
<?php
if (isset($_POST['submitBtn'])){
$domainbase = isset($_POST['domainname']) ? $_POST['domainname'] : '' ;
$domainbase = str_replace("http://","",strtolower($domainbase));
echo '<table width="100%">';
getSiteMeta("http://".$domainbase);
echo '</table>';
}
?>
</body>
</html>
|
|
||||
|
__________________
"Being an expert isn't telling other people what you know. It's understanding what questions to ask, and flexibly applying your knowledge to the specific situation at hand. Being an expert means providing sensible, highly contextual direction." Jeff Atwood SEO Workers - Search Engine Optimization Consulting Company | SEO Analysis Tool | Webnauts Net SEO |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
WebProWorld |
Advertise |
Contact Us |
About |
Forum Rules |
MVP's |
Archive |
Newsletter Archive |
Top |
WebProNews
WebProWorld is an iEntry, Inc. ® site - © 2009 All Rights Reserved Privacy Policy and Legal iEntry, Inc. 2549 Richmond Rd. Lexington KY, 40509 |