Viewing 1 replies (of 1 total)
  • Plugin Author Lew Ayotte

    (@layotte)

    Hello,

    Sounds like you do not have cURL enabled on your web host. fopen doesn’t like using https very much. Here is a work around:

    function my_leenkme_api_url( $url ) {
        $url = str_replace( 'https', 'http', $url );
        return $url;
    }
    add_filter( 'leenkme_api_url', 'my_leenkme_api_url', 10 );

    Add that code to your theme’s functions.php file.

    Let me know if that doesn’t help.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: leenk.me] Could not open handle…’ is closed to new replies.