Page 12 of 19
Re: [Tool] AdminServ 2.1.0
Posted: 08 Feb 2014, 14:26
by mcrobert
Kev717 wrote:Thx McRobert for translation

Thank you for the beautiful work, even if you pass me the files in English as well as translate the WebFTP
Re: [Tool] AdminServ 2.1.0
Posted: 13 Feb 2014, 16:13
by ricoow
Tool layout is completely screwed up. I can't see anything and nothing is functioning.
Using PHP 5.3.1 on a local webserver
Re: [Tool] AdminServ 2.1.0
Posted: 13 Feb 2014, 17:41
by weerwolf
A screen shot and more info will set u on a path to help from the cummunity.
What browser are u using, and did u try another brand browser?
Re: [Tool] AdminServ 2.1.0
Posted: 19 Feb 2014, 20:21
by Chris92
A small suggestion for next version. For the DisplayServ part before logging in, let us please configure a password for the "User" access level for each server, since I usually change the password on all three users

Re: [Tool] AdminServ 2.1.0
Posted: 03 Apr 2014, 08:39
by tubduluc
Hi all,
First Thx Kev for this wonderful tool.
I have migrated my adminserv on new material and now in the interface i have lost some options in maps menu.
I cant no more access to Local, matchsettings and create a matchsettings.
I have only make a copy of files during the migration so i dont understand why this options have disapeared.....
Anyone have an idea to help me ????
(Sorry for my english, its french english

)

Re: [Tool] AdminServ 2.1.0
Posted: 03 Apr 2014, 13:12
by weerwolf
If i understand correctly, it may have to do something with Read/Write rights to the specific directorys where adminserv needs to write tracks and matchsettings.
Re: [Tool] AdminServ 2.1.0
Posted: 09 Apr 2014, 08:46
by tubduluc
Thx for your response Weerwolf,
weerwolf wrote:If i understand correctly, it may have to do something with Read/Write rights to the specific directorys where adminserv needs to write tracks and matchsettings.
Unfortunately i have check all rights on folders and they are all allright.
I log in AdminServer as superadmin but always impossible to see the three missing options in menu map (local, matchsetting, create a matchsettings).
Really i dont understand, the first time no problem all was ok and now....
A precision my server is under Linux.
Any other idea ?
Re: [Tool] AdminServ 2.1.0
Posted: 09 Apr 2014, 10:09
by Chris92
the key words here are file owners and groups.
The linux file permission system is a bit different. Different users don't have access to all files on the server that do not belong to them.
A little tip for this is I usually create a group "tm" on the server and everything related to TM, be it AdminServ, the TM server files or the xaseco records webinterface gets put into that group.
That allows them to have access to the specific files. A user like "www-data" usually has no access to the files of the user "tm" or whatever user you use to run the server with.
Re: [Tool] AdminServ 2.1.0
Posted: 27 Apr 2014, 13:03
by Flighthigh
Yesterday i setup up the AdminServ 2.1.0 with one Gameserver. Its easy and it works fine.
Today i want to register a second Server. But i cant found a way to do this. Or is this not possible?
Re: [Tool] AdminServ 2.1.0
Posted: 27 Apr 2014, 21:18
by nighthawk4571
Hi Flighthigh,
Are you using the Admin page via your browser (/adminserv/?p=servers)? This should work fine - click on the 'Add Server' button.
If that's not your problem and you are doing this manually, can I suggest you check that correct Port settings appear in the servers.cfg.php file for each server. I.e. duplicate the server entry lines in the file and modify the details to match each additional server.
Code: Select all
<?php
class ServerConfig {
public static $SERVERS = array(
/********************* SERVER CONFIGURATION *********************/
[b]/*
'new server name' => array(
'address' => 'localhost',
'port' => 5000,
'mapsbasepath' => '',
'matchsettings' => 'MatchSettings/',
'adminlevel' => array('SuperAdmin' => 'all', 'Admin' => 'all', 'User' => 'all')
),
*/
)[/b];
}
?>
As an example, here's part of mine, translated into English:
Code: Select all
<?php
class ServerConfig {
public static $SERVERS = array(
/********************* SERVER CONFIGURATION *********************/
'BR-Stadium2' => array(
'address' => 'localhost',
'port' => 5008,
'matchsettings' => 'MatchSettings/Stadium.txt',
'adminlevel' => array('SuperAdmin' => 'all', 'Admin' => 'local', 'User' => 'none')
),
'BR-Delerium' => array(
'address' => 'localhost',
'port' => 5020,
'matchsettings' => 'MatchSettings/Stadium.txt',
'adminlevel' => array('SuperAdmin' => 'all', 'Admin' => 'local', 'User' => 'none')
),
'BR-Stadium RPG' => array(
'address' => 'localhost',
'port' => 5064,
'matchsettings' => 'MatchSettings/Stadium.txt',
'adminlevel' => array('SuperAdmin' => 'all', 'Admin' => 'local', 'User' => 'none')
),
'Go Hard or Go Home' => array(
'address' => 'localhost',
'port' => 5080,
'matchsettings' => 'MatchSettings/bagracing1.txt',
'adminlevel' => array('SuperAdmin' => 'all', 'Admin' => 'local', 'User' => 'none')
),
'BR-RPG Trial' => array(
'address' => 'localhost',
'port' => 5002,
'matchsettings' => 'MatchSettings/CanyonA.txt',
'adminlevel' => array('SuperAdmin' => 'all', 'Admin' => 'local', 'User' => 'none')
),
Also, are you sure the permissions are correctly set on the additional server files?
This is a great tool and Kev deserves credit for working on it for so long, perfecting in detail so admins can enjoy using it with confidence.
It's also been nice to watch many people adding language translations, which has supported universal distribution. Here's my (default) servers.cfg.php file:
Cheers
