Topic: Displayed forum reverts to old-style html look

What happens that I get old-style html lists instead of a nicely formatted forum look?

http://naste.org/Forum-look.jpg

Other users are reporting this as well.

What's missing and what's changed?

https://naste.org/forum/index.php

Thanks!

Re: Displayed forum reverts to old-style html look

Mixed content (styles and scripts are loaded via http).

If your forum is configured to work only via https, then add the following code to the end of the config.php file:

$_SERVER['HTTPS'] = 'on';
$_SERVER['SERVER_PORT'] = '443';
ForkBB
I speak only Russian  :P

3 (edited by montedsaager 2023-12-21 17:46)

Re: Displayed forum reverts to old-style html look

I did not think that it was since it comes up in either mode, it's just odd.

I added the code to the end of my config file but I'm not seeing any difference.

Re: Displayed forum reverts to old-style html look

Open page /admin/index.php?action=phpinfo
Scroll to PHP Variables table
See $_SERVER['HTTPS'] and $_SERVER['SERVER_PORT']. They must be equal to on and 443.
What are the real values there?

ForkBB
I speak only Russian  :P

Re: Displayed forum reverts to old-style html look

Also try replacing in the config.php file

$base_url = 'http://...

to

$base_url = 'https://...
ForkBB
I speak only Russian  :P

Re: Displayed forum reverts to old-style html look

BINGO!

That seems to have fixed the issue - so far...

Thank you!