hi the panic bnc is providing free bnc with no requirements only go and apply and get your own bnc
https://www.panicbnc.net/
What is irc?
Answer: Internet Relay Chat (IRC) is an application layer protocol that facilitates communication in the form of text. The chat process works on a client/server networking model. IRC clients are computer programs that a user can install on their system
what is ZNC/BNC?
Answer: ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC and Save chats logs for u when you not available on Irc and you can see later when you open irc.
https://www.panicbnc.net/
What is irc?
Answer: Internet Relay Chat (IRC) is an application layer protocol that facilitates communication in the form of text. The chat process works on a client/server networking model. IRC clients are computer programs that a user can install on their system
what is ZNC/BNC?
Answer: ZNC is an IRC network bouncer or BNC. It can detach the client from the actual IRC server, and also from selected channels. Multiple clients from different locations can connect to a single ZNC account simultaneously and therefore appear under the same nickname on IRC and Save chats logs for u when you not available on Irc and you can see later when you open irc.
Name: aliabbas
age:18
Interests:Making game server, Designing Webs, Hosting game servers and web
Note: i am not new here i am here from many months but i never posted here but now i think lets try for a vps
age:18
Interests:Making game server, Designing Webs, Hosting game servers and web
Note: i am not new here i am here from many months but i never posted here but now i think lets try for a vps
by me [Proof] https://freedomain.club/showthread.php?tid=2502
hi guys today i will show you how to host Smf on Debian7 and unbuntu
first of all you will need to install LAMP if you dont have already on your vps so first i will show you how to install LAMP if you dont have
Before we start the process we should check the repositories are up to date or not
when this command process completed then start installing Lamp
Step 1 - Install apache
open your vps terminal and type this cmd
Thats it, now check your apache is installed correctly or not open your browser and type your vps ip and its should display Its works
Step 2 Install mysql
For installing mysql open your vps terminal and type the following commands
During the installation, MySQL will ask you to set a root password give your password and hit enter.
finishing up by runing mysql setup script
The prompt will ask you for your current root password.
type it in.
"Enter current password for root (enter for none):
OK, successfully used password, moving on..."
the prompt will ask you if you want to change password go ahead and type No
its easiest just to say yes for all questions its looks like this
"By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Step Three—Install PHP
Open terminal and type the following command
after you answer yes double time the php will install it self
finishing up by installing php
Congrats your LAMP is now installed.
checking result of php
Well Lamp installed now we will create a small php info page
to setup this first create a new file
add the following line in it
then save it and exit you can save it by pressing Ctrl+O
at last now we will move to install smf on vps
we should also install send mail as it will also send password reset link to forum users
for installing this type the following command in terminal
Step 2 Create a Database
we will now make SMF database and SMF user with password "password" dont forget to change it in your own value
Set Correct Directory And File Permissions
open terminal and type the following commands
for dirs in attachments avatars cache Packages Packages/installed.list Smileys Themes agreement.txt Settings.php Settings_bak.php; do
now you are done from give your ip adress in your browser like this myipadress/install.php
now you will smf configuration page and fill it with correct details
for database details enter the following details except your password which you changed
now when you finish smf configuration then dont forget to delete your install.php by typing the following command
[/code]
hi guys today i will show you how to host Smf on Debian7 and unbuntu
first of all you will need to install LAMP if you dont have already on your vps so first i will show you how to install LAMP if you dont have
Before we start the process we should check the repositories are up to date or not
Code:
apt-get update
Step 1 - Install apache
open your vps terminal and type this cmd
Code:
apt-get install apache2
Step 2 Install mysql
For installing mysql open your vps terminal and type the following commands
Code:
apt-get install mysql-server
finishing up by runing mysql setup script
Code:
mysql-secure_installation
type it in.
"Enter current password for root (enter for none):
OK, successfully used password, moving on..."
the prompt will ask you if you want to change password go ahead and type No
its easiest just to say yes for all questions its looks like this
"By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Code:
Remove anonymous users? [Y/n] y
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] y
... Success!
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y
... Success!
Cleaning up..."
once you done from here then we can move to our next step of installing PHP
Step Three—Install PHP
Open terminal and type the following command
Code:
apt-get install php5 php-pear php5-mysql
finishing up by installing php
Code:
service apache2 restart
checking result of php
Well Lamp installed now we will create a small php info page
to setup this first create a new file
Code:
nano /var/www/info.php
Code:
<?php
phpinfo();
?>"
at last now we will move to install smf on vps
we should also install send mail as it will also send password reset link to forum users
for installing this type the following command in terminal
Code:
apt-get -y install sendmail
Step 2 Create a Database
we will now make SMF database and SMF user with password "password" dont forget to change it in your own value
Code:
mysqladmin create SMF
Code:
mysql -Bse "create user 'SMF'@'localhost' identified by 'PassWord';
Code:
mysql -Bse "grant all privileges on \`SMF\`.* to 'SMF'@'localhost';"
Code:
mysqladmin flush-privileges"[code]
Install simple machine forum
we will download latest smf version which 2.0.11 in now days
open your terminal and type the following commands
[code]"rm -rf /var/www/*
Code:
cd /var/www
Code:
wget http://mirror.ord.simplemachines.org/downloads/smf_2-0-11_install.tar.gz
Code:
tar xvfz smf_2-0-11_install.tar.gz
Code:
rm -rf smf_2-0-11_install.tar.gz"
open terminal and type the following commands
Code:
"cd /var/www
Code:
chmod 777 $dirs; done"
now you will smf configuration page and fill it with correct details
for database details enter the following details except your password which you changed
Code:
"Server name: localhost
Username: SMF
Password: PassWord
Database name: SMF
Table prefix: smf_"
Code:
"rm -rf /var/www/install.php
Can anybody specify me the reason why vim editor is preferred over nano editor? i like nano because its very easy and simplest editor
Hey Guys,
so I discovered that the people at 1and1.com are giving away free .info domains for a year, all you have to do to get them is to pay the ICANN fee ( 18 cents ONLY! )
which is pretty considerable imo, I tho, still can't buy from them due to card issues but if you can, then why not avail this offer?
Offer Link : https://www.1and1.com/free-domain-name
so I discovered that the people at 1and1.com are giving away free .info domains for a year, all you have to do to get them is to pay the ICANN fee ( 18 cents ONLY! )
which is pretty considerable imo, I tho, still can't buy from them due to card issues but if you can, then why not avail this offer?

