Server-Based Website-Crawler

dddd

Junior Member
Joined
Jun 4, 2007
Messages
164
Reaction score
161
Hey guys, does somebody of you know of a good server-based website-crawler?

What I mean by that is:

(a) input URL of website

(b) crawler starts to crawl every single page on the website and saves the page as file

result: a directory on the server with every single page the website has for offline "processing / viewing" ;)

Getting single URL's is pretty easy, but crawling indefinite levels deep is a different thing... :-( So anybody any suggestions please?
 
Yes, HTTrack is a great program and very fast. It also allows options such as which images to pull and howin depth you want to copy the site.
 
Create a directory to store the site on your server and run wget below, replacing http://somesite.com with the site you wish to download.
Code:
 wget -r -k http:/somesite.com

This will recursively download the site locally.


Or you can download wget for windows and do the same on your windows machine.
Code:
http://gnuwin32.sourceforge.net/packages/wget.htm

Hope that helps.
 
Why server side???

Just Google search backstreet browser. It's a great website mirroring program.
 
(a) server-side because it's faster than with my dsl connection
(b) thanks zone69 for the wget idea, didn't know it has crawling options, will try this, again thanks!
 
Back
Top