Proxy script
-
To make it working change in wp-piwik.php
$strURL = str_replace('https://', '://', self::$settings->getGlobalOption('piwik_url')); $strURL = str_replace('https://', '://', $strURL); $strURL = str_replace('https://', '://', $strURL); $strProxy = str_replace('https://', '://', plugins_url('wp-piwik')); $strProxy = str_replace('https://', '://', $strProxy);
to
$strURL = str_replace('https://', '//', self::$settings->getGlobalOption('piwik_url')); $strURL = str_replace('https://', '//', $strURL); $strURL = str_replace('https://', '//', $strURL); $strProxy = str_replace('https://', '//', plugins_url('wp-piwik')); $strProxy = str_replace('https://', '//', $strProxy);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Proxy script’ is closed to new replies.