Offer Link : https://www.1and1.com/free-domain-name
Good afternoon everyone 
let me ask you guys which is better web server for Ghost blog Apache or Nginx with the reason
?
many tutorial out there tell that ghost(node.js) is suite with Nginx, but i already install apache on my server.
let me know your opinion...
thx

let me ask you guys which is better web server for Ghost blog Apache or Nginx with the reason

many tutorial out there tell that ghost(node.js) is suite with Nginx, but i already install apache on my server.
let me know your opinion...
thx

Hello everyone!
I am a new member of this great community, i have a feeling that this will be one of the best post2host forums out there and it's already shocking me that it has that many sponsors with only ~400 members at the time of writing this thread. I'll try to help this community to grow up as much as i can can, wish me luck! Thank you.
-DGLcsGaming.
I am a new member of this great community, i have a feeling that this will be one of the best post2host forums out there and it's already shocking me that it has that many sponsors with only ~400 members at the time of writing this thread. I'll try to help this community to grow up as much as i can can, wish me luck! Thank you.
-DGLcsGaming.
Hello everyone I'm new here. I believe Wednesday was my first day here.
Could you plz setup the remote desktop from VPS control panel ? Since I don't have access to the panel I can't set it up I think.
Hello,
Today I received my VPS 10 server but I can't login to Virtualizor panel, because it says that bad password.
I tried to request password reminder by email but I haven't received anything.
Please help what should I do :huh:
Today I received my VPS 10 server but I can't login to Virtualizor panel, because it says that bad password.
I tried to request password reminder by email but I haven't received anything.
Please help what should I do :huh:

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 315 online users. » 0 Member(s) | 313 Guest(s) Bing, Google |
Latest Threads |
LLHOST — VPS hosting for ...
Forum: Value VPS Providers Last Post: LLHOST Yesterday, 12:10 PM » Replies: 0 » Views: 19 |
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers Last Post: LLHOST 04-22-2025, 11:04 AM » Replies: 0 » Views: 108 |
LLHOST: VPS in the Nether...
Forum: Others Last Post: LLHOST 04-15-2025, 07:32 PM » Replies: 0 » Views: 180 |
Hello all!
Forum: Meet & Greet! Last Post: perry 03-26-2025, 11:28 AM » Replies: 1 » Views: 254 |
Buy DemoTiger Videos on c...
Forum: Others Last Post: DewlanceHosting 03-25-2025, 02:07 PM » Replies: 5 » Views: 3,323 |
VisualWebTechnologies | 7...
Forum: Others Last Post: visualwebtechnologies 03-11-2025, 02:58 AM » Replies: 0 » Views: 203 |
Post2Host.com domain on a...
Forum: Others Last Post: Variable 03-10-2025, 04:04 PM » Replies: 0 » Views: 162 |
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers Last Post: HostNamaste 03-05-2025, 12:15 PM » Replies: 0 » Views: 370 |
Create Unlimited Virtual ...
Forum: Hardware & Technology Last Post: bestadvisor 03-01-2025, 09:47 AM » Replies: 0 » Views: 570 |
VisualWeb offers cPanel H...
Forum: Others Last Post: visualwebtechnologies 01-23-2025, 03:38 AM » Replies: 0 » Views: 264 |