• I tried everything, I downloaded this great pluggin for wordpress but can’t get it to work.

    pageflip, page flip, wordpress pageflip gallery, when I click on main it shows me that 1 of my settings is highlighted in RED.

    allow url open = off.

    I am on Godaddy windows, I have tried everything to set this to on, and actually got it to work but then it breaks my wordpress – godaddy wont allow sql connection if its turned on as a security measure.

    So I noticed that someone in a similar position used cURL

    Does anyone know how to implement this into the pageflip pluggin?

    the allow_url_open uses this part of the code

    if ( $_GET[‘action’] == ‘savealbumxml’ )
    {
    $post[‘xml’] = urlencode(file_get_contents(‘php://input’));
    }

    on the script.php on line 19

    This is an example from a post on the forums of someone using cURL instead of allow-open-url

    $curl_handle = curl_init($this->url);
    curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT,10);
    curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
    $content = “”;
    $content = curl_exec($curl_handle);
    curl_close($curl_handle);

    I am not a die hard coder! any help would be awsome.
    Thanks

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: flip book flipping book page fli]p – help allow_url_open is off!’ is closed to new replies.