The first problem which appeared was "phpMyFAQ notice [8]: Undefined index: HTTPS in Link.php on line 327".
To fix this I changed /inc/link.php:
Code: Select all
public static function getSystemScheme() {
//$scheme = 'http'.( ((!PMF_Link::isIISServer()) && isset($_SERVER['HTTPS']))
//|| ((PMF_Link::isIISServer()) && ('on' == strtolower($_SERVER['HTTPS']))) ? 's' : '').'://';
//return $scheme;
return 'http://';
}

Which further problems could appear?