arrow_upward

Posted by: kabir145 - 04-07-2017, 08:15 AM - Forum: Game Servers & Hardware - Replies (1)
its not my server i love to play this server
IP:  5.135.145.71:5196
Hosted by:  Sky-City Hosting
Number of players slots: 100
Scripts:  [ CTF v4.0 ] by Nilz and Nexus
IRC Channel:  #MK.CTF on LUnet 
Server Forum:  http://ctf.vc-mp.net 


This server intends to bring more diversity to VCMP's game modes, introducing a different game mode other than TDM and DM. It's not a new gamemode for anyone who has played multiplayer FPS games these last few years. The concept is the same, there are two teams, one must capture the enemy's flag and bring it to their team's base where there will be a drop-zone which will be a barrel pickup. When the time limit ends, the team with the most points will be the winner. You gain 15 points for each sucessful flag capture, and 1 point for each kill. You'll receive 5 aditional points for each 5 kill spree you make. Every time a round ends, the server will automatically teleport players to the lobby and start a new round on a new arena. You can see some of the available arenas here and all of the available weapon packs here. We also have few custom maps that can be played as arenas that were built by our staff team with various game models. If you have a new idea for a new arena/base feel free to make a suggestion here.

Useful links

Staff team
Support
Webstats
Server rules
Server and IRC commands

F.A.Q.

Why can't I pick up the flag?
To pick up the flag you have to stay still on top of it for 3 seconds.

I have captured the flag but how do I drop it?
To drop the flag and score points for your team, you have to go back to your spawn where you will see a barrel, just go over it and the flag will be dropped.

Why does the server keep killing me when I spawn?
If that happens, that means you're trying to spawn on a team that has too many players, spawn with a skin from the other team to balance the teams.

Why can't I spawn with the builder skin?
The builder skin is there only for testing purposes and building bases so you won't be able to spawn with it unless you have atleast level 4.

How can I change my weapons pack? I used the !pack command but it didn't work
You have to choose your weapon pack before the round starts with the command !pack <id>. If you see a loading bar on the bottom right of your screen, that means the server is waiting for you to choose your weapons pack, if you don't choose any, you will be given the default weapon pack. You can use the !packs command to see what each pack contains. If the round has already started you can use the !changepack command once.

Sometimes my character starts jumping/floating, is this a bug?
When that happens, that means you've hit the world boundaries limits set by the server for that specific arena, every fighting location has different boundaries in different places, this was done on purpose so that players don't leave the fighting territory, it's not a bug.
Posted by: kabir145 - 04-07-2017, 08:14 AM - Forum: Tutorials - Replies (1)
What is Apache Virtual Hosts?
Virtual hosting is a method for hosting multiple domain names (with separate handling of each name) on a single server (or pool of servers). This allows one server to share its resources, such as memory and processor cycles, without requiring all services provided to use the same host name.
You will also need to have Apache installed in order to work through these steps. If you haven't already done so, you can get Apache installed on your server through 
Code:
sudo apt-get update
sudo apt-get install apache2

After these Steps we have successfully Installed Apache in our Vps So now we get start for example we will create two virtual hosts 1 kabir.com and another vps13.com this is just for example you can change these name to yours
so now first of all we will create directories and then we will setup the configuration file 
for creating directories type the following commands
Code:
sudo mkdir -p /var/www/html/kabir.com/
sudo mkdir -p /var/www/html/vps13.com/
after creating directories now we will grant permissions to them by typing the following commands
Code:
sudo chown -R $USER:$USER /var/www/html/vps13.com/
sudo chown -R $USER:$USER /var/www/html/kabir.com/
now we should modify our permission in order to amke it readable you can do it by typing the following command

Code:
sudo chmod -R 755 /var/www
Now we setted up the permissions
Now we will create a Example file in our folders in order to check it its working or not
So for create files in folders you will need nano if you dont have you can install it by typing the following command
Code:
sudo apt-get install nano
So we will create file with the following command 
Code:
nano /var/www/html/kabir.com/index.html
In this Create a simple html document mine file looks like /
Code:
<html>
  <head>
    <title>oye hoe its working</title>
  </head>
  <body>
    <h1>kabir is working perfect!</h1>
  </body>
