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
126 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
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 ...
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? ...
2
votes
1answer
710 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 ...
0
votes
0answers
322 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
2answers
879 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?
3
votes
1answer
158 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?
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 ...
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 ...