arrow_upward

Posted by: Amresh - 08-08-2018, 03:51 AM - Forum: General - Replies (14)
Hi GUys , plz anybody tell me that if i get a vps then for what type of purposes i can use it...
LIke...
*Torrenting
*SEEDBOX
*WEB Hosting
*And Other
plz tell me guys...
Posted by: Amresh - 08-08-2018, 03:42 AM - Forum: Free VPS Providers - Replies (8)
[Image: fshost-icon-light.svg]
What Is FsHost?
>>Host COD1, Cod2, Cod4, Battalion 1944, MOHAA, CSGO Servers For Free!
You can host FREE CoD1, CoD2, CoD4, Battalion 1944, MOHAA, and CSGO Servers
If you're new to FSHOST, you will first need to register then login. From there you can request and host your own free game server. 

Get started by using the button below or the main menu. We're always updating the features of this website and service so please take a look around. 

If you want to suggest any features or see something not quite right, please let us know on Discord or via our contact page!


Posted by: deanhills - 08-07-2018, 02:57 PM - Forum: Tutorials - Replies (2)
I'm hoping to perfect the shortest number of steps for beginner users with a Windows and cPanel background, from receiving the password for a VPS to installing a WordPress blog.

Any one game to figure out the shortest, easiest and safest way?  Idea being to help first time users of Linux coming from an environment of Windows and cPanel to set up a WordPress Website with the shortest number of fool-proof and safe steps. 

_______________________________________________________________________________________

Here are my steps for a VPS that has CentOS 7.0 minimal installation on it:

Step 1: Create SSH Client access with PuTTEY
https://www.putty.org/

Step 2: Fire up PuTTEY Put IP in and make sure Port is 22 (unless your provider has given you a different port) - user is always root and the password given to you.

