Frequently Asked Questions
Why do all my links point to "https" instead of "http" with IIS?
It’s a bug in the auto-detection of whether SSL is used on the connection or not. You can however override the autodetection code by alway forcing the type of protocol (dssl or not) that you prefer. This is done by adding the following line to config.php:
define('PROTOCOL', 'http://');
Similarly if you wanted to force textpattern to generate ssl-urls, you could replace http with https in the above line.
Posted 6 July 2007, 09:49 by Sencer Yurdagül
