I am using PHP5.2.5. I am trying to view headers from an SSL site using the following:
[PHP]
error_log(print _r(get_headers( 'https://urltoserver/file.fdf')));
[/PHP]
I continue to get the following error:
So what do I need to do to use get_headers()?
[PHP]
error_log(print _r(get_headers( 'https://urltoserver/file.fdf')));
[/PHP]
I continue to get the following error:
Code:
PHP Notice: get_headers() [<a href='function.get-headers'>function.get-headers</a>]: Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? [28-Jan-2008 09:45:06] PHP Warning: get_headers() [<a href='function.get-headers'>function.get-headers</a>]: This function may only be used against URLs.
Comment