Step 3: For security change password to a very strong one (you can generate the new password at https://passwordsgenerator.net/)

Code:
passwd

Exit PuTTEY after password change and test the new password (always exit when you're not using PuTTEY):

Code:
exit

Step 4: Create DNS for the domain you're going to use with the VPS
You can create name servers at Cloudflare - but I prefer to create my own private name servers at my Domain Registrars.  Here is how you create your own name servers with one IP at Namecheap.  Don't forget to add those newly created name servers to the domain after you have created them.  You have to create the name servers and then add them to the domain you will be using of the same name.

https://www.namecheap.com/support/knowle...-my-domain

Here is a video of how to do it at NameSilo.com - much more user-friendly steps than NameCheap:



Wait for the DNS of the domain to propagate.  It can take anything from a couple or more minutes to 72 hours. 

Step 5:  Create a Web Panel that you can use in Windows - I choose VestaCP because it uses little resources and has great speed

Fire up PuTTEY first - then use the following VestaCP install commands.

Code:
curl -O http://vestacp.com/pub/vst-install.sh

Code:
bash vst-install.sh --nginx yes --apache yes --phpfpm no --named yes --remi yes --vsftpd no --proftpd no --iptables yes --fail2ban yes --quota no --exim no --dovecot no --spamassassin no --clamav no --softaculous yes --mysql yes --postgresql no --hostname yourdomain.com --email [email protected] --password Yourpassword


Note:  For the above bash command replace yourdomain.com with the domain you're going to use.  Replace [email protected] with a valid address for VestaCP communications and yourpassword with the password you're going to use.  Make the password a complicated random one as strong as the one you created earlier for your root - but definitely not the same one. Create a system or Namepad file for keeping all of the passwords of your VPS in a secure location.

Also note: For security I excluded e-mail and FTP in the bash installation command - you can use SFTP with FTP manager like FileZilla instead of setting it up with VestaCP.  And use a third party e-mail manager like Zoho for e-mails.  VestaCP comes with Fail2ban that is already set up for you after you have installed the panel.  If you want to include FTP and e-mails you can generate your own bash command at https://vestacp.com/install/  (scroll down to advanced install settings)

Step 6:  Set up VestaCP
VestaCP will give you login details at the end of the installation - fire up VestaCP in Windows.

First thing to do is to add the name servers you created for your domain to the "Package".  Package link can be found in the top index links. 

Then click on WEB and on your domain - if you hover your mouse over right top of window the edit link appears.  Change name server to the one you created.  Save it.

Then click on the DNS link and check the name servers are the correct ones.

Step 7:  Create a Database with VestaCP

Easy to do - just click on the Database link in VestaCP .  You'll see a green PLUS sign on the left side of the Window - click on that and then complete the fields.  Make a record of the database name, user name and password for use later when you start your WordPress site.  Note that VestaCP includes _admin to the names - you need to copy those names as they appear in VestaCP in their complete form.

Step 8:  Create WordPress installation

You can create WordPress from the command line using your PuTTEY SSH client:

Code:
cd /home/admin/web/yourdomain.com/public_html


Code:
wget http://wordpress.org/latest.tar.gz


Code:
tar --strip-components=1 -xvf latest.tar.gz


Code:
rm latest.tar.gz

Code:
chown admin -R *

You should now be able to get the WP set-up installation page through windows by typing yourdomain.com in the index line.  Just follow the steps. 

Note: Be careful when it says to create a sub-directory "wp" - to delete "wp" so it's a blank field - otherwise your WordPress site will go to the sub-domain yourdomain.com/wp instead of straight to your domain yourdomain.com.

Also note that if you have a recent cache in your browser of the domain at a different IP you need to clear all history first and preferably flush the DNS - or you can use a new/different browser that is unfamiliar with the domain history. 

Step 9:  Optional - All-in-one WP Migration & Backup tool

If you want to move the contents of an existing WordPress site or copy a WordPress site you already have to the above installation all you need to do is load the plugin below in the original installation of where the site is:

https://wordpress.org/plugins/all-in-one-wp-migration/

Export the contents of the site in the origin by clicking the export link and saving it to a file directory in your computer. Then after installation of your WordPress at the new IP, add the WP Migration Tool plugin to the new WP Installation and then import the backup directly from your computer by clicking on the import link.  Note:  it's very important to remember the login and password of the original destination as when you access the backup it will be looking for that specific password - i.e. the ones that will be in the database of the imported WP site.  What I usually do is to start the new installation with the original name and password of the WP site I want to import into the new WP installation.  Also don't forget to save the permalinks TWICE after the contents have been imported.

Note that the above backup, clone and migration tool is for smaller sites.  For bigger sites you may want to look at more sophisticated backup tools like UpDraftPlus.

https://wordpress.org/plugins/updraftplus/
Posted by: Amresh - 08-07-2018, 08:03 AM - Forum: Scripting & Programming - Replies (5)
Hey anybody here who knows how to install peerflix server?
Link to git :  https://github.com/asapach/peerflix-server
Plz anyone tell me...
Posted by: Littlemaster - 08-06-2018, 04:32 PM - Forum: VPS Support - Replies (6)
Hello, my VPS 12 is down currently, please reboot it, no panel, it went down automatically. I just checked it and saw "This site can’t be reached"
Posted by: sagher - 08-04-2018, 06:40 AM - Forum: VPS Support - Replies (9)
Hi all .
whenever i try to put this command "apt-get update"
i got those errors.
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list:8 and /etc/apt/sources.list:17
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:7 and /etc/apt/sources.list:16
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:7 and /etc/apt/sources.list:16
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:7 and /etc/apt/sources.list:16
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list:5 and /etc/apt/sources.list:14
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list:13
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list:13
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list:13
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list:2 and /etc/apt/sources.list:11
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:1 and /etc/apt/sources.list:10
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:1 and /etc/apt/sources.list:10
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:1 and /etc/apt/sources.list:10
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list:2 and /etc/apt/sources.list:11
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:1 and /etc/apt/sources.list:10
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:1 and /etc/apt/sources.list:10
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:1 and /etc/apt/sources.list:10
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list:5 and /etc/apt/sources.list:14
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list:13
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list:13
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list:13
W: Target Sources (main/source/Sources) is configured multiple times in /etc/apt/sources.list:8 and /etc/apt/sources.list:17
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:7 and /etc/apt/sources.list:16
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:7 and /etc/apt/sources.list:16
W: Target Translations (main/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list:7 and /etc/apt/sources.list:16


anyone help me regarding this issue.
Posted by: harry_v - 08-04-2018, 02:41 AM - Forum: Others - No Replies
We are one of the leading Shared Hosting provider (Windows and Linux) serving 50000+  customers across the globe. We have been in Hosting industry since  2003. Following are the some of the striking features we offer to our  Shared Hosting customers:

10x Faster Shared Hosting on Optimized Servers
  • Unlimited Domains (Sites) In 1 Account
  • 10 GB Pure SSD Storage - Raid 10 Setup
  • 60 GB Monthly Bandwidth
  • 150 Email Accounts
  • Free Website Migration
  • Free Website Builder - 400+ templates
  • Anti-Spam Cloud Service (Optional)
  • Instant Account Activation
  • 30 Days Money Back Guarantee
  • Unlimited mySQL Databases PHP5 Support
  • Perl Support
At just 2.99/month

15% off Lifetime Discount on any shared hosting plan
Coupon Code: Welcome
Sign up

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

How are we different?
AccuWebHosting has established highly optimized Web Hosting platform for PHP  Hosting.  Instead of conventional LAMP environment, AccuWebHosting is utilizing PHP optimized Web Hosting Environment which includes:
  • CloudLinux OS - Reputable, Secure, and High Speed OS
  • LiteSpeed Web Server - #1 Commercial Web Server  7x Faster
  • 100 % SSD Drives - Pure SSD Storage Means Insanely Fast Website.
Customer Support

We are best known for our Excellent Technical support. Check out what our customers have to say about our services AccuWebHosting Reviews

Additionally,  we offer 30 days full money back guarantee on all shared hosting plans so that you can evaluate the performance and quality of web hosting services.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Payment Methods Available

Credit cards,Debit cards,PayPal,Bitcoins,Check,Money Order
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Questions? Custom plan need? We can help!

Talk to us on live chat | Submit a Sales Ticket | Send us a tweet
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
And don't miss a chance to earn $200 USD Signup Commission
Top paying affiliate program
Posted by: VPSVortex - 08-04-2018, 01:52 AM - Forum: Free VPS Providers - Replies (24)
Greetings,
As you all can tell I am new to the forum. I have requested to make a sponsorship with Post4VPS.com however they have not responded to my attempts to contact. Therefore I will be posting my offer here. I will be giving away 1 free vps servers from by VPSVortex from our node in Miami, FL. 

The VPS Specs are as follows:
  • vCPU Core: 2

  • RAM (MB): 2048MB (2GB)

  • SSD Space (GB): 25GB

  • Bandwidth (TB): 1TB (1000GB)

  • DDoS Protection: Yes

  • SWAP RAM (MB): 512MB (0.5GB)

  • OS Reinstall: 5 Limit

  • IPv4: 1

  • Select Your OS: Yes

  • Locations: Miami, FL
These specs are identical to our KVM-2 Plan found on our website.
Requirements for the VPS are as follows:
Quote:Name
Email
Address
Age
Reachable Phone #
Reason for VPS


The majority of the information above is in order to create an account on our system. Further details about the service will be exposed upon request. For more questions email me at [email protected] or [email protected] and we will be happy to help. In order to learn more about us visit our website at https://VPSVortex.com

Winner will be announced on this thread.
Regards
Posted by: deanhills - 08-02-2018, 11:23 PM - Forum: Tutorials - No Replies
I'm currently playing with an installation of myBB and found that a number of the plugins have been designed for php 7.0.  In addition I've also noticed cPanel is going to deprecate php 5.0 at end of this year, so thought to figure out a way to upgrade my VPS php from 5.6 to 7.0.  I'm using VestaCP to manage my VPS since it is a free panel and also light in resources.  VestaCP comes automatically loaded with php 5.6.  Php 5.6 has worked very well for me until my experimentation with myBB so thought to use my cheap VPS to experiment with the upgrade and to see how my WordPress sites respond.  So far none of the WordPress backups that have been created with php 5.6 have failed with php 7.0 after their imports.  Even though my backup plugin warned me it could happen.  Mission successfully accomplished so far!

This is how I upgraded my php from 5.6 to 7.0.  Note my VPS OS is CentOS 7.0 64 bit. 

Step 1:  Install VestaCP and REMI

When you install VestaCP make sure to use the Installation Script Generator at the URL below (Advanced Install Settings) and to select the REMI repo option. 
https://vestacp.com/install/
[Image: UtjLvA8.png]
Step 2:  Check the version of your php and then update REMI:
Code:
php - v

Code:
yum --enablerepo=remi update remi-release

Step 3: Stop Apache and remove php:

Code:
service httpd stop

Code:
yum -y remove php

Step 4: Install php 7.0:

Code:
yum --enablerepo=remi-php70 install php70-php php70-php-pear php70-php-bcmath php70-php-pecl-jsond-devel php70-php-mysqlnd php70-php-gd php70-php-common php70-php-fpm php70-php-intl php70-php-cli php70-php php70-php-xml php70-php-opcache php70-php-pecl-apcu php70-php-pecl-jsond php70-php-pdo php70-php-gmp php70-php-process php70-php-pecl-imagick php70-php-devel php70-php-mbstring

Step 5: Stop old php and start php 7.0:

Code:
service php-fpm stop


Code:
service php70-php-fpm start

Step 6: Remove the old symblink php and create a new one:

Code:
rm /usr/bin/php

Code:
ln -s /usr/bin/php70 /usr/bin/php

Step 7: Restart Apache:

Code:
service httpd restart

Step 8: Check the php version:

Code:
php -v

Posted by: vps-rdp - 08-02-2018, 08:29 PM - Forum: Cheap Providers - No Replies
Get Windows VPS (RDP) For Remote Desktop for 1 Month. I am also Selling Bulk Windows VPS. Get the fastest browsing RDP that is a virtual PC.

Our RDP Features:
Validity: 30 Days
Server : USA , UK , AUE , Singapore , Japan , Australia
RDP : YES
Can Run SEO Software: YES

Specification
RAM 1 to 8 GB
Space 25 -150 GB
Network 1 GBPs
Windows 2012 R2
Unlimited Bandwidth

Guarantee
We're providing Guaranteed VPS service. If any of our VPS gets down, we will instantly replace it.
Price 5$ , 10$ , 15$ , 20$
Check out My Fiverr Profile
https://www.fiverr.com/rdp_seller
Pages (306): 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,100
» Forum posts: 34,783

Full Statistics

Online Users
There are currently 724 online users.
» 0 Member(s) | 722 Guest(s)
Applebot, Bing

Latest Threads
⚡ EnjoyVPS.Com : 35+ Glob...
Forum: Others
Last Post: RIYAD
01-06-2026, 01:21 AM
» Replies: 0
» Views: 705
Get LLHOST Netherlands Fe...
Forum: Others
Last Post: LLHOST
09-29-2025, 03:02 AM
» Replies: 0
» Views: 1,031
Super Fast LLHOST Netherl...
Forum: Value VPS Providers
Last Post: LLHOST
09-16-2025, 05:01 AM
» Replies: 0
» Views: 740
Get LLHOST Netherlands Fe...
Forum: Cheap Providers
Last Post: LLHOST
09-08-2025, 01:33 PM
» Replies: 0
» Views: 897
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers
Last Post: DewlanceHosting
08-16-2025, 03:12 AM
» Replies: 0
» Views: 987
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
08-16-2025, 03:10 AM
» Replies: 8
» Views: 6,637
Budget Dedicated Servers ...
Forum: Others
Last Post: HostNamaste
08-13-2025, 04:54 AM
» Replies: 2
» Views: 2,046
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers
Last Post: bestadvisor
07-13-2025, 09:36 AM
» Replies: 0
» Views: 1,502
[Promo] 30% Discount – VP...
Forum: Cheap Providers
Last Post: LLHOST
07-11-2025, 12:56 PM
» Replies: 0
» Views: 1,040
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers
Last Post: RIYAD
07-02-2025, 03:02 AM
» Replies: 0
» Views: 2,358

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