Hey guys. I'm trying to figure out how to integrate this to my website.
I follow all the steps (even though they are limited) but I cant get it to work.
Should I technically only need the following code to get it to work? Because it doesn't work for me:
require_once DIR . '/Forum.php';
$forum = new Forum();
$forum->login('username', 'a@b.c');
$forum->redirectToForum();
Using your test page "index.php" works fine, but when I implement those four lines of code into my own page,
it simply doesn't do anything.
On top of that, calling a php script that contains "$forum->redirectToForum();" from a JQuery POST call only returns the forum content. It doesn't actually redirect me to the forum page.
Please help.