REPOSTING THIS TOPIC IN BUGS:
I recently migrated my site to use SSL, the pdf exports have stopped working.
It is opening the URL as HTTP not HTTPS. Changing the “[SIZE=12px]PDF Server IP”[/SIZE] setting to include “https://” in the production setup “https://yoursite/_lib” for pdf exports does not fix the problem
The log file created in the /_lib/tmp directory shows the problem:
./wkhtmltopdf-amd64 --page-size Letter --orientation Landscape --header-right “[page]” http://myhost.mydomain
This is the exact same Bug reported for SC8:
http://www.scriptcase.net/forum/foru…ror-with-https
Netmake please FIX this BUG.
it Looks like in the index.php of an application that exports to pdf you explicitly replace https with http ?
$arq_pdf_in = str_replace(“https://”, “http://”, $arq_pdf_in);
After changing the code the exports works over https and the logfile reflects the correct URL:
./wkhtmltopdf-amd64 --page-size Letter --orientation Landscape --header-right “[page]” https://myhost.mydoamin