aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmod/setup.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/mod/setup.php b/mod/setup.php
index 1c3620523..7831ce0b6 100755
--- a/mod/setup.php
+++ b/mod/setup.php
@@ -474,6 +474,15 @@ function check_htaccess(&$checks) {
$help = "";
if (function_exists('curl_init')){
$test = z_fetch_url($a->get_baseurl()."/setup/testrewrite");
+ if(! $test['success']) {
+ if(strstr($a->get_baseurl(),'https://')) {
+ $test = z_fetch_url($a->get_baseurl() . "/setup/testrewrite",false,0,array('novalidate' => true));
+ if($test['success']) {
+ check_add($checks, t('SSL certificate validation'),false,true, t('SSL certificate cannot be validated. Fix certificate or disable https access to this site.'));
+ }
+ }
+ }
+
if ((! $test['success']) || ($test['body'] != "ok")) {
$status = false;
$help = t('Url rewrite in .htaccess is not working. Check your server configuration.');