Website forum

Has anyone integrated a forum into a website?

It looks like there are two ways to do this, either install dedicated forum software such as phorum or build it into your CMS, for example Drupal.

Does anyone here run a forum?
 
I used to. My website ran TYPO3, and some forum software I don't remember exactly. I had a massive Nginx config in front of both sites that would proxy URL paths into either of the two systems, rewriting cookies and whatnot on the fly to unify the whole bunch. A trick I had previously deployed to have two Sitecore CMS websites live under the same host name. It wasn't pretty and it was brittle but it worked.
 
Has anyone integrated a forum into a website?

It looks like there are two ways to do this, either install dedicated forum software such as phorum or build it into your CMS, for example Drupal.

Does anyone here run a forum?
I was running MyBB for a bit; it was on a separate subdomain but I linked back to it from my main landing page.

I saw some Guests browsing odd pages and blocked them :p (afaik MyBB 1.8 didn't have a control panel way to disable those):

Code:
# Password Reset + User Profile View
 location = '/member.php' {
  deny 'all';
 }

# Calendar
 location = '/calendar.php' {
  deny 'all';
 }

MyBB is PHP + MySQL and ran easy every OS (Windows, Linux, FreeBSD 15-16; PHP 8.5-8.6; nginx)
 
Back
Top