[Tool/Web/Other] [FS][PHP] SA-MP Orange Web Stats
#1

SA-MP Orange Web Stat version 2.0
_________________________________________________
About FS:

Commands:

/ossregister password
/osslogin password
/mystats


For Administrator:

/ossmakeadmin id (lvl 0-2) - For make admin, login in rcon, and do this: (/ossmakeadmin your_id 2) now, when you loggined (/osslogin password) you will be administrator.

/ossban id reason
_________________________________________________
Data, sending to DB:

Player:
1. Account Status (Banned\Active)
2. Administration Level
3. Kills
4. Deaths
5. Connects to server(s)
6. Register Date
7. Last Online

Server:
1. Murder on the server
2. Death on the server
3. Connect with the server
4. Number of players on the server
5. Date and time of first start
6. Date and time of last update
7. Total connects to DB
_________________________________________________
Player Stats updated every 10 minutes, and when player exited.
Server Statistics updated 1 time in 10 minutes, and if you disable fs ( Note: If we just close the server or via the command / rcon exit, then the statistics will not be updated, unplug the OSS (/rcon unloadfs OSS) )

Example: ТУТ

Sorry, 2х4 does not support the imposition of the text on the picture (userbar), that screen looks like he
_________________________________________________
Config:

Script:

All basic settings of the script are in the files:

OSSCfg - Server settings:

Server Name = My Server Name - Name of your server
Server IP = 127.0.0.1:7777 - IP adress
Website = www.mywebsite.ru - Your website with statistic
I Edit Config = 0 - After editing the server settings (name, IP, Web site), change this line to "1", else the server will not start
Server Added = 0 - This line does not touch, it checks whether the server is added to the database. (Added - 1, is added - 0 (Adds, changes to 1))

OSSDBConF - Data Base Settings:

SQL Host = localhost - Host (localhost, or IP Address)
SQL Data Base = Orange_DB - Database Name
SQL User = Orange - Databese User
SQL Password = D1s4pp34R - Database Password

_________________________________________________

So, now configure PHP.

In the folder "Web" you will find the files that you need to upload your site.

We need to change:

Web/system/database/db_main.php

In line $db = new sql_db(localhost, user, pass, db);

Изменить:

localhost - Host (localhost, or ip address)
db - Database Name
user - Database user
pass - Database Password

In file Web/pstats.php

Find the line with BBCode:
Код:
<INPUT TYPE=TEXT SIZE=37 NAME=user value="[img]www.mywebsite.ru/userbar.php?p=<?php echo "$pid"; ?>[/img]">
And replace "www.mywebsite.ru" on the address of your site.
_________________________________________________

Database config:

1. Create Database
2. We go in through PhpMyAdmin
3. Select DB
4. Click the top button "SQL"
5. Paste the query (in the file "SQL", located in the SA-MP Orange Web Stats\Server\SQL.txt")

Код:
 CREATE TABLE Users(`id` int(11) NOT NULL auto_increment PRIMARY KEY,`Username` varchar(30) NOT NULL,`Password` varchar(50) NOT NULL, `UserIP` varchar(16) NOT NULL, `Blocked` int(4) NOT NULL default '0', `AdminLevel` int(4) NOT NULL default '0', `Kills` int(40) NOT NULL default '0',`Deaths` int(40) NOT NULL default '0.00', `SCon` int(10) NOT NULL default '0', `Register_Date` varchar(30) NOT NULL, `Last_Online` varchar(30) NOT NULL, `BanReason` varchar(256) NOT NULL);
CREATE TABLE ServerInfo(`id` int(11) NOT NULL auto_increment PRIMARY KEY,`ServerName` varchar(30) NOT NULL,`ServerIP` varchar(50) NOT NULL, `sKills` int(40) NOT NULL default '0', `sDeaths` int(40) NOT NULL default '0',`sKDR` float(40) NOT NULL default '0.00',`sSCon` int(30) NOT NULL default '0', `OnlinePlayers` int(30) NOT NULL default '0', `First_Start` varchar(30) NOT NULL, `Last_Updated` varchar(30) NOT NULL, `DBExecute` int(30) NOT NULL default '0');
6. Click "OK"

Cool, tables created (It is important, if you change the name of the table, they will have to change in the script, and climb through the files web stats, for this does not change their )

_________________________________________________

So ready.

Download Uploadbox
Download Rapidshare
Download Depositfiles
Download RGHost

Also in the files to be plugin "MySQL.dll" and "libmysql.dll" (For Windows)

For Linux look Here
Also you need to compile mx_INI, get him Here

Title: Orange Stats Script
Version: 2.0
Authors:
Script: BaRRyS3R.mp3
WEB Stats: Raekwon, BaRRyS3R.mp3
Include mxINI: MX_Master
iparam, sparam: MX_Master
MySQL Plugin R3: G-sTyLeZzZ


_________________________________________________
Bugs
By Dixon:
1) give permission to the file to be written> Permission (Fillzila): 777
Now for those who have this kind of problem do not forget to give permission to the folder, subfolder and file!

