activeCollab Base URL
Page: 1, 2
I did these changes it still gives me an error when I goto the root of the domain ~/. How do I make it load the dashboard page by default if I am visiting the baseurl.
I tried adding this to the top of the /public/index.php, but its not evaluating $b to equal "/index.php" when it seems like it should.
I tried adding this to the top of the /public/index.php, but its not evaluating $b to equal "/index.php" when it seems like it should.
$a = $_SERVER['HTTP_HOST']; // server-name - domain
$b = $_SERVER['PHP_SELF']; // you're page, as you know
if($b == "/" || $b == "/index.php" || $b == "/index.php/"){
header("Location: /dashboard");
}
echo "$a - $b";
cyandesign
on Oct 16. 2007. 8:45 pm
The link above says that we need version 1.0.2 or later. But that hasn't been announced on your blog yet. Is the update available for download yet?
cyandesign:
The link above says that we need version 1.0.2 or later. But that hasn't been announced on your blog yet. Is the update available for download yet?
Well I am using version 1.0 according to ~/admin/modules
So it works for that version also.



