Ignore:
Timestamp:
Mar 5, 2014, 9:52:06 AM (10 years ago)
Author:
bonhommedeneige
Message:

Version 1.3.0 - Piwigo 2.6 compatibility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Force_HTTPS/main.inc.php

    r22560 r27560  
    22/*
    33Plugin Name: Force HTTPS
    4 Version: 1.2.0
     4Version: 1.3.0
    55Description: Gives the capacity to force https connections on https enabled servers.
    66Plugin URI: http://piwigo.org/ext/extension_view.php?eid=697
     
    99
    1010Changelog :
     11 1.3.0 (05.03.2014) : Upgrade for Piwigo 2.6 compatibility
    1112 1.2.0 (05.05.2013) : Fixed unicity of strbool function (renamed to piwigo_force_https_strbool)
    1213                      Caused unicity issue with video-js plugin
     
    2627define('FORCE_HTTPS_ID', basename(dirname(__FILE__)));
    2728define('FORCE_HTTPS_PATH' ,   PHPWG_PLUGINS_PATH . FORCE_HTTPS_ID . '/');
    28 define('FORCE_HTTPS_VERSION', '1.2.0');
     29define('FORCE_HTTPS_VERSION', '1.3.0');
    2930// this is automatically updated by PEM if you publish your plugin with SVN, otherwise you musn't forget to change it, as well as "Version" in the plugin header
    3031
     
    9495    }
    9596  }
    96  
    97   // prepare plugin configuration
    98   //$conf['piwigo_force_https'] = unserialize($conf['piwigo_force_https']);
    99 }
    100 
    101 /**
    102  * SSL availability check
    103  *   - function checks if ssl is available on domain
    104  */
    105 function piwigo_force_https_checkssl() {
    106         global $conf;
    107        
    108 $mylinks="http://www.petitssuisses.com";
    109 $handlerr = curl_init($mylinks);
    110 curl_setopt($handlerr,  CURLOPT_RETURNTRANSFER, TRUE);
    111 $resp = curl_exec($handlerr);
    112 $ht = curl_getinfo($handlerr, CURLINFO_HTTP_CODE);
    113 
    114 if ($ht == '404')
    115      { echo 'OK';}
    116 else { echo 'NO';
    117 }
    11897}
    11998
Note: See TracChangeset for help on using the changeset viewer.