TeamSPeak 3 Module TSDNS error

biladeru

Member
Mar 6, 2016
36
7
40
somebody can help me?
on vps:
e4ls1Dr.png


on whmcs:
e5hBauO.png
 

dedmen

TeamSpeak Developer
Contributor
Mar 28, 2016
530
583
157
Does the beginning of Line 1 really have a ` char there? remove that.....
 

biladeru

Member
Mar 6, 2016
36
7
40
That's the "good" part ... has not
Code:
var config = require('./config.json');
var api = require('./api.js');
var tsdns = require('./tsdns');

api.listen(config.api_port,config.api_ip, function () {
console.log('API rodando em %s:%s', config.api_ip, config.api_port);
});

tsdns.listen(config.tsdns_port,config.tsdns_ip, function () {
console.log('Tsdns rodando em %s:%s', config.tsdns_ip,config.tsdns_port);
});
 

dedmen

TeamSpeak Developer
Contributor
Mar 28, 2016
530
583
157
Wow im dumb ^^ why didnt i see that.... AFAIK linux console cant just run .js scripts :D
 
Top