CS2D Webinterface 
95 comments The CS2D Webinterface is a website where you can control your CS2D dedicated servers.
Functions:
Add servers, delete servers
Change server configs.
Upload new Lua scripts
Edit Lua scripts
Ban/kick players
and many more!
readme is inside the zip archive.
If you dont understand the readme PLEASE STOP since you´re not SUPPOSED TO USE IT.
Credits:
ohaz
Roni
Klin
Have fun!
Functions:
Add servers, delete servers
Change server configs.
Upload new Lua scripts
Edit Lua scripts
Ban/kick players
and many more!
readme is inside the zip archive.
If you dont understand the readme PLEASE STOP since you´re not SUPPOSED TO USE IT.
Credits:



Have fun!
edited 1×, last 05.08.12 10:07:49 pm

Comments
95 commentsLog in!
You need to log in to be able to write comments!Log in

@PyroCracker I just Lol'd so hard.
This is meant to be installed on a server.. no not a cs2d server. A actual dedicated or VPS server.
I'm not so much for the design. However for something free, its excellent. Usually control panels cost lots of money to be designed and configured.
This is meant to be installed on a server.. no not a cs2d server. A actual dedicated or VPS server.
I'm not so much for the design. However for something free, its excellent. Usually control panels cost lots of money to be designed and configured.
@laurence0019 thats the noob protection.
you have to install this on a server. it makes no sence on your own computer
you have to install this on a server. it makes no sence on your own computer

Nice, I like it, it's got some things that our one doesn't have, like being able to view who is in the server at that time, and alot of other things, you should team up with Koss Rifle and make an even better one together


Lol. This tables are SQL text. Import it there
Not so good for beginners that doesn't know how to MySQL
Not so good for beginners that doesn't know how to MySQL


i up all in web and i open cs2dwi and i see this please teach me how to edit
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
CREATE TABLE IF NOT EXISTS `server` (
`id` int(5) NOT NULL auto_increment,
`uid` int(5) NOT NULL,
`name` varchar(50) NOT NULL,
`port` int(5) NOT NULL,
`maxpl` tinyint(2) NOT NULL,
`dir` varchar(50) NOT NULL,
`rcon` varchar(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uid` (`uid`,`port`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
CREATE TABLE IF NOT EXISTS `user` (
`id` int(5) NOT NULL auto_increment,
`username` varchar(20) NOT NULL,
`password` varchar(32) NOT NULL,
`rights` tinyint(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
INSERT INTO `user` (`id`, `username`, `password`, `rights`) VALUES
(1, 'administrator', '4293d92b8475dc69654d05f009974d50', 5);
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
CREATE TABLE IF NOT EXISTS `server` (
`id` int(5) NOT NULL auto_increment,
`uid` int(5) NOT NULL,
`name` varchar(50) NOT NULL,
`port` int(5) NOT NULL,
`maxpl` tinyint(2) NOT NULL,
`dir` varchar(50) NOT NULL,
`rcon` varchar(20) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uid` (`uid`,`port`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
CREATE TABLE IF NOT EXISTS `user` (
`id` int(5) NOT NULL auto_increment,
`username` varchar(20) NOT NULL,
`password` varchar(32) NOT NULL,
`rights` tinyint(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
INSERT INTO `user` (`id`, `username`, `password`, `rights`) VALUES
(1, 'administrator', '4293d92b8475dc69654d05f009974d50', 5);