Problem with IIS [message #1194] |
Mon, 17 December 2007 12:18 |
theos
Messages: 3 Registered: December 2007
|
Junior Member |
|
|
First, i'm sorry my bad english.
In radicore v1.18.0 released:
fixed bug in the logon screen when run with Microsoft IIS which caused it to use HTTPS even when an HTTPS server had not been specified.
In my case, v1.18 and v1.31, the logon screen not applied css, and the next screen link to https.
My solution:
..../includes/config.inc
$_SERVER['HTTPS']="";
The reason:
In ..../includes/include.xml.php5.inc
if (!empty($_SERVER['HTTPS']))
It was always true
In manual php:
$_SERVER['HTTPS']
Set to a non-empty value if the script was queried through the HTTPS protocol.
Note that when using ISAPI with IIS, the value will be off if the request was not made through the HTTPS protocol.
Is there another solution?
Thanks and congratulation for this great work.
|
|
|