12stringbassist wrote: ↑Mon Mar 01, 2021 4:21 pm
I spoke to someone who knew what a server is and they did a server refresh.
Has this had any effect on the original unknown htmlspecialchars() issue this server seemed to be exhibiting? The guest login doesn't seem to be valid any more, so I wasn't able to repeat the same attempt to duplicate the problem from here.
12stringbassist wrote: ↑Mon Mar 01, 2021 4:21 pm
The home button on the pages seems to log people out and there is occasional instances of the garbled text.
Is there a way to get rid of the 'home' button from pages and just have 'board index'?
That certainly is one of the next issues to tackle, if you're actually going to stay with the PlusNet server for now.
phpBB is essentially designed to be "on a single domain." Your current
"use an iFrame on http://www.sladeforum.co.uk/ to access the phpBB site actually on http://ccgi.crazeeworld.plus.com/slade/" approach is essentially asking for phpBB to concurrently support two separate domains.
You could technically get
close to supporting to separate domains, by simply leaving the phpBB cookie domain blank. At which point, cookies would be saved "for whichever domain the user is accessing." But that's not perfect, because anyone who switches between
http://ccgi.crazeeworld.plus.com/slade/ and
http://www.sladeforum.co.uk/ or vice-versa will find that their previously-saved cookies are no longer in effect.
Which is in part what's happening right now when hitting that "Home" link, too. The visitor is on the
http://ccgi.crazeeworld.plus.com/slade/ site and using the session ID in the URL, but when the home button takes them to
http://www.sladeforum.co.uk/, now they're on a site the cookie domain is valid for, and trying to use the previously-cookied session instead. Which indeed, can make it so that now the visitor will be logged out, depending on whether the session persisted in the cookie is still valid or not.
Yes, you can get rid of the "Home" link by leaving the "Main website URL:" blank in the phpBB ACP Board Settings. Having this URL defined is what causes the "Home" link to appear, or a link with whatever name you choose using the "Main website text:" configuration on that same page.
Having multiple domains isn't uncommon, but what would be more typical is that using one of the alternate domains
redirects the user to "the actual site I want all users to consistently use." Meaning indeed you could have
http://www.sladeforum.co.uk/ as a DNS name, but users who attempt to access that site will get redirected to
http://ccgi.crazeeworld.plus.com/slade/, rather than "keep trying to use
http://www.sladeforum.co.uk/".
It seems like you intend for users to be using
http://www.sladeforum.co.uk/, which is logical given that it's "the DNS name you own" versus being a plus.com-owned subdomain. Currently, it appears that the web server responding to
http://www.sladeforum.co.uk/ is one hosted with names.co.uk.
If you were currently happy with your PlusNet hosting, what we would be suggesting would be for you to talk to PlusNet about whether they support you having your
http://www.sladeforum.co.uk/ DNS name point directly to the PlusNet server. You can definitely make the DNS change needed at your DNS provider to make it point to the IP address of the PlusNet server. But it typically requires cooperation from PlusNet to actually configure the web server at their end to direct queries that originate using this DNS name to be directed to your hosting account's files area.
But it seems that you're not currently happy with PlusNet, and so trying to bang your head against that wall might not be the best use of time. In that case though, the
http://www.sladeforum.co.uk/ site really should be set to simply redirect users to the
http://ccgi.crazeeworld.plus.com/slade/ URL, change your phpBB cookie domain to be .crazeeworld.plus.com, and make everyone use the PlusNet URL until such time that you're able to successfully move away from PlusNet.
Meaning "no more iFrame", and instead literally "send" users to
http://ccgi.crazeeworld.plus.com/slade/ if and when they use a link to
http://www.sladeforum.co.uk/.
Since your
http://www.sladeforum.co.uk/ DNS name is currently hosted on names.co.uk, maybe that's the first hosting provider for you to investigate and see whether they would support you running a phpBB application on their server, and plan to move the phpBB site to be on that server instead of PlusNet. Since you're apparently already "in business" with name.co.uk in some fashion already.