MyFreeTeamSpeak WebPanel

JetFox

Active Member
Sep 25, 2015
175
76
73
New update either today or tomorrow (Hopefully...) Just finishing up local testing... kindof...

Whats new:
TSDNS Server -> Utilizing my own API/Servers... (Domain names such as myfreeteamspeak.tk, other domains to come soon)...

This will query my own database and be processed in a cron job in an interval of 1 minute to 5 minutes depending on the load it receives.. if choosing to utilize my servers.

Can be customized to utilize your own TSDNS Server.

Reorganization of index.php, to show how many servers are online...(Not virtual hosts just dedicated boxes online), removed some stupid things.
Sidebar will only show server generation if they have never created a server -> Disappears afterwards

Database update: Set each individual servers max virtual hosts... (Say you have a vps with 2GB of ram and a dedicated server with 64GB of ram, You can set the vps to only allow 100 servers while the dedicated to 1000 etc...)

Server Settings Area: Edit hostname, slots, banner, reserved slots, setup TSDNS maybe more...

Still being worked on:
Client kicking, might ask Benjo for his script and modify it.
TSDNS: Check if already exists inside...

Any other things you want requested?
 
Last edited:

TopKek

Active Member
Aug 17, 2016
6
1
78
Help me please
i have set class.logsys.php chmod 777
i have set Francium.log chmod 777
Fatal error: Call to a member function prepare() on a non-object in /home/sss/public_html/Commands/class.logsys.php(1) : eval()'d code on line 739
What is problem?
 

JetFox

Active Member
Sep 25, 2015
175
76
73
Help me please
i have set class.logsys.php chmod 777
i have set Francium.log chmod 777
Fatal error: Call to a member function prepare() on a non-object in /home/sss/public_html/Commands/class.logsys.php(1) : eval()'d code on line 739
What is problem?
Sorry haven't been on in awhile, investigating now
 

JetFox

Active Member
Sep 25, 2015
175
76
73
Help me please
i have set class.logsys.php chmod 777
i have set Francium.log chmod 777
Fatal error: Call to a member function prepare() on a non-object in /home/sss/public_html/Commands/class.logsys.php(1) : eval()'d code on line 739
What is problem?
Fatal error: Call to a member function prepare() on a non-object

This error happens because, PDO – used to connect to database by logSys couldn’t connect to the database. Either your server doesn’t have PHP PDO Extension or the database credentials given in “db” config value is not correct.

So, install PDO extension and check the database credentials given is correct.
 

heloisacerqueira

Active Member
May 19, 2015
33
2
80
3e8754c0dbd54370ba34f1df7b7856df.png


I need help anyone knows how to solve it?

enters this ts3 to help me

*TS3 IP REMOVED*

MOD EDIT: Don't provide private ip or/and domain in public!
 
Last edited by a moderator:

heloisacerqueira

Active Member
May 19, 2015
33
2
80

You can explain to me how I do it?

Code:
<?php
/**
* For Development Purposes
*/
ini_set("display_errors", "on");
require("/Commands/class.logsys.php");
\Fr\LS::config(array(
      "basic" => array(
      "company" => "SiteName",
      "email" => "[email protected]",
      "email_callback" => 0
    ),
  "db" => array(
      "host" => "198.50.245.165",
      "port" => 3306,
      "username" => "root",
      "password" => "********",
      "name" => "freets3v2",
      "table" => "users",
      "servers" => "servers", #Server List In Database
      "userservers" => "userservers", #User Servers
      "token_table" => "resettokens",
      "register_table" => "registerTokens",
      "updateCheck" => "true", #true or false
      "authenticationKey" => "8312016" #Authentication Key, Used to notify updates http://webchat.esper.net/?channels=#MyFreeTeamSpeak
  ),
  "tsSetup" => array (
  "maxSlots" => 512,
  "tooltip" => "", #Icon for tooltip url?
  "hostbutton" => "", #Host Button URL
  "MyFreeTeamSpeakDNS" => "no", #Yes or No, Cancels out the tsdns setting below
  "tsdns" => "/tsdns-linux/tsdns_settings.ini" #Currently being implemented still Windows/Linux...
  ),
  "features" => array(
    "auto_init" => true
  ),
  "pages" => array(
    "no_login" => array(
      "",
      "/reset.php",
      "/register.php"
    ),
    "login_page" => "/login.php",
    "home_page" => "/home.php"
  )
));

617aefd6baa24641a61c828cdbb1632e.png
 
Top