»»»Tutorial«««
Hello Guys,
I will learn you today how to change the RCON password at SAMP.
1st. Go to server.cfg
2nd. U will see this.
3rd. Change rcon_password
4th. It will be changed
EX:
We are done.
..............................................................................
Wanna to login with RCON in game?
It's easy bro...
See the code
Want to make yourself admin from a script?
It's easy
Done 
Regards,
YoUsSeFbAsHa.
Hello Guys,
I will learn you today how to change the RCON password at SAMP.
1st. Go to server.cfg
2nd. U will see this.
Code:
echo Executing Server Config...
lanmode 0
hostname Your Server Name Here
weburl www.example.com
mapname San Andreas
language English
password
rcon_password theadminpassword
maxplayers 100
maxnpc 0
rcon 1
announce 1
query 1
lagcompmode 1
messageholelimit 3000
messageslimit 500
ackslimit 3000
gamemode0 your gm name
filterscripts
plugins
onfoot_rate 40
incar_rate 40
weapon_rate 40
stream_distance 300.0
stream_rate 1000
4th. It will be changed
EX:
Code:
rcon_password passchanged
We are done.
..............................................................................
Wanna to login with RCON in game?
It's easy bro...
See the code
Code:
/rcon login thepasshere
It's easy
Code:
/setlevel ID LEVEL