</html>
now save it and close it its done now we will create a file for vps13.com also
so we will create file for vps13.com with the following command
Code:
nano /var/www/html/vps13.com/index.html
In this we will create a simple html document mine file looks like this
Code:
<html>
  <head>
    <title>oye hoe its working</title>
  </head>
  <body>
    <h1>vps13 is working perfect!</h1>
  </body>
</html>
So Now Close it it and save it now will create virtual hosts files
So we will start it by copying first domain file we can do it by the following command
Code:
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/kabir.com.conf

now open your with editor ffor modifying you do it with the following command


Code:
sudo nano /etc/apache2/sites-available/kabir.com.conf


the file will looks like this but from this file i have removed useless comments
Code:
<VirtualHost *:80>
   ServerAdmin webmaster@localhost
   DocumentRoot /var/www/html
   ErrorLog ${APACHE_LOG_DIR}/error.log
   CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>


As you can see there are not much we will customize it and will add some more things
First of all you need to change the Serveradmin Email change it to your email from which you able to recive emails
Code:
serveradmin  [email protected]

After this we need to add two more things no 1 is servername and second is serveralias so you add them like that
Code:
servername kabir.com
serveralias http://www.kabir.com

the last thing we have to change is location change its location to your site directory like here we did
Code:
DocumentRoot /var/www/html/kabir.com

in total our virtual file should looks like this

Code:
<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName kabir.com
    ServerAlias www.kabir.com
    DocumentRoot /var/www/html/kabir.com
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
First Domain virtual host has been done we will start for second domain vps13.com
So now we will again copy that file for our second domain file with the following command

Code:
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/vps13.com.conf

now you have to open it with nano editor in order to customizze it you do it with the following command


Code:
sudo nano /etc/apache2/sites-available/vps13.com.conf


our virtualhost file will looks like this from this i have removed useless things
Code:
<VirtualHost *:80>
   ServerAdmin webmaster@localhost
   DocumentRoot /var/www/html
   ErrorLog ${APACHE_LOG_DIR}/error.log
   CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>


as you you can see this is not complete so we have to customize it for our second domain file
First of all you need to change the Serveradmin Email change it to your email from which you able to recive emails

Code:
serveradmin  [email protected]

After this we need to add two more important things which is servername and serveralias you can add them like
Code:
servername vps13.com
serveralias http://www.vps13.com

the last thing we have to change is location change its location to your site directory like here we did in our first domain but i will repeat it again 

Code:
DocumentRoot /var/www/html/vps13.com

in total our virtual file should looks like this
Code:
<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName vps13.com
    ServerAlias www.vps13.com
    DocumentRoot /var/www/html/vps13.com
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
now we have done it for our both domains so now save the file and close it
So now we have created cirtualhost ffiles but now we have to enable them for that apache allow us to do it with a command you can do with the following command

Code:
sudo a2ensite kabir.com.conf
sudo a2ensite vps13.com.conf


After this we have to restart apache we can do it with the following command
Code:
Code:
sudo service apache2 restart
now we are done you are ready to visit your site
Posted by: Hero^ - 04-07-2017, 07:35 AM - Forum: Tutorials - No Replies
How to Install a Wordpress Theme

Hello friends, 
                       I hope everybody is fine.Today i am going to show you how to install a wordpress theme.First of all a little introduction to the Wordpres.
What is Wordpress?
WordPress is an online, open source website creation tool written in PHP.Most of the sites who earn money via sharing software's and information use wordpress for there websites.
About Wordpress
Code:
On this site you can download and install a software script called WordPress. To do this you need a web host who meets the minimum requirements and a little time. WordPress is completely customizable and can be used for almost anything. There is also a service called WordPress.com which lets you get started with a new and free WordPress-based blog in seconds, but varies in several ways and is less flexible than the WordPress you download and install yourself.
What You Can Use WordPress For?
Code:
WordPress started as just a blogging system, but has evolved to be used as full content management system and so much more through the thousands of plugins and widgets and themes, WordPress is limited only by your imagination. (And tech chops.)
What Wiki Say about Wordpress

