|
|
|
CB Login HTTPS
|
|
Date: 2006/04/11 23:53
|
By: Maarten.Provo
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 2 |   | |
|
I tried the 'force https' option on the cbloginrc2-module. But when I login I get the message "the page could not be displayed"
Now the information with the option says this:
You may need to append to configuration.php:
| Code: | if ($_SERVER[\'SERVER_PORT\'] == \'443\') $mosConfig_live_site = str_replace(\'http://\',\'https://\',$mosConfig_live_site);', CAPTION, 'https_post', BELOW, RIGHT);
|
After adding that line to my Mambo-rootconfiguration.php I get an error saying there's an unexpected ',' in the line I added and it's expecting a ']' .
I'm running Mambo 4.5.3
|
|
The topic has been locked. |
|
|
|
Re:CB Login HTTPS
|
|
Date: 2006/07/31 03:02
|
By: verbalkent
|
Status: User
|
|
|
Karma: 0  
|
|
Fresh Joomlapolitan  | Posts: 3 |   | |
|
|
Same issue here, would really like to use https after reading the unencrypted login info posted here
|
|
The topic has been locked. |
|
|
|
Re:CB Login HTTPS
|
|
Date: 2006/08/02 19:52
|
By: beat
|
Status: Admin
|
|
|
Karma: 243  
|
|
Admin  | Posts: 4066 |   | |
|
Maarten.Provo wrote: I tried the 'force https' option on the cbloginrc2-module. But when I login I get the message "the page could not be displayed"
Now the information with the option says this:
You may need to append to configuration.php:
| Code: | if ($_SERVER[\'SERVER_PORT\'] == \'443\') $mosConfig_live_site = str_replace(\'http://\',\'https://\',$mosConfig_live_site);', CAPTION, 'https_post', BELOW, RIGHT);
|
After adding that line to my Mambo-rootconfiguration.php I get an error saying there's an unexpected ',' in the line I added and it's expecting a ']' .
I'm running Mambo 4.5.3
code is (don't know why) displayed wrong. Should be:
| Code: | if ($_SERVER['SERVER_PORT'] == '443') $mosConfig_live_site = str_replace('http://','https://',$mosConfig_live_site);
| Beat - Developer on Community Builder core Team - If you like CB and this forum, you will love Nick's CB 1.1 reference manual ! : Click here to Get it now  - Would like to help us move faster ? Get it, and/or help us spend more time coding by helping others in this forum, many thanks
|
|
The topic has been locked. |
|
|