Advertisement
Guest User

evetos issues

a guest
May 28th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.34 KB | None | 0 0
  1. Ok, so i've downloaded EveTos and have been playing with it attempting too get it working.
  2. I've everything setup, but I can not register any users neither can I get a whitelist setup from the admin panel.
  3. My config.php is as follows
  4. <?php
  5. /*
  6. ========== * EVE ONLINE TEAMSPEAK BY MJ MAVERICK * ==========
  7. */
  8. class Config {
  9.     // Administrators character, you.
  10.     public $admin = "Blood Stains";
  11.     // Database ID of the ROOT admin (from "admins" table), this admin cannot be deleted by a rogue twat. Make it your ID.
  12.     public $adminID = 456120948;
  13.     // (REQUIRED) Teamspeak 3 Server Query Information
  14.     public $tshost = "xxx.xxxxxxxxxxxxxxxxxx.xxx";
  15.     public $tsname = "EVETOS";
  16.     public $tspass = "xxxxxxxxxxxxx";
  17.     public $tsport = "9100"; //ServerQuery Port
  18.     public $tscport = "9166"; //TeamSpeak client port
  19.     // (OPTIONAL) Teamspeak 3 Client Connect Password
  20.     public $tspassword = "";
  21.     // (REQUIRED) Database Information
  22.     public $db_host = "localhost";
  23.     public $db_user = "evetos";
  24.     public $db_pass = "xxxxxxxxxxxxx";
  25.     public $db_name = "evetos";
  26.     // (REQUIRED) API Connection Testing Information - TESTID and TESTname MUST be the characterID and characterName of the SAME character respectively. You may use mine.
  27.     public $TESTID = 935338328;
  28.     public $TESTname = "MJ Maverick";
  29.     // (REQUIRED) Your alliance/corp name
  30.     public $ourname = "12th Legion";
  31.     // Debug Mode? (true/false)
  32.     public $verbose = t;
  33.     // (REQUIRED) Teamspeak 3 group for alliance/corp members
  34.     public $group = 4173;
  35.     // (REQUIRED) Teamspeak 3 group for people on the whitelist but not in your alliance/corp
  36.     public $bluegroup = 0;
  37.     // Banner Image
  38.     public $banner = "images/banner.jpg";
  39.     // (OPTIONAL) Ticker spacers. - Example: For "IRNP | MJ Maverick" use "|". Leave blank for "IRNP MJ Maverick".
  40.     public $spacer = "|";
  41. }
  42. ?>
  43.  
  44. I get the following error when attempting to register any corp mate via EveTos
  45.  
  46. "You are not allowed to register on this server."
  47.  
  48. So after some reading I figure maybe this is due too the white list. so I setup my user in the admin panel as per the readme.html then once I attempt to add my corp too the white list I get this error.
  49.  
  50. Invalid query: Field 'corpAlliance' doesn't have a default value
  51.  
  52. Can someone please offer me some assistance ? I been slowly working on this for a few days now. and can not find anything in reference too a default value.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement