E
E
EVOSandru62015-06-24 06:56:01
PHP
EVOSandru6, 2015-06-24 06:56:01

How to configure openserver to use file_get_contents?

Hey! I'm parsing, file_get_contents
works fine on hosting , but on the local Open Server server I get an error: Warning: file_get_contents( https://www.site.com ): in S:\DEVELOPER\openserver\OpenServer\domains\sport\lib\ simple_html_dom.php on line 75 Default in php.ini is set to

allow_url_fopen = On 
allow_url_include = On
extension=php_openssl.dll
[openssl]
openssl.cafile="%sprogdir%/modules/php/%phpdriver%/cacert.pem"
;openssl.capath=

Answer the question

In order to leave comments, you need to log in

2 answer(s)
K
krypt3r, 2015-06-24
@krypt3r

Look towards allow_url_fopen

D
drsane, 2015-06-25
@drsane

Use this feature

<?php

$lurl=get_fcontent("http://ip2.cc/?api=cname&ip=84.228.229.81");
echo"cid:".$lurl[0]."<BR>";


function get_fcontent( $url,  $javascript_loop = 0, $timeout = 5 ) {
    $url = str_replace( "&amp;", "&", urldecode(trim($url)) );

    $cookie = tempnam ("/tmp", "CURLCOOKIE");
    $ch = curl_init();
    curl_setopt( $ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1" );
    curl_setopt( $ch, CURLOPT_URL, $url );
    curl_setopt( $ch, CURLOPT_COOKIEJAR, $cookie );
    curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true );
    curl_setopt( $ch, CURLOPT_ENCODING, "" );
    curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
    curl_setopt( $ch, CURLOPT_AUTOREFERER, true );
    curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );    # required for https urls
    curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
    curl_setopt( $ch, CURLOPT_TIMEOUT, $timeout );
    curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 );
    $content = curl_exec( $ch );
    $response = curl_getinfo( $ch );
    curl_close ( $ch );

    if ($response['http_code'] == 301 || $response['http_code'] == 302) {
        ini_set("user_agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1");

        if ( $headers = get_headers($response['url']) ) {
            foreach( $headers as $value ) {
                if ( substr( strtolower($value), 0, 9 ) == "location:" )
                    return get_url( trim( substr( $value, 9, strlen($value) ) ) );
            }
        }
    }

    if (    ( preg_match("/>+window\.location\.replace\('(.*)'\)/i", $content, $value) || preg_match("/>+window\.location\=\"(.*)\"/i", $content, $value) ) && $javascript_loop < 5) {
        return get_url( $value[1], $javascript_loop+1 );
    } else {
        return array( $content, $response );
    }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question