Page 1 of 1

We are doing maintenance work

Posted: Tue Jun 18, 2019 9:29 pm
by wieder
The forum is now partially fixed but apparently .org is in more than one place...

The rest of the web site will be fixed after the forum is working.

Posted: Mon Jun 24, 2019 8:12 pm
by louis94
Does posting work after the phpbb upgrade?

Edit: Yes. What about editing?

Posted: Sun Jun 30, 2019 3:48 pm
by HanduMan
What is the purpose of that new link upper left saying "http://forum.longturn.net" but actually points to longturn.org which appears to be quite unsafe to visit IMO?

Posted: Wed Jul 17, 2019 5:22 pm
by HanduMan
HanduMan wrote:What is the purpose of that new link upper left saying "http://forum.longturn.net" but actually points to longturn.org which appears to be quite unsafe to visit IMO?
OK, now the text has been changed to "Longturn Forum" as the title for this forum, but the link is still pointing to longturn.org.
html wrote:<a href="http://longturn.org/">Longturn forum</a>
Also the forum description under the title is a hyperlink to forum.longturn.org.
html wrote:<a href="http://forum.longturn.org/">Discussions about Longturn games, LT rulesets and other topics of interest</a>
I'm pretty sure there is some setting in the admin control panel of this forum for changing or removing those links.

Posted: Wed Jul 17, 2019 11:26 pm
by Corbeau
Everything that exists in the settings has been changed from .org to .net. Wieder has been trying to fix this for months, including diving into the database, but no luck so far.

Posted: Wed Jul 24, 2019 7:23 am
by HanduMan
Corbeau wrote:Everything that exists in the settings has been changed from .org to .net. Wieder has been trying to fix this for months, including diving into the database, but no luck so far.
Checked the header.php file for hard-coded links? In the current version (just downloaded 1.5.11) the forum title part links to "index.php" and description part to nothing.
header.php wrote: // START SUBST - <pun_title>
$tpl_main = str_replace('<pun_title>', '<h1><a href="index.php">'.pun_htmlspecialchars($pun_config['o_board_title']).'</a></h1>', $tpl_main);
// END SUBST - <pun_title>


// START SUBST - <pun_desc>
$tpl_main = str_replace('<pun_desc>', '<div id="brddesc">'.$pun_config['o_board_desc'].'</div>', $tpl_main);
// END SUBST - <pun_desc>