This tutorial shows how you can install an Apache webserver on a CentOS 7 server with PHP support (mod_php) and MySQL support. LAMP is short for Linux, Apache, MySQL, PHP.
This updated tutorial shows the installation of the latest PHP versions (7.0 and 7.1) on CentOS 7.3.
[font=Tahoma, Helvetica, Arial, sans-serif]1 Preliminary Note[/font]
I will add the EPEL repo here to install latest phpMyAdmin as follows:
To edit files on the shell, I'll install the nano editor. If you prefer vi for file editing, then skip this step.
[font=Tahoma, Helvetica, Arial, sans-serif]2 Installing MySQL / MariaDB[/font]
[font=Tahoma, Helvetica, Arial, sans-serif][font=Tahoma, Helvetica, Arial, sans-serif]MariaDB is a MySQL fork of the original MySQL developer Monty Widenius. MariaDB is compatible with MySQL and I've chosen to use MariaDB here instead of MySQL. Run this command to install MariaDB with yum:[/font][/font]
Then we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server:
Set passwords for the MySQL root account:
3 Installing Apache
CentOS 7 ships with apache 2.4. Apache is directly available as a CentOS 7 package, therefore we can install it like this:
Now configure your system to start Apache at boot time...
To be able to access the web server from outside, we have to open the HTTP (80) and HTTPS (443) ports in the firewall. The default firewall on CentOS is firewalld which can be configured with the firewalld-cmd command.
Now direct your browser to the IP address of your server (http://your_vps_ip_address), and you should see the Apache placeholder page
[font=Tahoma, Helvetica, Arial, sans-serif]4 Installing PHP
[/font]
The PHP version that ships with CentOS is quite old (PHP 5.4), therefore I will show you in this step some options to install newer PHP versions like PHP 7.0 or 7.1 from Remi repository.
Add the Remi CentOS repository.
Install yum-utils as we need the yum-config-manager utility.
and run VPS packages update
Now you have to chose which PHP version you want to use on the server. If you like to use PHP 5.4, then proceed with the next command. To install PHP 7.0, follow the commands in chapter 4.1 and for PHP 7.1, use chapter 4.2 instead.
To install PHP 5.4, run this command:
4.1 Install PHP 7.0 (optional)
We can install PHP 7.0 and the Apache PHP 7.0 module as follows:
4.2 Install PHP 7.1 (optional)
If you want to use PHP 7.1 instead, use:
In this example and in the downloadable virtual machine, I'll use PHP 7.1.
We must restart Apache to apply the changes:
[font=Tahoma, Helvetica, Arial, sans-serif]6 Getting MySQL Support In PHP
[/font]
To get MySQL support in PHP, we can install the [font=monospace]php71w-mysql package. It's a good idea to install some other PHP modules as well as you might need them for your applications. You can search for available PHP5 modules like this:[/font]
Pick the ones you need and install them like this:
In the next step I will install some common PHP modules that are required by CMS Systems like Wordpress, Joomla, and Drupal:
Now restart Apache web server:
7 phpMyAdmin installation
phpMyAdmin is a web interface through which you can manage your MySQL databases.
phpMyAdmin can now be installed as follows:
Now we configure phpMyAdmin. We change the Apache configuration so that phpMyAdmin allows connections not just from localhost (by commenting out the <RequireAny> stanza and adding the 'Require all granted' line):
Next, we change the authentication in phpMyAdmin from [font=monospace]cookie to http:[/font]
Restart Apache:
Afterwards, you can access phpMyAdmin under [font=monospace]http://your_vps_ip_adderess/phpmyadmin/[/font]
This updated tutorial shows the installation of the latest PHP versions (7.0 and 7.1) on CentOS 7.3.
[font=Tahoma, Helvetica, Arial, sans-serif]1 Preliminary Note[/font]
I will add the EPEL repo here to install latest phpMyAdmin as follows:
Code:
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY*
yum -y install epel-release
yum -y install nano
To edit files on the shell, I'll install the nano editor. If you prefer vi for file editing, then skip this step.
[font=Tahoma, Helvetica, Arial, sans-serif]2 Installing MySQL / MariaDB[/font]
[font=Tahoma, Helvetica, Arial, sans-serif][font=Tahoma, Helvetica, Arial, sans-serif]MariaDB is a MySQL fork of the original MySQL developer Monty Widenius. MariaDB is compatible with MySQL and I've chosen to use MariaDB here instead of MySQL. Run this command to install MariaDB with yum:[/font][/font]
Code:
yum -y install mariadb-server mariadb
Then we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server:
Code:
systemctl start mariadb.service
systemctl enable mariadb.service
Set passwords for the MySQL root account:
Code:
mysql_secure_installation
3 Installing Apache
CentOS 7 ships with apache 2.4. Apache is directly available as a CentOS 7 package, therefore we can install it like this:
Code:
yum -y install httpd
Now configure your system to start Apache at boot time...
Code:
systemctl start httpd.service
systemctl enable httpd.service
To be able to access the web server from outside, we have to open the HTTP (80) and HTTPS (443) ports in the firewall. The default firewall on CentOS is firewalld which can be configured with the firewalld-cmd command.
Code:
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Now direct your browser to the IP address of your server (http://your_vps_ip_address), and you should see the Apache placeholder page
[font=Tahoma, Helvetica, Arial, sans-serif]4 Installing PHP
[/font]
The PHP version that ships with CentOS is quite old (PHP 5.4), therefore I will show you in this step some options to install newer PHP versions like PHP 7.0 or 7.1 from Remi repository.
Add the Remi CentOS repository.
Code:
rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm
Install yum-utils as we need the yum-config-manager utility.
Code:
yum -y install yum-utils
and run VPS packages update
Code:
yum update
Now you have to chose which PHP version you want to use on the server. If you like to use PHP 5.4, then proceed with the next command. To install PHP 7.0, follow the commands in chapter 4.1 and for PHP 7.1, use chapter 4.2 instead.
To install PHP 5.4, run this command:
Code:
yum -y install php
4.1 Install PHP 7.0 (optional)
We can install PHP 7.0 and the Apache PHP 7.0 module as follows:
Code:
yum-config-manager --enable remi-php70
yum -y install php php-opcache
4.2 Install PHP 7.1 (optional)
If you want to use PHP 7.1 instead, use:
Code:
yum-config-manager --enable remi-php71
yum -y install php php-opcache
In this example and in the downloadable virtual machine, I'll use PHP 7.1.
We must restart Apache to apply the changes:
Code:
systemctl restart httpd.service
[font=Tahoma, Helvetica, Arial, sans-serif]6 Getting MySQL Support In PHP
[/font]
To get MySQL support in PHP, we can install the [font=monospace]php71w-mysql package. It's a good idea to install some other PHP modules as well as you might need them for your applications. You can search for available PHP5 modules like this:[/font]
Code:
yum search php
Pick the ones you need and install them like this:
Code:
yum -y install php-mysql
In the next step I will install some common PHP modules that are required by CMS Systems like Wordpress, Joomla, and Drupal:
Code:
yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-soap curl curl-devel
Now restart Apache web server:
Code:
systemctl restart httpd.service
7 phpMyAdmin installation
phpMyAdmin is a web interface through which you can manage your MySQL databases.
phpMyAdmin can now be installed as follows:
Code:
yum -y install phpMyAdmin
Now we configure phpMyAdmin. We change the Apache configuration so that phpMyAdmin allows connections not just from localhost (by commenting out the <RequireAny> stanza and adding the 'Require all granted' line):
Code:
nano /etc/httpd/conf.d/phpMyAdmin.conf
Code:
[...]
Alias /phpMyAdmin /usr/share/phpMyAdmin
Alias /phpmyadmin /usr/share/phpMyAdmin
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
<IfModule mod_authz_core.c>
# Apache 2.4
# <RequireAny>
# Require ip 127.0.0.1
# Require ip ::1
# </RequireAny>
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>
<Directory /usr/share/phpMyAdmin/>
Options none
AllowOverride Limit
Require all granted
</Directory>
[...]
Next, we change the authentication in phpMyAdmin from [font=monospace]cookie to http:[/font]
Code:
nano /etc/phpMyAdmin/config.inc.php
[...]
$cfg['Servers'][$i]['auth_type'] = 'http'; // Authentication method (config, http or cookie based)?
[...]
Restart Apache:
Code:
systemctl restart httpd.service
Afterwards, you can access phpMyAdmin under [font=monospace]http://your_vps_ip_adderess/phpmyadmin/[/font]
hi guys
so i just want to warn you all . there are a bug that will pretty much break your vps . i try the solution that the internet gives by googling but have no luck so i just reinstalled my vps but here how its done
what you need to do is install mysql by using "apt-get install mysql-server" and after that try to purge it . if you lucky enough it will create a dpkg error regarding the mysql-server-5.7 and you basically cannot uninstall it . i try all the tutorial even deleting all of my databse content but my server s still screwed . you cannot use your apt-get again (most application failed to install after you trigger this bug . some that does install spesifically that dosnt need mysql)
and after i search i got the cause of this problem it look like that it is a bug and i dont know if it already fixed but from my experience it is still here . i mean the bug
so just be careful . if you already installed mysql on your server that have 16.04 (i see 14.04 that get this bg as well so be careful) dont uninstall mysql-server otherwise your server will be screwed
Here is the thing that you will get if your server aready get screwed
so i just want to warn you all . there are a bug that will pretty much break your vps . i try the solution that the internet gives by googling but have no luck so i just reinstalled my vps but here how its done
what you need to do is install mysql by using "apt-get install mysql-server" and after that try to purge it . if you lucky enough it will create a dpkg error regarding the mysql-server-5.7 and you basically cannot uninstall it . i try all the tutorial even deleting all of my databse content but my server s still screwed . you cannot use your apt-get again (most application failed to install after you trigger this bug . some that does install spesifically that dosnt need mysql)
and after i search i got the cause of this problem it look like that it is a bug and i dont know if it already fixed but from my experience it is still here . i mean the bug
so just be careful . if you already installed mysql on your server that have 16.04 (i see 14.04 that get this bg as well so be careful) dont uninstall mysql-server otherwise your server will be screwed
Here is the thing that you will get if your server aready get screwed
phpmyadmin is already the newest version (4:4.5.4.1-2ubuntu2).
0 upgraded, 0 newly installed, 0 to remove and 116 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up mysql-server-5.7 (5.7.19-0ubuntu0.16.04.1) ...
invoke-rc.d: policy-rc.d denied execution of stop.
/var/lib/dpkg/info/mysql-server-5.7.postinst: line 143: /usr/share/mysql-common/configure-symlinks: No such file or directory
dpkg: error processing package mysql-server-5.7 (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.7; however:
Package mysql-server-5.7 is not configured yet.
dpkg: error processing package mysql-server (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
mysql-server-5.7
mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
and you think you can uninstall and then install it . WRONG you CANT . if you purge it and then install it again it will come back and even if you just uninstall it it will still be stuck there 0 upgraded, 0 newly installed, 0 to remove and 116 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up mysql-server-5.7 (5.7.19-0ubuntu0.16.04.1) ...
invoke-rc.d: policy-rc.d denied execution of stop.
/var/lib/dpkg/info/mysql-server-5.7.postinst: line 143: /usr/share/mysql-common/configure-symlinks: No such file or directory
dpkg: error processing package mysql-server-5.7 (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.7; however:
Package mysql-server-5.7 is not configured yet.
dpkg: error processing package mysql-server (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
mysql-server-5.7
mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
apt-get install mysql-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libevent-core-2.0-5 mysql-server-5.7 mysql-server-core-5.7
Suggested packages:
tinyca
The following NEW packages will be installed:
libevent-core-2.0-5 mysql-server mysql-server-5.7 mysql-server-core-5.7
0 upgraded, 4 newly installed, 0 to remove and 116 not upgraded.
Need to get 7,658 kB/10.1 MB of archives.
After this operation, 94.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-server-core-5.7 amd64 5.7.19-0ubuntu0.16.04.1 [7,588 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libevent-core-2.0-5 amd64 2.0.21-stable-2ubuntu0.16.04.1 [70.6 kB]
Fetched 7,658 kB in 3s (2,418 kB/s)
Preconfiguring packages ...
Selecting previously unselected package mysql-server-core-5.7.
(Reading database ... 90254 files and directories currently installed.)
Preparing to unpack .../mysql-server-core-5.7_5.7.19-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-server-core-5.7 (5.7.19-0ubuntu0.16.04.1) ...
Selecting previously unselected package libevent-core-2.0-5:amd64.
Preparing to unpack .../libevent-core-2.0-5_2.0.21-stable-2ubuntu0.16.04.1_amd64.deb ...
Unpacking libevent-core-2.0-5:amd64 (2.0.21-stable-2ubuntu0.16.04.1) ...
Selecting previously unselected package mysql-server-5.7.
Preparing to unpack .../mysql-server-5.7_5.7.19-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-server-5.7 (5.7.19-0ubuntu0.16.04.1) ...
Selecting previously unselected package mysql-server.
Preparing to unpack .../mysql-server_5.7.19-0ubuntu0.16.04.1_all.deb ...
Unpacking mysql-server (5.7.19-0ubuntu0.16.04.1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for systemd (229-4ubuntu19) ...
Setting up mysql-server-core-5.7 (5.7.19-0ubuntu0.16.04.1) ...
Setting up libevent-core-2.0-5:amd64 (2.0.21-stable-2ubuntu0.16.04.1) ...
Setting up mysql-server-5.7 (5.7.19-0ubuntu0.16.04.1) ...
invoke-rc.d: policy-rc.d denied execution of stop.
/var/lib/dpkg/info/mysql-server-5.7.postinst: line 143: /usr/share/mysql-common/configure-symlinks: No such file or directory
dpkg: error processing package mysql-server-5.7 (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.7; however:
Package mysql-server-5.7 is not configured yet.
dpkg: error processing package mysql-server (--configure):
dependency problems - leaving unconfigured
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for systemd (229-4ubuntu19) ...
Errors were encountered while processing:
mysql-server-5.7
mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libevent-core-2.0-5 mysql-server-5.7 mysql-server-core-5.7
Suggested packages:
tinyca
The following NEW packages will be installed:
libevent-core-2.0-5 mysql-server mysql-server-5.7 mysql-server-core-5.7
0 upgraded, 4 newly installed, 0 to remove and 116 not upgraded.
Need to get 7,658 kB/10.1 MB of archives.
After this operation, 94.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 mysql-server-core-5.7 amd64 5.7.19-0ubuntu0.16.04.1 [7,588 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libevent-core-2.0-5 amd64 2.0.21-stable-2ubuntu0.16.04.1 [70.6 kB]
Fetched 7,658 kB in 3s (2,418 kB/s)
Preconfiguring packages ...
Selecting previously unselected package mysql-server-core-5.7.
(Reading database ... 90254 files and directories currently installed.)
Preparing to unpack .../mysql-server-core-5.7_5.7.19-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-server-core-5.7 (5.7.19-0ubuntu0.16.04.1) ...
Selecting previously unselected package libevent-core-2.0-5:amd64.
Preparing to unpack .../libevent-core-2.0-5_2.0.21-stable-2ubuntu0.16.04.1_amd64.deb ...
Unpacking libevent-core-2.0-5:amd64 (2.0.21-stable-2ubuntu0.16.04.1) ...
Selecting previously unselected package mysql-server-5.7.
Preparing to unpack .../mysql-server-5.7_5.7.19-0ubuntu0.16.04.1_amd64.deb ...
Unpacking mysql-server-5.7 (5.7.19-0ubuntu0.16.04.1) ...
Selecting previously unselected package mysql-server.
Preparing to unpack .../mysql-server_5.7.19-0ubuntu0.16.04.1_all.deb ...
Unpacking mysql-server (5.7.19-0ubuntu0.16.04.1) ...
Processing triggers for man-db (2.7.5-1) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for systemd (229-4ubuntu19) ...
Setting up mysql-server-core-5.7 (5.7.19-0ubuntu0.16.04.1) ...
Setting up libevent-core-2.0-5:amd64 (2.0.21-stable-2ubuntu0.16.04.1) ...
Setting up mysql-server-5.7 (5.7.19-0ubuntu0.16.04.1) ...
invoke-rc.d: policy-rc.d denied execution of stop.
/var/lib/dpkg/info/mysql-server-5.7.postinst: line 143: /usr/share/mysql-common/configure-symlinks: No such file or directory
dpkg: error processing package mysql-server-5.7 (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.7; however:
Package mysql-server-5.7 is not configured yet.
dpkg: error processing package mysql-server (--configure):
dependency problems - leaving unconfigured
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Processing triggers for systemd (229-4ubuntu19) ...
Errors were encountered while processing:
mysql-server-5.7
mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
1.First connect to your VPS using Putty With Root Privileges.
2.Then make a user account for samp server.Note that Do not use root for this, please create a
user (because of security issues).
Creating A User:
useradd samptut
passwd samptut
Root users have full read and write access to all resources of the VPS. Running gameservers like
this fields security issues as stated above.
3.Then
*first thing you want to make sure is that your in the main directory by typing cd ~ after
relogging to your vps using your useraccount crendentials.
4.Once done well we're ready to download SA:MP now
then type: wget http://files.sa-mp.com/samp037svr_R2-1.tar.gz
That will download the .tar.gz for linux. Let it download.
5.You will now need to extract the tar.gz by typing: tar -zxf samp037svr_R2-1.tar.gz
6.Next go into the folder you just extracted by typing cd samp03
7.Now to make things easier, download a program called FileZilla Ftp Client .
This is basically FTP for linux. Install and connect to your VPS (Pretty simple).
Put Your IP(your vps ip) Protocol : SFTP (SSH File Transfer Protocol) Logon type : Normal
Username : sampsv ( your username here/user created for samp ) password : your linux user pass
and password : that user password password.
8.Then Locate to the samp03 folder through your ftp clientand edit server.cfg to whatever you
want.
9.Make any changes you want , upload your own gamemodes and scriptfiles, plugins etc,
At last make sure to edit the server.cfg well or use with this cmd 'nano server.cfg' to edit ur server.cfg from putty
A screen looking like that should've popped up.
You'll be happy to know, that you can browse around the server.cfg by using your arrow keys, and just typing to edit the file. Simple stuff, right?
Once you've finished editing the file, hit CTRL+X, press 'Y', then Enter.
Your file is now saved!
Once done with the editing we come back to PuTTY,
chmod 777 samp03svr
chmod 777 announce
chmod 777 samp-npc
or
Type : chmod +x samp-npc samp03svr announce
but we have to chmod all plugins + includes + samp-npc + samp03svr + announce and all the amx file (no need to upload ur pwn files) and all folders to writeable/readable/excuteable (777) and update the OS with 'yum update' to avoid getting 'No Directory or File found' proplem
Followed by nohup ./samp03svr & This will start the server (nohup makes the server still run
even when you quit PuTTY)
To stop your samp server use pkill samp or killall samp03
for more info Use SA-MP wiki: www.wiki.sa-mp.com/wiki/
2.Then make a user account for samp server.Note that Do not use root for this, please create a
user (because of security issues).
Creating A User:
useradd samptut
passwd samptut
Root users have full read and write access to all resources of the VPS. Running gameservers like
this fields security issues as stated above.
3.Then
*first thing you want to make sure is that your in the main directory by typing cd ~ after
relogging to your vps using your useraccount crendentials.
4.Once done well we're ready to download SA:MP now
then type: wget http://files.sa-mp.com/samp037svr_R2-1.tar.gz
That will download the .tar.gz for linux. Let it download.
5.You will now need to extract the tar.gz by typing: tar -zxf samp037svr_R2-1.tar.gz
6.Next go into the folder you just extracted by typing cd samp03
7.Now to make things easier, download a program called FileZilla Ftp Client .
This is basically FTP for linux. Install and connect to your VPS (Pretty simple).
Put Your IP(your vps ip) Protocol : SFTP (SSH File Transfer Protocol) Logon type : Normal
Username : sampsv ( your username here/user created for samp ) password : your linux user pass
and password : that user password password.
8.Then Locate to the samp03 folder through your ftp clientand edit server.cfg to whatever you
want.
9.Make any changes you want , upload your own gamemodes and scriptfiles, plugins etc,
At last make sure to edit the server.cfg well or use with this cmd 'nano server.cfg' to edit ur server.cfg from putty
A screen looking like that should've popped up.
You'll be happy to know, that you can browse around the server.cfg by using your arrow keys, and just typing to edit the file. Simple stuff, right?
Once you've finished editing the file, hit CTRL+X, press 'Y', then Enter.
Your file is now saved!
Once done with the editing we come back to PuTTY,
chmod 777 samp03svr
chmod 777 announce
chmod 777 samp-npc
or
Type : chmod +x samp-npc samp03svr announce
but we have to chmod all plugins + includes + samp-npc + samp03svr + announce and all the amx file (no need to upload ur pwn files) and all folders to writeable/readable/excuteable (777) and update the OS with 'yum update' to avoid getting 'No Directory or File found' proplem
Followed by nohup ./samp03svr & This will start the server (nohup makes the server still run
even when you quit PuTTY)
To stop your samp server use pkill samp or killall samp03
for more info Use SA-MP wiki: www.wiki.sa-mp.com/wiki/
Hello everybody, What is your best Multiplayer Game ???
- Grand Theft Auto San Andreas Multiplayer
- Grand Theft Auto Vice City Multiplayer
- Grand Theft Auto Multi Theft Auto
- Counter Strike 1.6
- Counter Strike GO
- Minecraft
- Slikrod Online
- Slikrod R
- Clash of Clans
Posted by: Zorono - 09-24-2017, 06:47 PM - Forum: Game Servers & Hardware
- No Replies
![[Image: favicon.png]](https://www.br-gaming.ovh/images/favicon.png)
Description:
Code:
BrownTurbo Gaming is Company On San Andreas Multiplayer(SA:MP) Community which had been Founded & Started On 2015 Feb By [BR]John_Magdy and [BR]Shamil Using A ultra-h Free Server and A Small Gamemode with a few Features/Scripts and maps and A proboards Forums and A small Staff But We are always Trying to improve Our Services To be more Better Than Our eariler versions And now We Have our own Dediced VPS and using the developed gamemode(SATDM~RP) by Money$PimP, which we had updated/fixed/improved/developed with the Love and added alot more unique/cool features to make it better so our players wouldn't get bored and Proffesional Simple Machine Forums(SMF) and Alot More Better active Staff, so we hope you'll enjoy your time here with us.
Features List:
- Advanced Houses System by AntroniX (Updated by Money$Pimp then reupdated by Us)
- Advanced Vehicles System (sorry i can't remember the author but i respect him and his works)
- Advanced Business System by tAxI
- Advanced Admin System By Lethal & LuxurioN (Updated by us)
- Advanced VIP System
- Advanced Clans & Gangs System
- Special Mapped Houses & Bases
- Advanced Race System by Yagu
- Advanced GeoIP Systems special thanks to Maxmind & Whitetiger
- Gang Zone War Systems
- Incredible Role-Play Job System(Medic, Cops, Criminals, Swippers ,Pizza Ddlivers, Hotdog Delivers, Dunkins, Trucking)
- Advanced ATM System
______________________________________________
[color=rgba(255, 255, 255, 0.7)][size=small]HostName: BrownTurbo 's ExTrEmE Evolution
Address: play.br-gaming.ovh:7783 – 185.12.178.71:7783
Mode: BRTDM~RP
__
Home Page: https://www.br-gaming.ovh/?p=1.0
Forums: https://www.br-gaming.ovh/forums
FAQ: https://www.br-gaming.ovh/?p=2.0
Services Status: https://status.br-gaming.ovh/
Server Status: https://www.br-gaming.ovh/?p=4.0
Community Staff List: https://www.br-gaming.ovh/?p=3.0
Downloads: https://www.br-gaming.ovh/?p=5.0
Donate: https://www.br-gaming.ovh/?p=7.0
Bug Tracker: https://www.br-gaming.ovh/bugs
Portal: https://www.br-gaming.ovh/portal
Skype Group: https://join.skype.com/Cvv66st33H2R
Discord Server: https://discord.gg/4Y23mKU
Facebook Group: http://facebook.com/groups/brownturbo.gaming
IRC Server: pool.irc.tl – IRC Channel: #brirc
[[font=Arial Black]IMPORTANT]: the rewards are level 2 & 4 millions Cash & free house & 2 premium Vehicles for first 10 Players (offer expired on 30/9/2017 12:00 AM UTC+2)

Welcome, Guest |
You have to register before you can post on our site. |
Search Forums |
(Advanced Search) |
Forum Statistics |
» Members: 2,271 » Latest member: orzpainter » Forum threads: 3,094 » Forum posts: 34,818 Full Statistics |
Online Users |
There are currently 299 online users. » 0 Member(s) | 295 Guest(s) Bing, Applebot, Yandex, Google |
Latest Threads |
Buy DemoTiger Videos on c...
Forum: Others Last Post: DewlanceHosting Yesterday, 09:31 AM » Replies: 6 » Views: 3,389 |
LLHOST — VPS in the Nethe...
Forum: Cheap Providers Last Post: LLHOST 05-08-2025, 07:36 AM » Replies: 0 » Views: 59 |
LLHOST — VPS hosting for ...
Forum: Value VPS Providers Last Post: LLHOST 04-30-2025, 12:10 PM » Replies: 0 » Views: 85 |
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers Last Post: LLHOST 04-22-2025, 11:04 AM » Replies: 0 » Views: 196 |
LLHOST: VPS in the Nether...
Forum: Others Last Post: LLHOST 04-15-2025, 07:32 PM » Replies: 0 » Views: 259 |
Hello all!
Forum: Meet & Greet! Last Post: perry 03-26-2025, 11:28 AM » Replies: 1 » Views: 298 |
VisualWebTechnologies | 7...
Forum: Others Last Post: visualwebtechnologies 03-11-2025, 02:58 AM » Replies: 0 » Views: 227 |
Post2Host.com domain on a...
Forum: Others Last Post: Variable 03-10-2025, 04:04 PM » Replies: 0 » Views: 185 |
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers Last Post: HostNamaste 03-05-2025, 12:15 PM » Replies: 0 » Views: 396 |
Create Unlimited Virtual ...
Forum: Hardware & Technology Last Post: bestadvisor 03-01-2025, 09:47 AM » Replies: 0 » Views: 716 |