1 recommendation from me: dynamically create an eqhost.txt file to make it easier to switch between servers:
PHP Code:
<?php
header('Content-Description: File Transfer');
header('Content-Type: text/plain');
header('Content-Disposition: attachment; filename=eqhost.txt');
ob_clean();
flush();
echo "[LoginServer]\r\n";
echo "#" . $name . "\r\n";
echo "Host=" . $host . ":" . $port . "\r\n\r\n";
?>
Which could result in this:
Code:
[LoginServer]
#Cripps Nug Blazers
Host=68.4.48.127:5999