I am using MPDF to generate a pdf with images. With http:// all works fine, but after changing my whole site to https:// I only get red crosses where the images should appear.
If I watch the generated file as html version, the images are all there, with https://, but in the generated PDF they are just not shown.
Any hint?
UPDATE: Error was because of CURL ("SSL certificate problem: unable to get local issuer certificate")
It was resolved by adding curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
to mpdf.php
Answer was found here: curl: (60) SSL certificate : unable to get local issuer certificate