I'm building a scraper with Scraper Wiki, here: https://scraperwiki.com/scrapers/fashfinder/edit/#
Without boring you with too many details, I load up about 120 links into an array, $allLinks. Then, at the bottom of the page, I call a FOR loop on the array as follows:
for ($i = 0; $i<count($allLinks); $i++){
getInfo($allLinks[$i]);
};
getInfo() is a function that gets product information from the supplied links. The function works fine for $i = 0 and $i = 1. Then, when $i = 2 something breaks - the source is loaded in the scraper and the whole thing stops. No errors but it says "Exit Status 139".
I tried reversing the $allLinks array with $allLinks = array_reverse($allLinks);
but the exact same thing occurred - it scraped 2 pages, got to the 3rd then suddenly stopped.
Any ideas on what's going wrong here? Can't find much info on what "EXIT STATUS 139" means, especially regarding scraperwiki!