Installation of WebIssues (WI) issue tracker didn’t work with SSL, it was blaming itself by printing out “http://” links inside all pages based on wrong values in PHPs $_[…] vars.

According to this bug entry, it seems to be a common issue!

Workaround

Add the following code to the beginning of php code in system/bootstrap.php.inc to get it fixed:

$_SERVER['HTTPS'] = 'on';
$_SERVER['SERVER_PORT'] = '443';

The problem seems to be related to the reverse proxy. All http requests are getting redirected to https. Special config vars have already been set to tell the internal webserver behind the reverse proxy that the connection is using https, but somehow that didn’t work in this case…

Benjamin Wiedmann

Benjamin Wiedmann is an IT Professional, Software Developer, Photograph and Musician. Read more...

More Posts - Website

Follow Me:
TwitterLinkedInGoogle Plus


Benjamin Wiedmann

Benjamin Wiedmann is an IT Professional, Software Developer, Photograph and Musician. Read more...

0 Comments

Leave a Reply

Avatar placeholder

This site uses Akismet to reduce spam. Learn how your comment data is processed.