Code:
WordPress is a free and open-source content management system (CMS) based on PHP and MySQL.[5] WordPress is installed on a web server that is either part of an Internet hosting service or a network host in its own right. The first case may be a service like WordPress.com, for example, and the second case could be a computer running the software package WordPress.org.[6] A local computer may be used for single-user testing and learning purposes. Features include a plugin architecture and a template system. WordPress was used by more than 27.5% of the top 10 million websites as of February 2017.[7] WordPress is reportedly the most popular website management or blogging system in use on the Web,[8] supporting more than 60 million websites.
Now i am going to show you how to install a Wordpress Theme.
So Lets Start.

First of all there are two method of theme installation.
If you have downloaded the theme into your computer and the second is the direct download and install from wordpress server.
So lets start first i shall show you how to install the theme from your computer.

1st: Go to your website and login into your account.
2nd: Now you have to click the Button [font=Roboto,]WordPress dashboard[/font]
[font=Roboto,]3rd: I[font=Roboto,]n your WordPress dashboard, go to Appearance > Themes > Add New.[/font][/font]
[font=Roboto,][font=Roboto,]Here is a screenshot for you.[/font][/font]
[font=Roboto,][font=Roboto,][Image: NGoTlBh.png][/font][/font]
[font=Roboto,][font=Roboto,]4th: [font=Roboto,]From there you’ll see an option for “Upload” at the top of the screen. Click the “Browse” button, navigate your computer files and select the .ZIP file for your downloaded extension.[/font][/font][/font]
[Image: GnrJFtU.png]
[Image: iLbd5e2.png]

WordPress Theme activation

Simply activate the theme like you do for any other theme in your WordPress admin. Once uploaded, click the “Activate” link.

Posted by: Dynamo - 04-07-2017, 05:23 AM - Forum: Announcements - Replies (17)
Hello,
As you guys must had seen that Post4VPS Forum was Closed for last 10 hours..
Well let me make this publically.One of our Staff member's had saw that @Hero^ was trying to cheat the Credits system.
what he was doing was creating random long posts which gives him credits and as soon as after creating, he deletes them too which would not deduct any credit from his account(since it can only be deducted when the posts get deleted permanently).
And ofcource one of our staff member just saw him doing that and reported to me, First I thought of deleting his posts permanently but deleting posts permanently deducts more than what much he had got for creating them. So I just thought of choosing the all member credit recount option, But after recounting everyone's Credits I found that it wasn't counting accurately.. users like having $750 credits gone down to $88..
that's why I closed the Forum yesterday for maintenance and after trying everything I got to only one conclusion which was restoring old backuped Forum database(which was 10-11 hours older).

By doing this we lost:
57 posts, 9 threads & 1 user data.


What if anyone try to cheat the Credit system like @Hero^ again ?
Well Now if you even type a Very long post and try to delete it, it won't give you a single credit.. since We have updated our Credit system in which this have been fixed up.

I never thought that this can be serious  Devil
(04-06-2017, 05:04 AM)LazzyBoy Wrote: Good lucky to those all who applied theres no need to fight xd

