Results 1 to 2 of 2

Thread: Another Wiki?
      
   

  1. #1
    Systematic nightmare is offline Staff Sergeant
    Join Date
    Mar 2007
    Posts
    44

    Default Another Wiki?

    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

  2. #2
    RgmM is offline Private First Class
    Join Date
    Jul 2007
    Posts
    6

    Cool 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;
       }
    (not my real login -.- )

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49