Jump to content

file_get_contents("https://somedomain.com"); not working


karthikeyan_coder

Recommended Posts

try to surf https://somedomain.com

does it asks you to press enter or ok or something to confirm some secure session or anything like that?

maybe that's why php can't fetch the content -- it encounters a dialog box and doesn't know what to do

that's my guess as you're saying it works fine with http
Link to comment
Share on other sites

  • 2 months later...
Hello, I'm new posting here, I was having the same problem, and I've fixed it loading the openssl php extension.
[code]<?php
if (!extension_loaded('openssl')) {
    if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
        dl('php_openssl.dll');
    } else {
        dl('openssl.so');
    }
}
?>[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.