What is the actual error you're getting? Could you add getMessage to your catch
try
{
$this->DownloadImages($listing->mls_id, $listing->mls_listing_id, $listing->photo_url, $img_prefix, $listing->photo_quantity);
}Catch( \Exception $e ){
echo echo $e->getMessage();
echo $e->getTraceAsString();
}
elite123 said:
What is the actual error you're getting? Could you add getMessage to your catch
try { $this->DownloadImages($listing->mls_id, $listing->mls_listing_id, $listing->photo_url, $img_prefix, $listing->photo_quantity); }Catch( \Exception $e ){ echo echo $e->getMessage(); echo $e->getTraceAsString(); }
It says "Error completing request" and that's it.
Anybody? I'm really unsure how to get through this error since it isn't really telling me where I'm messing up.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community