Regards,
YoUsSeFbAsHa.
HELLO ALL
Hope you all fine. i am a great lover of Nintendo gameboy, gameboy advance, Nintendo Entertainment Systems NES Games. so i will share with you how to Install a NES emulator and Nintendo games on your Debian or Ubuntu servers.
So far I have only attempted to install CC65 and FCEUX on Ubuntu 12.04 LTS (64-bit), where I rely on APT (i.e.
, as used by Ubuntu and Debian).
First we install cc65:
An APT repository that can be used to install cc65 as a Debian package. To use it, first make sure you have
installed.
Add the key for Spiro’s repository:
(Add Spiro’s repository to your APT sources, by editing
/etc/apt/sources.list) and adding the following lines at the end:
Update your APT sources:
Install specifically2 version
2.13.3-1 of cc65 and cc65-nes:
Check cc65 :
Now we install FCEUX:
First, make sure (curl) and (unzip) are installed, as they will come in handy later:
sudo apt-get install curl unzip
Install the fceux package:
Now Back files are Installed and time to test it.
Download a NES ROM package file (i.e. a .nes file) from somewhere, and launch it with fceux. For example, grab the free BombSweeper, extract the file, and launch it.
If you get any encoding or resolution error. i am not expert for this. so try to find out solution on Internet.
Launch FCEUX:
Make sure your resulting is a Page with HELLO, WORLD!
Hope you all fine. i am a great lover of Nintendo gameboy, gameboy advance, Nintendo Entertainment Systems NES Games. so i will share with you how to Install a NES emulator and Nintendo games on your Debian or Ubuntu servers.
So far I have only attempted to install CC65 and FCEUX on Ubuntu 12.04 LTS (64-bit), where I rely on APT (i.e.
Code:
apt-get
First we install cc65:
An APT repository that can be used to install cc65 as a Debian package. To use it, first make sure you have
Code:
debian-keyring
Code:
sudo apt-get install debian-keyring
Add the key for Spiro’s repository:
Code:
gpg --keyserver wwwkeys.pgp.net --recv-key 2AF47E44
gpg -a --export 2AF47E44 | sudo apt-key add -
(Add Spiro’s repository to your APT sources, by editing
/etc/apt/sources.list) and adding the following lines at the end:
Code:
deb http://debian.trikaliotis.net/ stable contrib
deb-src http://debian.trikaliotis.net/ stable contrib
Update your APT sources:
Code:
sudo apt-get update
Install specifically2 version
2.13.3-1 of cc65 and cc65-nes:
Code:
sudo apt-get install cc65=2.13.3-1 cc65-nes=2.13.3-1
Check cc65 :
Code:
$ cc65 --version
cc65 V2.13.3
SVN version: 5401
Now we install FCEUX:
First, make sure (curl) and (unzip) are installed, as they will come in handy later:
sudo apt-get install curl unzip
Install the fceux package:
Code:
sudo apt-get install fceux
Now Back files are Installed and time to test it.
Download a NES ROM package file (i.e. a .nes file) from somewhere, and launch it with fceux. For example, grab the free BombSweeper, extract the file, and launch it.
Code:
fceux BombSweeper.nes
If you get any encoding or resolution error. i am not expert for this. so try to find out solution on Internet.
Launch FCEUX:
Code:
fceux hello.nes
Make sure your resulting is a Page with HELLO, WORLD!
Hello Friends,
I have scripted a calculator for some math problems.I have added funcation to check prime numbers.This program will also show you about vowel and consonant(non vowel) if you put alphabet.I have created this program in Visual C++ .
I have scripted a calculator for some math problems.I have added funcation to check prime numbers.This program will also show you about vowel and consonant(non vowel) if you put alphabet.I have created this program in Visual C++ .
Code:
#include<iostream>
using namespace std;
void main();
void MainMenu()
{
cout<<" 1.Addition"<<endl;
cout<<" 2.Subtraction"<<endl;
cout<<" 3.Multiplication"<<endl;
cout<<" 4.Division"<<endl;
cout<<" 5.Remainder"<<endl;
cout<<" 6.Factorial"<<endl;
cout<<" 7.Even or Odd"<<endl;
cout<<" 8.Prime or Not"<<endl;
cout<<" 9.Vowel or Consonant"<<endl;
cout<<" 10.Exit"<<endl<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~"<<endl;
}
void Add()
{
system("color 4a");
cout<<"~~~~~~~~~~~~~~~You Choose Addition~~~~~~~~~~~~~~"<<endl<<endl;
double a,b;
cout<<"Enter the Value of A = ";
cin>>a;
cout<<"Enter the Value of B = ";
cin>>b;
cout<<endl;
cout<<a<<" + "<<b<<" = "<<a+b<<endl<<endl;
cout<<"1.For Again Addtion"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Add();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void Sub()
{
system("color 1d");
cout<<"~~~~~~~~~~~~~~~You Choose Subtraction~~~~~~~~~~~~~~"<<endl<<endl;
double a,b;
cout<<"Enter the Value of A = ";
cin>>a;
cout<<"Enter the Value of B = ";
cin>>b;
cout<<endl;
cout<<a<<" - "<<b<<" = "<<a-b<<endl<<endl;
cout<<"1.For Again Subtraction"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Sub();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void Mul()
{
system("color 5e");
cout<<"~~~~~~~~~~~~~~~You Choose Multiplication~~~~~~~~~~~~~~"<<endl<<endl;
double a,b;
cout<<"Enter the Value of A = ";
cin>>a;
cout<<"Enter the Value of B = ";
cin>>b;
cout<<endl;
cout<<a<<" * "<<b<<" = "<<a*b<<endl<<endl;
cout<<"1.For Again Multiplication"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Mul();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void Div()
{
system("color 2f");
cout<<"~~~~~~~~~~~~~~~You Choose Division~~~~~~~~~~~~~~"<<endl<<endl;
double a,b;
cout<<"Enter the Value of A = ";
cin>>a;
cout<<"Enter the Value of B = ";
cin>>b;
cout<<endl;
cout<<a<<" / "<<b<<" = "<<a/b<<endl<<endl;
cout<<"1.For Again Division"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Div();
break;
case 2:
main();
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void Rem()
{
system("color 2b");
cout<<"~~~~~~~~~~~~~~~You Choose Remainder~~~~~~~~~~~~~~"<<endl<<endl;
int a,b;
cout<<"Enter the Value of A = ";
cin>>a;
cout<<"Enter the Value of B = ";
cin>>b;
cout<<endl;
cout<<a<<" % "<<b<<" = "<<a%b<<endl<<endl;
cout<<"1.For Again Remainder"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Rem();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void Fac()
{
system("color 5b");
cout<<"~~~~~~~~~~~~~~~You Choose Factorial~~~~~~~~~~~~~~"<<endl<<endl;
int a,b,c;
cout<<"Enter the Number = ";
cin>>a;
c=a;
for(b=a-1;b>0;b--)
a=b*a;
cout<<endl;
cout<<"Factorial of "<<c<<" = "<<a<<endl<<endl;
cout<<"1.For Again Factorial"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Fac();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void EvOd()
{
system("color 6a");
cout<<"~~~~~~~~~~~~~~~You Choose Even or Odd~~~~~~~~~~~~~~"<<endl<<endl;
int a;
cout<<"Enter a Number = ";
cin>>a;
cout<<endl;
if(a%2==0)
cout<<a<<" is Even "<<endl<<endl;
else
cout<<a<<" is Odd "<<endl<<endl;
cout<<"1.For Again Even or Odd"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
EvOd();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void Pri()
{
system("color 6a");
cout<<"~~~~~~~~~~~~~~~You Choose Prime or Not Prime~~~~~~~~~~~~~~"<<endl<<endl;
int a,b,c=0;
cout<<"Enter a Number = ";
cin>>a;
cout<<endl;
for(b=2;b<a;b++)
if(a%b==0)
c=c+1;
if(c==0)
cout<<a<<" is Prime "<<endl<<endl;
else
cout<<a<<" is Not Prime"<<endl<<endl;
cout<<"1.For Again Prime or Not Prime"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Pri();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void Vow()
{
system("color 6a");
cout<<"~~~~~~~~~~~~~~~You Choose Vowel or Consonant~~~~~~~~~~~~~~"<<endl<<endl;
char a;
cout<<"Enter an Alphabet = ";
cin>>a;
cout<<endl;
if(a=='a'||a=='e'||a=='i'||a=='o'||a=='u'||a=='A'||a=='E'||a=='I'||a=='O'||a=='U')
cout<<a<<" is Vowel"<<endl<<endl;
else
cout<<a<<" is Consonant"<<endl<<endl;
cout<<"1.For Again Vowel or Consonant"<<endl;
cout<<"2.Back to Main Menu"<<endl;
cout<<"3.Exit"<<endl;
int o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<"Enter Option = ";
cin>>o;
cout<<endl;
cout<<"~~~~~~~~~~~~~~~~~~"<<endl;
cout<<endl<<endl;
switch(o)
{
case 1:
Vow();
break;
case 2:
main();
break;
case 3:
exit(0);
break;
default:
cout<<"Wrong Entry"<<endl;
}
}
void main()
{
system("color 2f");
MainMenu();
int o;
cout<<"Enter the Choice = ";
cin>>o;
cout<<endl;
switch(o)
{
case 1:
Add();
break;
case 2:
Sub();
break;
case 3:
Mul();
break;
case 4:
Div();
break;
case 5:
Rem();
break;
case 6:
Fac();
break;
case 7:
EvOd();
break;
case 8:
Pri();
break;
case 9:
Vow();
break;
case 10:
exit(0);
break;
default :
cout<<"Wrong Entry Plese Enter Again"<<endl<<endl;
main();
}
system("pause");
}
Hello,
I wanted to Discuss a abusing point/Bug at a point when users can able to get VPS for Free without doing posts after becoming VPS Holder.
Yea You heart it right, Just take a Example like:
There is a user with 26 posts and $120 credits named maybe Demon, who applied for VPS3 and won it in November's Giveaway, but as soon as he gets The VPS, he stop doing posts and I catched him and terminated his VPS3 at 1st of December, and now He demoted to registered user but he still have 26 posts and $120 credits, so he reapplies for VPS3 and again won it.. In this way the Cycle of getting Free Monthly VPS keeps going on..
It was just an example, users can abuse it very much,
that's why we have decided to take some measures to prevent it.
So from now on If any VPS Holder looses his VPS, and wants to re-apply in next Giveaway, then we would judge his application by keeping in mind his result credits(his credits-$100=result credits) and also He/she needs to give $100 credits from his virtual credits if he wons a VPS.
In this way if Mr. Demon re-applies and won any VPS then $100 credits would be subtracted from his main which was $120 and after winning,he would left with $20.
We Give excuses for real personal problems(like exams), but can't keep giving Free VPSs for nothing, its not the way how a Post2Host Forum works,
I hope users would understand that,
Regards,
Post4VPS Staff
I wanted to Discuss a abusing point/Bug at a point when users can able to get VPS for Free without doing posts after becoming VPS Holder.
Yea You heart it right, Just take a Example like:
There is a user with 26 posts and $120 credits named maybe Demon, who applied for VPS3 and won it in November's Giveaway, but as soon as he gets The VPS, he stop doing posts and I catched him and terminated his VPS3 at 1st of December, and now He demoted to registered user but he still have 26 posts and $120 credits, so he reapplies for VPS3 and again won it.. In this way the Cycle of getting Free Monthly VPS keeps going on..
It was just an example, users can abuse it very much,
that's why we have decided to take some measures to prevent it.
So from now on If any VPS Holder looses his VPS, and wants to re-apply in next Giveaway, then we would judge his application by keeping in mind his result credits(his credits-$100=result credits) and also He/she needs to give $100 credits from his virtual credits if he wons a VPS.
In this way if Mr. Demon re-applies and won any VPS then $100 credits would be subtracted from his main which was $120 and after winning,he would left with $20.
We Give excuses for real personal problems(like exams), but can't keep giving Free VPSs for nothing, its not the way how a Post2Host Forum works,
I hope users would understand that,
Regards,
Post4VPS Staff
Hello all my Friend. hope you all are fine. i have a interesting thing for you. as all of you wish like me to a remote skype installation and operation on your Linux Server.
a useful link bellow. Request all of you to please try it on different Linux OS's . and write here your results.
[/url]Installation of Skype on Linux VPS Servers.
Best Regards
Sagher
[url=http://sevabot-skype-bot.readthedocs.io/en/latest/ubuntu.html#introduction]
a useful link bellow. Request all of you to please try it on different Linux OS's . and write here your results.
[/url]Installation of Skype on Linux VPS Servers.
Best Regards
Sagher
[url=http://sevabot-skype-bot.readthedocs.io/en/latest/ubuntu.html#introduction]
Greetings ladies and gentlemen, I am not at writing introductions so i'll just get into it.
Well, Lets say that you have the ability to host couple of gaming servers and buy a proper domain name and you wish to expand this community even more BUT you don't have the experience nor the staff nor the time to manage/keep the community alive, This is what a gaming community manager does , He keeps the community alive and organizes it as much as possible and also provides a proper staff team to do the job.
Well of course! I managed couple of Counter-Strike communities and one SAMP community alone over the past decade.
I also have some promising staff to start with and a lot of unique ideas to attract new members/players into joining any community
I have PAWN skills , HTML skills and brilliant ideas to keep the community running.
If you're upholding a decent hosting company our humble gaming company will encourage people to buy from your host, This means that the website AND the game servers will have some advertisements held within them.
Players will buy VIP memberships and in-game features for real cash which will keep the community alive, Any extra cash that's not needed in keeping the community alive will be forwarded towards the sponsor(s) funding account.
Gaming will attract some viewers to your youtube channel, So its a good way to advertise that.
The gaming forums are really fast-to-grow forums and they really provide a lot of activity inside them.
absolutely nothing I am volunteering to make a place where everyone enjoys playing at whether he's african or american or japanese, Everyone is welcome, the only benefit i will come up with is knowing even more people and getting even better experience at handling gaming communities.
*Edited by moderator to protect community*
Farewell.
What is a gaming community manager?
Well, Lets say that you have the ability to host couple of gaming servers and buy a proper domain name and you wish to expand this community even more BUT you don't have the experience nor the staff nor the time to manage/keep the community alive, This is what a gaming community manager does , He keeps the community alive and organizes it as much as possible and also provides a proper staff team to do the job.
Do i have any experience in gaming community managing ?
Well of course! I managed couple of Counter-Strike communities and one SAMP community alone over the past decade.
I also have some promising staff to start with and a lot of unique ideas to attract new members/players into joining any community
I have PAWN skills , HTML skills and brilliant ideas to keep the community running.
How does this benefit the sponsor(s) ?
If you're upholding a decent hosting company our humble gaming company will encourage people to buy from your host, This means that the website AND the game servers will have some advertisements held within them.
Players will buy VIP memberships and in-game features for real cash which will keep the community alive, Any extra cash that's not needed in keeping the community alive will be forwarded towards the sponsor(s) funding account.
Gaming will attract some viewers to your youtube channel, So its a good way to advertise that.
The gaming forums are really fast-to-grow forums and they really provide a lot of activity inside them.
What's my benefits after all of this?
absolutely nothing I am volunteering to make a place where everyone enjoys playing at whether he's african or american or japanese, Everyone is welcome, the only benefit i will come up with is knowing even more people and getting even better experience at handling gaming communities.
How can you contact me ?
*Edited by moderator to protect community*
Farewell.
Hello evryone. Do you know about DNS? What is DNS. and how it's works? DNS is Sub name of The Domain Name System essentially just converts an IP address into a more human friendly form by making it easier to remember. Such as www.post4vps.com or 104.31.79.204.
To your browser, they are both the same thanks to the magic of DNS. What DNS does is to map and match domain names like www.post4vps.com to an IP address like 104.31.79.204 When you type www.post4vps.com into a browser, the computer asks a DNS server on your local network or the internet if it can find an IP address that it can match with that domain name (most browsers have a small bar at the bottom that will display a message saying "looking up www.post4vps.com ."). The said DNS server will answer back with the IP address if it has mapped and matched it, and if not, it will then contact other DNS servers on the Internet until it finds the address it's looking for (or throws an error if there is no match). The whole process generally takes will only take a few milliseconds.
ISP's generally assign each customers router to a DNS server to contact when the connection is first made. Your router will receive DNS requests from your local network and pass them on to the ISP's server. Without any DNS servers, your web browser would be unable to convert domain names such as www.post4vps.com into an IP address, and you would not be able to access any web pages.
In reality you don't have to have a domain name to host a website. If your home computer is connected to the Internet with a web server such as Apache, nGinx or Hiawatha, and you have created a web page in your web servers root delivery directory, anyone else on the internet can access that web page by typing your current IP address into their web browser. Nowadays you will find you get your routers admin login (hopefully) page, as your router has a very lite weight web server built in! You will always have to configure your router with port forwarding which, in short, allows a connection to bypass the routers web server and go directly to your computers web server on the given ports you forward. But if you want to host a website that people will actually visit though, it really is best to get a domain name.
In order to get a domain name, you will need to register with one of the many domain name registration services (such as noip.com, or dot.tk), Although Network Solutions is the Great DAD of all of them, there are so many other registrars which offer very competitive pricing. Usually you get a domain, for a fee, on a monthly, yearly or multi-year basis. The Internet Corporation for Assigned Names and Numbers governs all domain names on the Internet, and domain registrars have special permission, by way of obtaining a license from ICANN, to lease them to you for a period of time.
Once you have chosen a domain registrar service, you will obviously choose the domain name you want and search with your chosen registrar to see if that particular domain name is already taken, so there is no chance of two people owning post4vps.com for example. Fees for domain registration will vary greatly, from a few pence/cents (godaddy.com, at the time of this writing, are offering .co and .co.uk for £0.01!), right up into the millions;
From Wikipedia;
Insurance.com $35.6 million in 2010.
VacationRentals.com $35 million in 2007.
PrivateJet.com $30.18 million in 2012.
Internet.com $18 million in 2009.
360.com $17 million in 2015.
Insure.com $16 million in 2009.
Fund.com 2008 £9.99 million.
Once you have registered your domain name, you can use the domain registrars website to map and match your newly purchased domain name with your computer's IP address. From this point on, anyone who enters your domain name into a browser will be directed to your IP address and subsequently your web page/site! Simple really
!
So guys there you have it, what DNS is and how it all works. Thanks for reading and I hope you've learns something new today and I will be back with more information all the time.
To your browser, they are both the same thanks to the magic of DNS. What DNS does is to map and match domain names like www.post4vps.com to an IP address like 104.31.79.204 When you type www.post4vps.com into a browser, the computer asks a DNS server on your local network or the internet if it can find an IP address that it can match with that domain name (most browsers have a small bar at the bottom that will display a message saying "looking up www.post4vps.com ."). The said DNS server will answer back with the IP address if it has mapped and matched it, and if not, it will then contact other DNS servers on the Internet until it finds the address it's looking for (or throws an error if there is no match). The whole process generally takes will only take a few milliseconds.
ISP's generally assign each customers router to a DNS server to contact when the connection is first made. Your router will receive DNS requests from your local network and pass them on to the ISP's server. Without any DNS servers, your web browser would be unable to convert domain names such as www.post4vps.com into an IP address, and you would not be able to access any web pages.
In reality you don't have to have a domain name to host a website. If your home computer is connected to the Internet with a web server such as Apache, nGinx or Hiawatha, and you have created a web page in your web servers root delivery directory, anyone else on the internet can access that web page by typing your current IP address into their web browser. Nowadays you will find you get your routers admin login (hopefully) page, as your router has a very lite weight web server built in! You will always have to configure your router with port forwarding which, in short, allows a connection to bypass the routers web server and go directly to your computers web server on the given ports you forward. But if you want to host a website that people will actually visit though, it really is best to get a domain name.
In order to get a domain name, you will need to register with one of the many domain name registration services (such as noip.com, or dot.tk), Although Network Solutions is the Great DAD of all of them, there are so many other registrars which offer very competitive pricing. Usually you get a domain, for a fee, on a monthly, yearly or multi-year basis. The Internet Corporation for Assigned Names and Numbers governs all domain names on the Internet, and domain registrars have special permission, by way of obtaining a license from ICANN, to lease them to you for a period of time.
Once you have chosen a domain registrar service, you will obviously choose the domain name you want and search with your chosen registrar to see if that particular domain name is already taken, so there is no chance of two people owning post4vps.com for example. Fees for domain registration will vary greatly, from a few pence/cents (godaddy.com, at the time of this writing, are offering .co and .co.uk for £0.01!), right up into the millions;
From Wikipedia;
Insurance.com $35.6 million in 2010.
VacationRentals.com $35 million in 2007.
PrivateJet.com $30.18 million in 2012.
Internet.com $18 million in 2009.
360.com $17 million in 2015.
Insure.com $16 million in 2009.
Fund.com 2008 £9.99 million.
Once you have registered your domain name, you can use the domain registrars website to map and match your newly purchased domain name with your computer's IP address. From this point on, anyone who enters your domain name into a browser will be directed to your IP address and subsequently your web page/site! Simple really

So guys there you have it, what DNS is and how it all works. Thanks for reading and I hope you've learns something new today and I will be back with more information all the time.
Hello all members and specially experts. i wish to make a self cloud server for my mobile or any other private data storage. which access to my mobile and upload my mobile data to cloud vps. but no idea about it. is it a good positive way to workout? or meaningless to work on it?
say something about this idea.
say something about this idea.
already heard that ps4 and xbox is combining the servers you play on
so you can play on servers on playstation but then with a xbox.
http://www.pocket-lint.com/news/137034-m...y-together
read this.
is this a good move i think of yes!
best regards
perry
so you can play on servers on playstation but then with a xbox.
http://www.pocket-lint.com/news/137034-m...y-together
read this.
is this a good move i think of yes!
best regards
perry
..::Tutorial::..
Hello Guys,
I have just made a "Basic Calculator" That Can Calculate +,-,*,/ And I Wanna To Share It With You...
Requirements:
First Put 3 Labels.
Second Put 3 Textboxes Under Them And put spaces between them.
Third Add 4 Buttons And 1 if you want for Exit.
...........................................................................
Change the property "Text" Of the label1 To Number 1 , the second label (label2) To Number 2 and the third label (label3) To Result.
Put 2 Other Labels (label4,label5)
And put 1 between textbox1 and textbox2 and the another one put it between textbox 2 and textbox3 Then Change the property Text of label4 to (Nothing) and label5 to = .
Now Change The 4 Buttons Text (button1 to +),(button2 to -),(button3 to /) and (button4 to *).
And if you added button 5 make it Exit.
.....................................................................
Now Lets Code,
Call Button1 and the event Click
And type
Textbox3.text = Val(textbox1.text) + Val(Textbox2.text)
Label4.text = "+"
Call Button2 and the event Click
And type
Textbox3.text = Val(textbox1.text) - Val(Textbox2.text)
Label4.text = "-"
Call Button3 and the event Click
And type
Textbox3.text = Val(textbox1.text) / Val(Textbox2.text)
Label4.text = "/"
Call Button4 and the event Click
And type
Textbox3.text = Val(textbox1.text) * Val(Textbox2.text)
Label4.text = "*"
...............................................................
Call Button5 If you made it and set code to
End
Picture Of Codes: https://imgur.com/afxsOA9
Picture Of Form: https://imgur.com/U71iixu
App Link: https://www.solidfiles.com/v/Wdy5RKpG4qe5p
......................................................
Thats All,
Have A Nice Day! & Thanks For Reading if that helped you don't forget to give me a +Rep
Regards,
YoUsSeFbAsHa
Hello Guys,
I have just made a "Basic Calculator" That Can Calculate +,-,*,/ And I Wanna To Share It With You...
Requirements:
First Put 3 Labels.
Second Put 3 Textboxes Under Them And put spaces between them.
Third Add 4 Buttons And 1 if you want for Exit.
...........................................................................
Change the property "Text" Of the label1 To Number 1 , the second label (label2) To Number 2 and the third label (label3) To Result.
Put 2 Other Labels (label4,label5)
And put 1 between textbox1 and textbox2 and the another one put it between textbox 2 and textbox3 Then Change the property Text of label4 to (Nothing) and label5 to = .
Now Change The 4 Buttons Text (button1 to +),(button2 to -),(button3 to /) and (button4 to *).
And if you added button 5 make it Exit.
.....................................................................
Now Lets Code,
Call Button1 and the event Click
And type
Textbox3.text = Val(textbox1.text) + Val(Textbox2.text)
Label4.text = "+"
Call Button2 and the event Click
And type
Textbox3.text = Val(textbox1.text) - Val(Textbox2.text)
Label4.text = "-"
Call Button3 and the event Click
And type
Textbox3.text = Val(textbox1.text) / Val(Textbox2.text)
Label4.text = "/"
Call Button4 and the event Click
And type
Textbox3.text = Val(textbox1.text) * Val(Textbox2.text)
Label4.text = "*"
...............................................................
Call Button5 If you made it and set code to
End
Picture Of Codes: https://imgur.com/afxsOA9
Picture Of Form: https://imgur.com/U71iixu
App Link: https://www.solidfiles.com/v/Wdy5RKpG4qe5p
......................................................
Thats All,
Have A Nice Day! & Thanks For Reading if that helped you don't forget to give me a +Rep

Regards,
YoUsSeFbAsHa

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,093 » Forum posts: 34,816 Full Statistics |
Online Users |
There are currently 391 online users. » 0 Member(s) | 389 Guest(s) Bing, Google |
Latest Threads |
LLHOST — VPS hosting for ...
Forum: Value VPS Providers Last Post: LLHOST 04-30-2025, 12:10 PM » Replies: 0 » Views: 54 |
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers Last Post: LLHOST 04-22-2025, 11:04 AM » Replies: 0 » Views: 151 |
LLHOST: VPS in the Nether...
Forum: Others Last Post: LLHOST 04-15-2025, 07:32 PM » Replies: 0 » Views: 218 |
Hello all!
Forum: Meet & Greet! Last Post: perry 03-26-2025, 11:28 AM » Replies: 1 » Views: 280 |
Buy DemoTiger Videos on c...
Forum: Others Last Post: DewlanceHosting 03-25-2025, 02:07 PM » Replies: 5 » Views: 3,353 |
VisualWebTechnologies | 7...
Forum: Others Last Post: visualwebtechnologies 03-11-2025, 02:58 AM » Replies: 0 » Views: 211 |
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: 387 |
Create Unlimited Virtual ...
Forum: Hardware & Technology Last Post: bestadvisor 03-01-2025, 09:47 AM » Replies: 0 » Views: 650 |
VisualWeb offers cPanel H...
Forum: Others Last Post: visualwebtechnologies 01-23-2025, 03:38 AM » Replies: 0 » Views: 274 |