Sorry for the inconvenience caused
Posted by: kabir145 - 04-05-2017, 11:43 AM - Forum: Tutorials - Replies (3)
The first thing you have to do when trying to get this software first of all you will have to install lamp because it is important thing for installing mybb .
What is Lamp?
LAMP is an Open Source Web development platform that uses Linux as the operating system, Apache as the Web server, Mysql as the relational database management system and PHP as the object-oriented scripting language. (Sometimes Perls or Python is used instead of PHP.
So now we will start installing Lamp On Vps
First of all we need to install Apache for installing apache we need to type that in command in terminal
Code:
sudo apt-get update

Code:
sudo apt-get install apache2

next step is to install mysql mysql is an database management system which is reponsible for storing database to install mybb forum we need to install mysql because we will need to save user data in it for installing mysql we will need to type the following commands in terminal

Code:
sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql

Now we have to install php because it is an important thing for install mybb forum for PHP forum we have to type the following commands

Code:
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt

Code:
Now we will secure mysql database management system by typing the following commands
sudo mysql_install_db

sudo mysql_secure_installation

after this its will ask some questions answer each question with Yes Except the password change question if you are happy with your password

First of all login to your mysql with the following command password will be same which you gived duuring installation
mysql -u root -p
now we will create a database for our forum and also a user and then we will grant all previllages to that user for doing it type the following commands
CREATE DATABASE kabir;


CREATE USER 'kabir'@'localhost' IDENTIFIED BY 'kabir';


GRANT ALL PRIVILEGES ON kabir.* TO 'kabir'@'localhost' IDENTIFIED BY 'kabir';


Code:
FLUSH PRIVILEGES;

Code:
exit
Now We will Download Forum to vps
for downloading forum to vps you will havee to type the following commands 
[code]cd /var/www/html/
Code:
wget https://resources.mybb.com/downloads/mybb_1811.zip
We need to unzip the files but unzip is not installed in our system yet for installing type the following commands
sudo apt-get install unzipnow we can install it by typing the following command
Code:
unzip [font=monospace]mybb_1811.zip
[font=monospace][font=monospace]
Now we just need to configure few files permissions then we will be able to configure forum correctly
Code:
sudo chmod a+rw inc/settings.php
sudo chmod a+rw inc/config.php
sudo chmod a+rw cache
sudo chmod a+rw uploads
sudo chmod a+rw uploads/avatars
Now you are ready to configure your site for setting visit to ur domain
if you get any problems please post here i will be happy to help u out[/code]
Posted by: FacTioN - 04-04-2017, 09:07 PM - Forum: General Gaming Discussion - Replies (32)
Hey members of  this forum,

Anyone knows how to make game servers popular than before I want to host my own game servers on My VPS no matter whatever it is new or old neither it don't have good game modes but  I want to have good players to join my servers who can scrim or role playing.
Please reply back to me here if you have any clues about this.
Posted by: FacTioN - 04-04-2017, 05:34 PM - Forum: Others - No Replies
Hello Guys,

The habbo retro is copy of real habbo hotel i play habbo retro called crimp hotel i get alot of free credits i don't mind using it to buy funirture in client if you know about habbo retro please reply here as you can. i am officially ranked as moderator of Crimp Hotel. So there is less people online we need more users to play on this habbo retro but it is down at the moment because it is broken at the moment my friend owner of Crimp Hotel habbo retro is fixing and solving this problem.

Thank You,

ImranJi , Syntax aka FacTioN
Posted by: FacTioN - 04-04-2017, 05:26 PM - Forum: Others - Replies (16)
Hello Guys,
Well I am here to inform you all that there is free beta VPS available at the moment with all list of plans you can select any of them to get VPS in beta for free i just got mine VPS so i can run unlimited game servers however i had no time to edit gameservers and run gameservers. let me show you picture of mine VPS on this website
Here is the link is 
www.skysilk.com

Here is the screenshot:
[Image: 4v4ra1.png]
Posted by: Dynamo - 04-04-2017, 04:36 PM - Forum: VPS Giveaways - Replies (9)
38 VPSs are Available


  • 3x VPS 1
  • 1x VPS 2
  • 9x VPS 3
  • 2x VPS 4
  • 10x VPS 5
  • 9x VPS 8
  • 1x VPS 9 (Location available is Atlanta & Please include in your request which operating system you would like installed from below OS list.)
  • 1x VPS 10
  • 1x VPS 11
  • 1x VPS 13
Note: We would not only view points for VPS 9 but also the VPS usage purpose too, so if you a have reasonable purpose, then only try to claim for them Smile as otherwise it would be just a waste of resource
Operating System of VPS 3 are as follows:
Spoiler Expand
CentOS 6.7 64 bit
Debian 8 64 bit
Windows 2008 R2 64bit (may not be activated)
Windows 2012 R2 64bit (may not be activated)
CentOS 7 64 bit
Ubuntu-14.04.1-LTS-64bit
Minecraft-CentOS-7-64bit
FreeBSD-10-1-64bit
Docker-64bit
Windows 7-64bit

Operating System of VPS 9 are as follows:
Spoiler Expand
CentOS 5 x86
CentOS 6 x64
CentOS 6 x86  - Clean install
CentOS 6 x86 Minimal
Centos 7 64bit Minimal
Debian 6.0 x86
Debian 7 x86 + Mumble  - Debian 7 clean with Mumble server ready.
Debian 7.0 x64  - Debian 7 x64 Clean
Debian 7.0 x64 Minimal
Debian 7.0 x86 Minimal
Debian 8.0 x64
Debian 8.0 x86_64 Minimal
Runescape OS v1  - Ubuntu 14 LXDE with NoVNC and Java pre-installed for RS
Runescape OS v1 x64  - Ubuntu 14 LXDE with NoVNC and Java pre-installed for RS
Ubuntu 12.04 x64  - 64-bit Ubuntu 12.04 clean install
Ubuntu 14.04 x64 Minimal
Ubuntu 14.04 x86  - Default, clean install
Ubuntu 14.04 x86 w/VNC  - UP-TO-DATE VERSION W/ VNC
Ubuntu 14.04 x86 w/VNC MC  - Minecraft server on desktop -- Advanced VPS plans only.
Ubuntu 15.04 x86_64 Minimal  - Ubuntu 15.04 (Vivid Vervet) -- Minimal
Ubuntu 15.04 x86_64 Non-minimal
Ubuntu 15.10 x86_64 Minimal
Ubuntu 16.04 x86_64


The winners will be decided as soon as possible and giveaway will remain open till 9th of April  (Sunday).

Please Read before Applying
  1. Read Our Forum Rules before applying.
  2. You should have meet our minimum requirements to get VPS.
  3. Read Application Format before applying. (If the application format is wrong then your Request will be rejected)
  4. You must post your VPS application in VPS Request Forum.
  5. Read TOS of VPS providers before applying.
Good Luck !

Posted by: FacTioN - 04-04-2017, 02:55 PM - Forum: Software - Replies (16)
Hello Guys,
Any of you guys use CCleaner that shows cleaning disk spaces , clearing browsing data , clearing DNS Cache but it is free , improved and fast to use no cost at all  i have no problems with my CCleaner Software i use it regularly everytime as i need it to improve my fast PC. i use CCleaner for few years still no issues at all . Also it supply reg to clean to make it fast Computer or Laptop.
Pages (305): Jump to page 
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,271
» Latest member: orzpainter
» Forum threads: 3,093
» Forum posts: 34,816

Full Statistics

Online Users
There are currently 474 online users.
» 0 Member(s) | 471 Guest(s)
Bing, UptimeRobot, Google

Latest Threads
LLHOST — VPS hosting for ...
Forum: Value VPS Providers
Last Post: LLHOST
04-30-2025, 12:10 PM
» Replies: 0
» Views: 60
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers
Last Post: LLHOST
04-22-2025, 11:04 AM
» Replies: 0
» Views: 160
LLHOST: VPS in the Nether...
Forum: Others
Last Post: LLHOST
04-15-2025, 07:32 PM
» Replies: 0
» Views: 225
Hello all!
Forum: Meet & Greet!
Last Post: perry
03-26-2025, 11:28 AM
» Replies: 1
» Views: 283
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
03-25-2025, 02:07 PM
» Replies: 5
» Views: 3,355
VisualWebTechnologies | 7...
Forum: Others
Last Post: visualwebtechnologies
03-11-2025, 02:58 AM
» Replies: 0
» Views: 213
Post2Host.com domain on a...
Forum: Others
Last Post: Variable
03-10-2025, 04:04 PM
» Replies: 0
» Views: 178
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers
Last Post: HostNamaste
03-05-2025, 12:15 PM
» Replies: 0
» Views: 391
Create Unlimited Virtual ...
Forum: Hardware & Technology
Last Post: bestadvisor
03-01-2025, 09:47 AM
» Replies: 0
» Views: 656
VisualWeb offers cPanel H...
Forum: Others
Last Post: visualwebtechnologies
01-23-2025, 03:38 AM
» Replies: 0
» Views: 274

Sponsors: VirMach - Host4Fun - CubeData - Evolution-Host - HostDare - Hyper Expert - Shadow Hosting - Bladenode - Hostlease - RackNerd - ReadyDedis - Limitless Hosting