2) Explanation: In your script to connect, the $ db = new sql_db departure does not expect to receive this type of variable (mysql5-6.pro) so we had to overcome to reach the variable thus:

Код:
$db = new sql_db('****','*****','*****','*****');
_________________________________________________
Sorry for bad English,
BaRRyS3R.mp3
Reply


Messages In This Thread
[FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 10.04.2010, 10:55
Re: [FS][PHP] SA-MP Orange Web Stats - by DeadalusNetwork - 10.04.2010, 11:03
Re: [FS][PHP] SA-MP Orange Web Stats - by Blantas - 10.04.2010, 11:03
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 10.04.2010, 11:07
Re: [FS][PHP] SA-MP Orange Web Stats - by Karlip - 10.04.2010, 11:33
Re: [FS][PHP] SA-MP Orange Web Stats - by REED - 10.04.2010, 11:47
Re: [FS][PHP] SA-MP Orange Web Stats - by GTA_Rules - 10.04.2010, 12:12
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 10.04.2010, 12:13
Re: [FS][PHP] SA-MP Orange Web Stats - by GTA_Rules - 10.04.2010, 12:15
Re: [FS][PHP] SA-MP Orange Web Stats - by leapfish - 10.04.2010, 14:01
Re: [FS][PHP] SA-MP Orange Web Stats - by leapfish - 10.04.2010, 17:27
Re: [FS][PHP] SA-MP Orange Web Stats - by DeadalusNetwork - 10.04.2010, 17:31
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 10.04.2010, 18:09
Re: [FS][PHP] SA-MP Orange Web Stats - by leapfish - 10.04.2010, 18:19
Re: [FS][PHP] SA-MP Orange Web Stats - by Proteus - 10.04.2010, 19:09
Re: [FS][PHP] SA-MP Orange Web Stats - by GTA_Rules - 11.04.2010, 06:57
Re: [FS][PHP] SA-MP Orange Web Stats - by Lorenc_ - 11.04.2010, 09:07
Re: [FS][PHP] SA-MP Orange Web Stats - by RoamPT - 17.04.2010, 17:58
Re: [FS][PHP] SA-MP Orange Web Stats - by dixon - 19.04.2010, 04:34
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 19.04.2010, 12:08
Re: [FS][PHP] SA-MP Orange Web Stats - by dixon - 19.04.2010, 15:19
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 19.04.2010, 17:46
Re: [FS][PHP] SA-MP Orange Web Stats - by dixon - 19.04.2010, 18:21
Re: [FS][PHP] SA-MP Orange Web Stats - by dixon - 19.04.2010, 18:48
Re: [FS][PHP] SA-MP Orange Web Stats - by dixon - 20.04.2010, 01:41
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 20.04.2010, 07:33
Re: [FS][PHP] SA-MP Orange Web Stats - by dixon - 20.04.2010, 08:54
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 20.04.2010, 10:30
Re: [FS][PHP] SA-MP Orange Web Stats - by dixon - 20.04.2010, 11:22
Re: [FS][PHP] SA-MP Orange Web Stats - by BaRRyS3R - 20.04.2010, 12:42
Re: [FS][PHP] SA-MP Orange Web Stats - by iryston - 11.08.2010, 23:23
Re: [FS][PHP] SA-MP Orange Web Stats - by Lorenc_ - 12.08.2010, 10:51
Respuesta: [FS][PHP] SA-MP Orange Web Stats - by [SOB]Chris - 09.10.2010, 22:47
Re: [FS][PHP] SA-MP Orange Web Stats - by Pawno_Master - 10.10.2010, 10:45

Forum Jump:


Users browsing this thread: 1 Guest(s)