1
vote
1answer
40 views

Extracting useful/readable content from a website

I am working on a application that needs to scrape a part of a website the user submits. I want to collect useful and readable content from the website and definitely not the whole site. If I look at ...
-4
votes
0answers
32 views

scraping header info please curl php [closed]

hi there i have the following curl function function login($url,$data){ $fp = fopen("cookie.txt", "w"); fclose($fp); $login = curl_init(); curl_setopt($login, CURLOPT_HEADER, true); ...
1
vote
0answers
66 views

Node.js Scraping: Not receiving query string on 302 redirect location

I've tried Node.js' HTTPS class and also Mikeal's "request" library. Either way, when scraping a certain website that returns a 302 response, I can not retrieve the query string parameters. See below ...
0
votes
1answer
135 views

How can I echo a scraped div in PHP?

How do I echo and scrape a div class? I tried this but it doesn't work. I am using cURL to establish the connection. How do I echo it? I want it just how it is on the actual page. $document = new ...
0
votes
0answers
248 views

scraping an ASP website with php using cURL

I am completely new to asp scraping and I need your help for the following code snippet: Aim of the code is to scrape the 2nd tab of a website that is retrieved via a doPostBack call. By using ...
1
vote
2answers
77 views

What is the best way to modify the JavaScript included in a scraped web page?

During a site scraping, I discovered several scraped functions in JavaScript that I need to modify because the code uses a relative path: /UserControl/bla I need to modify it to use absolute path: ...
1
vote
0answers
129 views

how to set cookies in curl using LIB_http

I'm receiving cookies message again & again while sraping the page manta.com message is Array ( [FILE] => Oops. Before you can move on, please activate your browser cookies. I am using cookies ...
1
vote
0answers
259 views

curl php scraping through cron job every minute on Shared hosting

I have a tricky problem. I am on a basic shared hosting. I have created a good scraping script using curl and php. Because multi-threading with Curl is not really multi-threading and even the best ...
3
votes
3answers
653 views

Scraping data from all asp.net pages with AJAX pagination implemented

I want to scrap a webpage containing a list of user with addresses, email etc. webpage contain list of user with pagination i.e. page contains 10 users when I click on page 2 link it will load users ...
0
votes
1answer
143 views

How do I change header location of curl content scraper

I am scraping content from a url that is hosted in the UK using curl. When i view the site in my browser from the US it shows the product pricing in dollars but when i use curl to retrieve content it ...
0
votes
1answer
336 views

How to use cURL to POST form values on form using JS

*Sorry for the long post * I'm using cURL in PHP to post some form fields in effort to return the result of the post Need some help as the form is somewhat unusual. cURL Script $ch = curl_init(); ...
-1
votes
1answer
254 views

php - Fastest way to check presence of text in many domains (above 1000)

I have a php script running and using cURL to retrieve the content of webpages on which I would like to check for the presence of some text. Right now it looks like this: for( $i = 0; $i < ...
0
votes
0answers
69 views

Scraping of ASP.Net generated page having pagination using curl [duplicate]

Possible Duplicate: Screen Scraping of aspx page using curl I am new to screen scraping and working on an aspx page. On the page, there is pagination. I can scrap first page but can't next ...
-2
votes
2answers
522 views

Screen Scraping of aspx page using curl [closed]

I am using this code, and its not working. Please help $url = "http://www.riogrande.com/Category/Findings-and-Finished-Jewelry/132/Bails-and-Enhancers/472"; $file=file_get_contents($url); ...
0
votes
1answer
118 views

CURL class that works like simple HTML DOM?

So i've been using both CURL and simple_html_dom for a while, for anyone who is not familiar with simple HTML DOM - It allows you to go through elements with ease and without the hassle of having to ...
0
votes
1answer
182 views

Using curl for scraping large pages

I'm trying to scrape comments from a popular news site for an academic study using curl. It works fine for articles with <300 comments but after that it struggles. $handle = curl_init($url); ...
2
votes
1answer
205 views

php xpath returning entire html

why is this returning the whole html document instead of just the values from nodes that contain "H+R+E"? sample of html: <tr class="linesAlt1"> <td>04:10 PM</td><td ...
0
votes
2answers
82 views

Is there a library than can trudge through AJAX/javascript?

I'm using PHP to scrape some information off webpages, however, I've discovered that the info I'm trying to scrape from the pages is loading through some manner of AJAX/javascript. I thought I ...
0
votes
1answer
1k views

Scrapping aspx page using php curl

I am trying to scrap a aspx page using php curl code, which contains data page wise. Initially the page loads with get method, but as we select page no. from drop down it submits page the page using ...
-3
votes
1answer
2k views

Scrape Google-Search results page in PHP for total results and parse them

good day dear buddies, well i tried to write a PHP-Parser that runs against google - Well - it takes the value of $query to whatever i want to search for. So far so good. Well this grabs the links ...
2
votes
2answers
529 views

PHP Scraping with curl - How can I debug

I just learned what scrapping and cUrl is few hours ago, and since then I am playing with that. Nevertheless, I am facing something strange now. The here below code works fine with some sites and not ...
-1
votes
1answer
480 views

Executing a long running screen scraping script [closed]

I have a screen scraping script in PHP on a GoDaddy shared LAMP server running via command-line. The script scrapes, parses and stores the required information in a database. It takes about 1.5 ...
0
votes
4answers
289 views

Advanced screen-scraping using curl

I need to create a script that will log into an authenticated page and download a pdf. However, the pdf that I need to download is not at a URL, but it is generated upon clicking on a specific input ...
-1
votes
1answer
450 views

Google scraping results [closed]

I need to get the google top 10 results for some keyword but I know that google dont's allow that. How to do that. WIth some proxy, script... I'm only need the URL's of top 10 sites for some keyword. ...
0
votes
3answers
235 views

Unable to fetch my schedule data from my schools site. Login with cURL wont work

Edit: Why the minus one? What I am trying to do is the following: I am trying to login to my school site using cURL and grab the schedule to use it for my AI. So I need to login using my pass and ...
0
votes
1answer
486 views

Having Trouble Using CURL and PHP to Get Google Search Results Through a Proxy

This script works fine when getting google.com but not with google.com/search?q=test. When I don't use CURLOPT_FOLLOWLOCATION, I get a 302 Moved. When I do use it, I get a page asking me to input a ...
0
votes
1answer
484 views

screen scraping with curl

so far my cURL code i have written displays the page that I would like after it automatically logs me into a website, however i am stuck on the issue of screen scraping. I would like to now sort ...
-3
votes
1answer
1k views

Facebook page scraping

I am trying to scrap a facebook page ( https://www.facebook.com/pages/PTSD/455847705426 ) I found this script to login to facebook. <?php $EMAIL = "me@mail.com"; $PASSWORD = "facebookPassword"; ...
0
votes
3answers
258 views

How can I screen-scrape the HTML result of a non-trivial user scenario

I want to be able to get the HTML for a page which, if I was doing it interactively in a browser, would involve multiple actions and page loads: 1. Go to homepage 2. Enter text into a login form and ...
-1
votes
1answer
392 views

Grabbing content through php curl

iam trying to develop a content grabber using php curl, i need to retrieve content from an url eg:http://mashable.com/2011/10/31/google-reader-backlash-sharebros-petition/ and store it in a csv file. ...
0
votes
1answer
163 views

Undefined Offet Error in cURL Code

I am building a php script to search and scrape google pages that uses curl, receiving the following error. Undefined offset: 1 in /home/content/53/7382753/html/Summer/wootsummer.php on line 25 The ...
0
votes
0answers
170 views

Why is this PHP cURL script drawing a blank?

This script is meant to search urls, find those urls with a target string in the source code, copy them with curl and enter the urls of google ads on them into a mysql database. It is live at ...
0
votes
2answers
190 views

cURL PHP Internal Error, why?

I am working on a tool to grab the urls from google searches that contain specific urls. Input is a list of urls and a target url, the desired output is a list of urls for the ads that appear on those ...
1
vote
1answer
588 views

Scraping with PHP cURL and XPath, how to speed up things?

Currently I'm scraping using PHP cURL and XPath, but it is very slow. Each website has many URLs with many subpages using Javascript. One website would have say 30 categories of products and each ...
3
votes
1answer
136 views

Should I use Keep-Alive when screen-scraping?

Is it recommended to work with persistent connections when screen-scraping? What are the possible advantages/disadvantages? I'm using PHP/cURL to scrape.
1
vote
2answers
59 views

checking programmatically that a remote websites 'shows' a particular html element

I want to require my free users to add a linkback to my website. But, I want to check it programmatically that indeed they added the linkback html element I provided and was not hidden by some sort of ...
4
votes
2answers
973 views

Grab item prices from newegg

Ok, i need to get the prices of items from newegg.com. I'm an affiliate with them and i have permission. I want to get the prices using php scripts and then insert them into a template and save the ...
-1
votes
2answers
736 views

PHP CURL - scraping xml data that is returned as HTML [duplicate]

Possible Duplicate: Best XML Parser for PHP I am a newbie to PHP and cURL, so please give simple steps! :) I am trying to scrape data from a website that is returning XML data as HTML. ...
0
votes
1answer
319 views

Log into ThinkStock using cUrl

I'm wondering whether it is possible to cUrl into ThinkStock. My probing/research so far has yielded the following: The auth page https://secure.thinkstockphotos.com/Authentication/SignIn sets ...
0
votes
1answer
269 views

Using PHP to gather an image at a specified URL and storing it into a database

Generally, I am looking to input a URL and then import the image at that URL into a database. Here is some code that has me close, but alternatives are welcomed. If I try to store $image into a ...
0
votes
1answer
182 views

Wget data from a script

Here's an example website: http://www.indianyellowpages.com/business-services/advertising/ When you click any of the 'View Contact Details' buttons (and register, no e-mail confirmation needed), a ...
-1
votes
1answer
249 views

Want to send header with screen scraping

i am still stucked in screen scraping problem... link : screen scraping in php problem This problem was solved to little extent by using '&num=100' in google search query which decreased the no. ...
1
vote
2answers
554 views

Scraping images from one site to another

I'm new here, and quite new to web development in general. My background is in 3D modeling and design, but I recently started a project that I think could be a nice resource for the 3D community. ...
1
vote
3answers
1k views

cURL and scraping websites that look to detect Frames support

I'm trying to pull information from Natwest's Online Banking service using PHP / cURL - the idea being that if it's actually possible to do, then I could maybe make a more mobile-friendly site to ...
0
votes
1answer
545 views

Problem with curl, xpath query

I need some help with my xpath query. I can get this code to work with just about every site I need to scrape except this small part of a particular site... I just get a blank page... Does anyone ...
1
vote
2answers
769 views

PHP Magento Screen Scraping

I am trying to scrape a suppliers magento site in an effort to save some time because of there being around 2000 products I need to gather info for. I'm totally OK with writing a screen scraper for ...
0
votes
1answer
112 views

Need help logging to site using CURL

I have some problems logging to a site using CURL. I think my problem is related to cookie file. I use cookiejar when I'm logging in to collect the information and then I use cookiefile to retrieve ...
1
vote
3answers
3k views

PHP function to grab all links inside a <DIV> on remote site using scrape method

Anyone has a PHP function that can grab all links inside a specific DIV on a remote site? So usage might be: $links = grab_links($url,$divname); And return an array I can use. Grabbing links I can ...
0
votes
2answers
1k views

How to Import facebook contact using php and curl

I want to create a contact importer application.How to Import facebook contact using php and curl(prefer screenscraping).Please anybody can help me....
1
vote
2answers
214 views

Login Javascript within PHP

I have been creating a web scraper for an internal application with PHP but one of the pages has a JavaScript login is there any way of autonomously logging in to scrape the data as usual? (I am ...

1 2