I have installed this on my home Win32 test system and
when I try to login I get a 'page cannot be found' error.
I can view the login page but cannot register any more
accounts as that has the same error.
This is the URL to the tracker (its localhost only):
http://192.168.0.18/bugin/index.php
This is the contents of my config.local.php
=================
<?php
$options['modEmail'] = "sly@not_saying.co.uk";
$dbUser = "Sly";
$dbPass = "XXXXXX";
$dbName = "bugin";
$dbType = "mysql";
?>
=================
and I notice the URL on the "[Create a new account]"
link is:
http://192.168.0.18/bugin/?area=signup
which is not a qualified URL and so it just results in the
generation of a directory listing. What else do I need to
change?
Logged In: YES
user_id=835826
Ok I fixed it for myself, for NT/Win32 servers you need to
change:
$options['baseURL'] = "/bugin/";
to
$options['baseURL'] = "/bugin/index.php";
then it seems to function (provided you have it in a 'bugin'
directory of course ;) )
Logged In: YES
user_id=835826
Trouble is this screws the URL to the CSS ...