PHPCrawl is a framework for crawling/spidering websites written in the programming language PHP.

learn more… | top users | synonyms

3
votes
1answer
157 views

Are there any free php crawlers?

In the past I have used my own crawler, but now I need something more robust and I was wondering if there were any good free php crawlers?
2
votes
1answer
705 views

PHP web crawler, data structure and storage, Will it work with PHPCrawl?

If there are other classes written to do this, a link would be awesome, it not, how can I do it with PHPCrawl? Is it possible to store specific information from a crawled site based upon a set of ...
2
votes
3answers
889 views

Anyone has worked with a PHP API to read 'Nutch search engine' crawl results?

I have set up 'Nutch search engine' to crawl websites. Now,I need to write an php API to talk to the Nutch search engine. I need to do 2 things: using a PHP script I need to specify to Nutch as to ...
1
vote
3answers
728 views

Count the number of pages in a site

I'd like to know how many public pages there are in a site, say for example, smashingmagzine.com. Is there are way to count the number of pages?
1
vote
1answer
65 views

How do I use setTmpFile() method of phpcrawl class?

I am using this WebCrawler class http://phpcrawl.cuab.de. There is a method named "setTmpFile()" http://phpcrawl.cuab.de/classreference.html#settmpfile. I want to know that how can I use this method? ...
0
votes
2answers
874 views

single page web crawl in PHP

I am new to PHP. Can someone help me figure out how to crawl single html page and print all the words in the source code of that page?
0
votes
1answer
71 views

How do I remove certain tags and contents with PHP, using PHPCrawler

I am currently using PHPCrawler for some search functionality on a site. I need to remove some of the page elements from being indexed. For example, I have used: $doc_body = ...
0
votes
1answer
125 views

PHPCrawl: Output sitemap to XML file on server

I am trying to use PHPCrawl for my website's sitemap. However, I am having trouble trying to get it to output to an xml sitemap, on the server. Any help?
0
votes
1answer
129 views

how to crawl a single page and not any links contained in it and output the source?

I am using phpcrawl and below is the code. I want to crawl the mentioned link and get all the jobs. Now, I am crawling it by passing the link but it crawling all the links what we see in page-source ...
0
votes
2answers
191 views

Can PHPCrawl can be used for scraping websites and how different is from Scrapy?

I want to scrape few websites and many suggested Scrapy. It is Python based and since I am very familiar with PHP I looked for alternatives. I got a crawler PHPCrawl. I am not sure if it is just a ...
0
votes
1answer
115 views

Set cookie for a specific domain in PHPCrawl

I use PHPCrawl for crawl websites but now I want to add a cookie to specific domain, because this domain has a authentication and I want to get information in authorized pages. How can I add a cookie ...
0
votes
1answer
175 views

PHPcrawler - tmp file

I downloaded the latest version of phpcrawler, and I can access a test website of my own. I only have an image and some text on this site, I run the crawler and I receive the text minus the image ...
0
votes
0answers
320 views

get certain data from pages using crawler

I am looking to use a crawler to fetch data from a site, I found How do I make a simple crawler in PHP? and it was helpfull but I am looking to use the code on http://findpeopleonplus.com/ to get all ...
0
votes
1answer
109 views

Instantiating a new PHPCrawl Class throws the error “Call to undefined method stdClass::receivePage()”

I use a foreach loop to loop through multiple seed urls. During each loop, I instantiate a crawler using PHPCrawl and the next seed url. foreach($companyUrls as $companyId => $companyUrl) { ...
0
votes
1answer
172 views

PHPCrawl sometimes returns empty handed

I'm using the PHPCrawl class to spider websites and build a list of links. It all works well, if slowly, and I then use the links to perform other tasks. I'm encountering a problem where the first ...