im using a very simple php script to retrive the text of a webpage;
$homepage = file_get_contents('http://192.168.1.125:6547/quickstatus');
echo $homepage;
But this instruction do not work on https, i dont have support for curl (im using a php compiler), is any way to retrive the content of a page that use https whitout curl???
I think if the function
file_get_contentsdoesn’t work with https address means that your installation of PHP has noopensslextension installed. That’s whycurland other solutions will not be an option as well.