In the index.php on line 87 there's this code:
if (isset($_SESSION['wordlist']);
the purpose of this code is, to see if there's a session, if so, it shows the links at the bottom. The session is set when you press the button, when there's no session, no links.
There's where it goes wrong.
The first server creates a session when you press the button, so it works fine.
On the second server, it doesn't make a session. I'll explain later how this could be. So no session is mabe it thinks nothing has happend so it shows you the same screen without the 2 links.
There are several things why no session has been made.
- has been disabled in the configuration settings (php,ini)
- register_globals (option in php.ini) has been turned off, so $_SESSION['wordlist'] doesn't work, should be $HTTP_SESSION_VARS["wordlist"]
- problems with the server
so it can be loads of things. I suggest you to try to change $_SESSION['wordlist'] to $HTTP_SESSION_VARS["wordlist"].
If that doesn't work ask the server admin if one of these things are turned off.
hope this helps you