Trying for the first time to get Echelon v1.3.9 working with B3 and Windows webserver.
Unable to login using admin - admin. I receive HTTP 500 error on different computers trying to log in. The folders echelon & sql are in the root of the IIS.
I don't know much about PHP but I can get the phpinfo.php file which contains <?php phpinfo(); ?> and it shows a nice long configuration file.
I can view the login page of Echelon but when I click on submit, I get just a blank page with HTTP 500 error.
php webservice extension is loaded. ISAPI filter loaded. .php mapping / application extensions loaded.
contents of b3connect.php
<?php
$xlrdatabase = "single";
// The Name of the Game:
$gamename_1 = "COD4";
$hostname_b3connect = "king-server";
$database_b3connect = "b3";
$username_b3connect = "b3";
$password_b3connect = "********";
// Do not modify the next line unless you know what you're doing
$b3connect = mysql_pconnect($hostname_b3connect, $username_b3connect, $password_b3connect) or trigger_error(mysql_error(),E_USER_ERROR);
//Do we have PunkBuster in this game? If yes, we'll use RCON to ban/unban PB-guids - Set it to "0" if not.
$PBactive = "0";
$rcon_ip = "127.0.0.1";
$rcon_port = "28961";
$rcon_pass = "*********";
?>
contents of wwwvalidate.php
<?php
# This file is for the Echelon Usertable. This is not (yet) related to the B3 clienttable.
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_wwwvalidate = "king-server";
$database_wwwvalidate = "echelon";
$username_wwwvalidate = "echelon";
$password_wwwvalidate = "echelonb3";
$wwwvalidate = mysql_pconnect($hostname_wwwvalidate, $username_wwwvalidate, $password_wwwvalidate) or die(mysql_error());
?>
B3 works (ie. I am superadmin and verified in database under clients table of b3 db.) I can also use the commands ingame.
Windows 2003 Enterprise
IIS 6.0
mySql using Navicat Lite to connect & administer.
Thank you,
Tony K