Does anyone know where i can get another wiki other then the one thats in the Cpanel...i have tried and tried to get into it..I have un-installed and re-installed it 4 times and still can't access it..I use the username and Pw that i gave when i installed it ..the one i installed is the phpwiki
Another Wiki?
Collapse
X
-
Re: Another Wiki?
I have that bug too, I've checked the source but my pass and username ware correct I hope someone can tell how to fix this... I don't have the time atm to do it.
you can see it here:
Code:// Set these to your preferences. // For heaven's sake pick a good password! $wikiadmin = "user"; $adminpasswd = "pass"; ...... ...... // From the manual, Chapter 16 if (($PHP_AUTH_USER != $wikiadmin ) || ($PHP_AUTH_PW != $adminpasswd)) { Header("WWW-Authenticate: Basic realm=\"PhpWiki\""); Header("HTTP/1.0 401 Unauthorized"); echo gettext("You entered an invalid login or password."); exit; }
-
Comment