Showing posts with label FTP. Show all posts
Showing posts with label FTP. Show all posts

Monday, August 31, 2015

How to Install Drupal On 1and1 Servers (23 Steps)


OVERVIEW: Before we get into any of the steps below, I am assuming that you are a web designer or programmer that has been looking for an open source content management platform, and decided to use Drupal. I am also assuming that you are hosting your website with 1and1 on a linux package. If both of these assumptions are correct, then proceed to step 2.
INTRO: Congratulations, you have chosen a really cool content management platform that keeps expanding and growing. I am still learning the system myself, but I wrote this article to help anyone who has run into the same install issues that I had when tring to load drupal onto my 1and1 server linux hosting package. I stress that you need to have a linux hosting package because you CAN NOT install drupal onto a 1and1 MS package. I have tried, and it does not work.
STEP 1: 1and1 Linux hosting package confirmation - Make sure that you have a 1and 1 linux hostig package. I recommend that you have at least a home package, but a business package will really be what you want to help expand the drupal system and to better manage your database. Check your 1and1 control panel settings to make sure you are set up correctly. You should have PHP support and a MySQL database option. If you are on the MS package, you will want to 'upgrade' your package to a Linux package. I had to do this with two of my accounts to get drupal to work.
STEP 2: Download Drupal files to your desktop - Go to the drupal.org site and download the most recent drupal version. At the time of my writing this article, the most recent version is 6.10. Download this to your desktop first so that we can easily work with the files. You will notice that you got a tar.gz file downloaded to your desktop. (link in resources below)
STEP 3: Expand Drupal Files - Now we are going to unzip or expand the files. Since this is a tar.gz file, and not a zip file, I recommend that you download and use a program called 7-zip (an open source file archive program) instead of winzip or other popular programs to expand the files. 7-Zip is a great tool, it is free, and it handles archived files really well. Download this program, then unarchive the drupal files to your desktop. (link in resources below)
Great, now you should have a new drupal folder on your desktop with all of the items fully expanded. If you did it correctly, you will see the following folders contained inside your drupal folder: 'includes', 'misc', 'modules', 'profiles', 'scripts', 'sites', 'themes', and other files below. Many directions will tell you to make changes at this point, but I want to urge you to follow my instructions now to help you visual and check in real-time the changes you are making.
STEP 4: FTP drupal files to your web server - Now take all of these files and FTP them to the root of your website. This would be the www folder or the main directory of your site. For the 1and1 server package, it would be the following www.yoursitename.com/ where you will see the '/' in your FTP client. I recommend that you drop the entire drupal folder into this directory to learn how to install the tool. Once you learn how to install the tool, you can later move all of the files out of the folder and drop them directly into your site's root structure. For this example, just call the folder 'drupal' - so for the purposes of this example and to help you install the program, you will be working with the following directory on your own server: 'www.yoursitenamehere/drupal'
STEP 5: Take a look at the drupal web install guide - The cool thing about drupal is that it has an install guide that you can access using a web browser. It helps you by giving you a checklist of things you need to correct, and it also allows you see that you have put the files onto your website server correctly. In this step, we are going to take a look at the web browser install tool, and proceed with configuring some files to get this to work correctly. If you followed my example, you can now open a web broswer and type in the following URL path to get to the installation of the drupal tool: www.yoursitenamehere/drupalIf you did as I specified, you should a screen that looks like the one attached. This will be the drupal online install guide, and it will immediately show us an error screen indicating that we need to configure our settings.
STEP 6: Disable 'register_globals' on 1and1 server - So as the error message says - we want to disable our 'register_globals' on our server. Doing this is very simple. For the 1and1 server package, to do this, we are going to need to create a file called php.ini and save it to the root structure of our drupal directory. Within this php.ini file we are going to place some code that disables the 'register_globals'. Now you may be wondering, how do I make a php.ini file? You can do it using dreamweaver, textpad, notepad, or any web editing tool you use. To keep this simple, I want you to do this using notepad.
STEP 7: Create a php.ini file - Open notepad or a basic text editor. Save this file to your desktop as php.ini (if it saves as a word file, that is fine, just change the name later to php.ini) copy and paste the following code into the file and save it to your desktop drupal folder:register_globals = false(see picture for reference) That is it!
STEP 8 FTP php.ini file to web server - Now take this file and FTP it to your web server in the root directory right into the drupal folder this means, drop it directly into the following location on your server - 'www.yoursitenamehere/drupal'. Once you do this, go back to your web brwser drupal install screen found here: www.yoursitenamehere/drupal, and refresh the screen. You should now see an error message that speaks to copying a setting.php file. It should look like the same message as the error image attached to this step. This is a common error message because as part of the drupal install process, we need to copy the setting.php file and change its permissions.
STEP 9: Create a 'settings.php' file - This is extremely easy to do and is part of the drupal install instructions that you can find on the drupal site. I will explain how to do it here however to keep you moving along smoothly. I do want to point out that you should use the FTP program 'Filezilla' for this step, as it allows you to change the CHMOD permissions on a file, where dreamweaver and other FTP programs do not. If you need to take a moment to install the free FTP program filezilla, please do that now using the link in the resource section below.
STEP 10: Create a 'settings.php' file - Going back to your local drupal desktop folder, find the folder called 'sites' and open it up. Inside you should see two more folders named 'all' and 'default'. Open up the folder named 'default'. You should now see a file named 'default.settings.php'. Simple copy the default.settings.php file resave it right into the 'default' folder along with the default.setting.php file. Since you can not have two files of the same name in the same folder, you are going to need to rename this new copied file as 'setting.php'. (see image for reference) and CHMOD it to 777, to make it readable (do this using filezilla if your FTP client does not allow permission changes)
STEP 11: FTP and CHMOD 777 'settings.php' file - Now we want to FTP this file over to your website server file directory into the 'default' folder in the 'sites' folder to go right along with the 'default.setting.php' file. So the path you will be using to FTP this file to your server if you are following the steps of this write-up is: www.yoursitenamehere/drupal/sites/defaultNow, I recommend that you use Filezilla to FTP this file, because we need to change the CHMOD (permissions) to 777. This makes this file readable and allows drupal to proceed with the installation on your server. Once you have connected to your web server using Filezilla, right click on the 'setting.php' file and change the 'file attributes' to 777. Then FTP this file to your server. I am assuming that you know how to use an FTP program, and if not, please see my link in the resources section to my article about how to use Filezilla.
STEP 12: Check drupal web install guide - Once you have uploaded this file to the server in the 'default' folder within the 'sites' folder of your websites root file directory, go back to the web browser drupal install view here: www.yoursitenamehere/drupal' and click refresh. If you did this install correctly, you should see a screen similar to the one attached to this step.
STEP 13: Increase PHP Memory - NOTE: please read the Drupal Database Configuration screen that you have in front of you now. There is a key element on here that we must address before we get into the actual database setup. In the yellow box, Drupal recommends that we increase our PHP mempory limit to 16M to help prevent errors. I HIGHLY recommend that at a minimum you increase the PHP memory to 16 MB, but it would not hurt to increase it to 32MB. To do this, we are going to go back to the 'php.ini' file that you created and add another line of code. Below the 'register_global' code you created, add the following:memory_limit = 36M (See image for example). Now FTP this new file back into your web file root folder and overwrite your old php.ini file and you should be done increasing the php memory. Go back to your drupal web broswer installation screen and refresh it, and you will now notice that the yellow box is gone, and we are left with the database configuration fields. (see image).
Excellent job so far! We are now at the fun and easy task of setting up a 1and1 MySQL database, and tieing it to the drupal program that we are installing. If you do not understand anything about MySQL databases, do not worry! This is easy to set up using the 1and1 control panel and we only have to change a few items in the drupal code to get everything to synch up. So lets get started creating our 1and1 database!
STEP 14: Create a 1and1 database for your account - Now we want to create a database in our 1and 1 control panel. Log into your 1and1 account using the customer login, and click on the MyAQL administration toolbar in the control panel. See image for reference.
STEP 15: Create a new database - Within the 1and1 MySQL admin tool, there is a button that says 'New Database'. Click this to get a screen that says MySQL Database Setup. You will be asked to give your database a name. Call it Drupal for now, select the version of MySQL to be 5.0, and then click 'setup'. You will get another screen that shows you your user name, password, host name, etc. Just click Finish. In about 30 minutes, you will have a new 1and1 database setup. When you have done all of these steps, and roughly 30 mintues have passed, you should see that your new database was created and you will also see that you have the following information for your new database:Database name: db#########Host name: db###.perfora.netUser name: dbo#########Password:
****
STEP 16a: Add the database info to your 'settings.php' file - There are actually two ways to do this step. Option A shown here is to use the drupal web install tool to enter in your database info. Option B outilined in the next step is the manual way to do this. I actually prefer to do the manual method in Option B, but you can do this either way. Here is option A: using the drupal web install guide at www.yoursitenamehere/drupalSimply enter in your site database name, database username, and database password into the basic option. Then open up the advanced options and enter in your site database host name. Then click save and continue at the bottom of the screen. (see image for reference)
STEP 16b: Add the database info to your 'settings.php' file - Here is option B: Manual processNow that you have created a database, and you have all the info needed for your database, we will need to manually add this info to the drupal 'settings.php' file that we created earlier and uploade to our web server. Doing this skips using the drupal web install guide. You might wonder why you want to do this. I have acutally had issues using the drupal web install guide during this step, so I do it manually, but try Option A if you are not comfortable doing this. To do Option B, simply open the 'settings.php' file again using the text editor, and change the following information:Search for $db_url =Change the line from this:$db_url = 'mysql://username:password@localhost/databasename';To this, using the info from step 15 above:$db_url = 'mysql://dbo#########:
****@db###.perfora.net/db#########';Now save this document and FTP it to your server again using Filezilla as CHMOD 777.
STEP 17: Drupal Final Site Configuration - Congratulations! You are now on the last step of your drupal install on a 1and1 server. If you did all of the steps above correctly, drupal will finalize the install, and you will see the attached screen when you go to the drupal web install guide at : www.yoursitenamehere/drupal Now, just type in the last requirements that it asks you for and click save and continue. It will now take you to your new drupal site and you will be logged in as the admin. Now you can set up your drupal site anyway you like. I will try to write some more articles about how to set up yoru drupal site, but there is a lot to do for this, so you you should probably read the drupal forums on the drupal.org site.
STEP 23: Finished.
VPS Hosting

Sunday, August 30, 2015

How to set up a webcam (hosted and using FTP)


PURCHASE A WEB CAM:I described that you could use a PnP (Plug and Play) webcam in my first article, but for this operation, you will probably want to consider a little better web cam. You can still use a PnP camera at first, but you will want to upgrade as time goes on. I would recommend the use of the $50 - $70 Logitech webcams for this operation.
INSTALL THE WEBCAM SOFTWARE:Once you have your camera, install the software that comes with it. READ the instructions for installing your webcam onto your local computer. Troubleshoot as needed for setup.
FTP DELIVERY SYSTEM OVERVIEW: In my basic webcam set up article, I discussed the use of a free hosting provider or the use of Yahoo, AOL, MSN, or SKYPE. However if you have your own webserver, there are two main ways to deliver your webcam content to your website and server:1) FTP (File Transfer Protocol) to your website and your webserver that you host with. We will discuss this option in this article. 2) Set up an in-house server that uses webcam software to stream your images. I am not going to discuss this option in this article.
DOWNLOAD WEBCAM FTP SOFTWARE:This method assumes that you know how to use an FTP program to publish your website already. There is a lot of free software out there that you can use to set up an FTP link to your hosting provider for your webcam. A few webcams come with free webcam software that you can also use. I recommened that you look into using Webcam32, (trial version, then purchase) TinCam (trial version and purchase) or ConquerCam (trial version and purchase). You can also do a Google search for other software programs available and free software available.Which ever one you decide to use, download it and install it on your computer. Set up your webcam as instructed in the directions of the software.
SET UP YOUR WEBCAM FTP ACCOUNT:Alright, so now we will set up the FTP information so that your images and video can get online! Depending on the software you downloaded, you may have a built-in web page builder or you will have to create a video wrapper on your web page. I will not explain that here, so you can look this up on Google. You will need to have a basic knowledge of html to understand how to do this. Build a test web page for this purpose on your site.
TEST THE CAMERA:Once you have set up your FTP account, you can now test the WebCam and see if it is saving data out to your FTP account and your test webpage. Congratulations if it is working correctly, if not, check your code on your HTML page, and also check the FTP information you provided to the software.
VPS Hosting

Saturday, August 29, 2015

How to Set Up Filezilla for Joomla!


Double-click on the FileZilla icon or select it from the start menu. FileZilla will start and display the local hard disk directory structure on the left side of the window.
Enter the domain name of your website or the IP address in the 'Host' field. Do not include the 'http://' part of the address, just the domain name. For example, 'mycoolsite.com' is a domain name and '192.168.2.1' is an Internet Protocol address. If your domain name hasn't been assigned yet, use the IP address provided by your hosting company.
Fill in the 'Username' field at the top of the screen with your FTP user name. Use the exact spelling and character case as the FTP user name issued by your hosting service provider.
Enter your FTP password in the 'Password' field at the top of the screen. Use the exact spelling and character case as the password issued by your hosting service provider.
Enter the FTP port number in the 'Port' field if your hosting provider uses a port other than 21. Most users will leave this field blank as 21 is the default port. Only enter a port number if your hosting provider uses a port other than 21.
Click on the 'Edit' menu, then click on 'Settings.' Select 'File Types' under 'Transfers' on the left side of the settings window. Click the 'Binary' radio button on the right side at the top of the window. This setting ensures that binary files such as archives and backup files transfer properly. If such files are accidentally treated as ASCII files, they may become corrupted during transfer. Having this set correctly is especially important for uploading Joomla! installation files, Joomla! extension packages and downloading backup files.
Click on the 'OK' button at the bottom of the settings window to save the settings. Click the 'Quick Connect' button to the right of the host, username, password and port fields previously entered. FileZilla will connect to your Joomla! website root directory on the server and display the file structure in the right side of the window.
Click on the 'File' menu, then click on 'Copy Current Connection to the Site Manager.' This saves your settings and allows you to select them the next time you use FileZilla from the Site Manager. Just click 'File' then 'Site Manager' or press 'Ctrl - S.'
VPS Hosting

Friday, August 28, 2015

How to Install Magento on 1And1 VPS (16 Steps)


Log into your 1and1 control panel according to the instructions you received when you set up your VPS account. Click 'Domains' in the control panel to make sure the domain you want to use with Magento is properly set up on your VPS account. Change the nameservers in your domain registration account to match your VPS nameservers, if necessary, before adding your domain to the list of domains you host on your server.
Click the 'Server administration' icon in the control panel menu. Wait a few seconds for the administration icons to appear. Click the 'Server access data' icon to obtain the log-in information for your Plesk and Virtuozzo server control panels as well as your SSH log-in.
Log in to your Virtuozzo control panel and click the 'System services' icon. Click the 'PSA' and 'mysqlid' icons and start the respective services. Enable auto-start when starting both services.
Set up your domain on your Plesk control panel if you have not done so already. Log in to your Plesk control panel and click the 'Domains' icon followed by the 'Create domain' prompt. Wait a second for the text fields to appear and enter your domain information according to the instructions. Create your FTP account in the specified text field and click 'Next.'
Wait for the next page to appear. Uncheck the 'PHP safe_mode' check box and click 'Finish.'
Download the latest version of Magento from the download page. Choose the Community Edition page for the free version or the Enterprise or Professional Edition page if you have purchased one of the paid Magento packages. Enter your user name and password in the proper fields of the log-in page to access your Enterprise or Professional account.
Uncompress the '.tar' archive containing the Magento files by right-clicking it if you are using a Mac computer or by opening your archiving software and choosing the name and location of your '.tar' file if you are using Windows.
Launch your FTP client. Enter your domain, username and password in the appropriate fields and click the server connection button or prompt. Choose the folder into which you have uncompressed your Magento files as the local folder and the directory into which you want to install Magento as your remote folder.
Drag the files from the local folder into the remote folder and wait about five minutes for the transfer to complete.
Type your domain address, including a slash and the name of the directory into which you installed Magento, if necessary, into your browser text window. Proceed with the on-screen installation procedure if you do not see an error message. Complete the remaining steps if you see an error message stating you have an invalid PHP version.
Connect to your server with SSH through the 1and1 control panel or with an SSH client. Use your root user name and password as provided in Step 2.
Type the following command at the first SSH prompt you see after entering your information. Omit the quotation marks and the period at the end: 'wget -q -O - http://www.atomicorp.com/installers/atomic.sh |sh.'
Type 'yum update' without the quotes as soon as the next prompt appears. Choose 'No' when you are asked whether you want to install the updates.
Type the following commands and select 'Yes' after each subsequent prompt appears:
yum update php
yum update mcrypt
yum update mhash
yum update php-mcrypt
yum update php-mhash
Restart Apache by typing ' /etc/init.d/httpd restart' without the quotation marks as soon as the last 'yum update' is finished.
Type the full domain address for your Magento installation in your browser text window. Follow the on-screen installation prompts. Repeat Steps 11 to 15 if you still see an error message.
VPS Hosting

Thursday, August 27, 2015

How to Start a Photography Website (7 Steps)


Decide upon the reason for starting a photography website. Evaluate its mission (e.g. to teach about photography, promote your services as a photographer, share your art with the world)
Decide upon a domain name and visit networksolutions.com to check its availability. Purchase the domain name. The cost is about forty dollars a year. Choose a web hosting company by assessing the following: amount of web space for content, and advertisements, FTP access needs (this determines whether you can upload your website or use a hosting company's website builder), and reliability and speed. Look for an uptime (time website is live) of 99.5%, according to web designer Hiro Kizuka. Start by visiting web hosting websites such as Yola.com, Justhost.com, and Webhostingpad.com.
Decide on the content and make a blueprint of your pages and content (e.g. 'About the Photographer,' 'Work,' etc.)
Build your website through companies such as Webs.com or Microsoft Frontpage. Pay particular attention to the 'look' of your website.
Add photos to your site. Make sure you are adding it to the appropriate page.
Create a photo blog to promote and write about your photos. Download Wordpress for free and begin to develop your blogs.
Upload your website using the file manager utility provided by your web hosting company. FTP can be quite sophisticated. For file manager, look under the Control Panel of your web hosting account. Scroll down to the document root directory. It should read public_html. Click on the small folder image located in front of the directory name. Click on the upload files folder. This will allow you to upload files from your system.
VPS Hosting

Wednesday, August 26, 2015

How to Remove a Parked Domain (4 Steps)


Upload a website to the domain's hosting account. The parked domain page may disappear as soon as the owner's own information is added to the domain.
Delete the parked domain page on the server. Log in to the domain's hosting account and physically delete the parked page that was provided by the web host. Access the list of files by using an FTP program, such as one provided to you by the web host, or a free one that must be downloaded, such as FileZilla. Navigate to the 'index.html' file, right-click and choose to 'Delete.' This step is often necessary if the server is automatically set to run an HTML page over other extension types. In this case, even uploading a new 'Index' page with a PHP extension will not override the parked page until it has been deleted.
Change the parked domain's settings in the domain control panel. Log in and choose to turn off the domain parking. The action will vary depending on the domain provider. Navigate to a 'Manage Domains' section and click a button to 'Remove Domain Parking' or to 'Activate Domain.'
Choose to forward the domain name to another website and domain. Forwarding or masking will activate the domain instead of placing it in parked mode. Log in to the 'Manage Domains' menu and select the option to 'Forward.' Enter the domain you would like to forward it to and save.
VPS Hosting

Tuesday, August 25, 2015

How To Configure FileZilla To Work with a Proxy Server


Open FileZilla, click on the 'Edit' menu and then click 'Settings.'
Click on the plus symbol next to the 'Connection' section in the left side of the window.
Click on the 'FTP Proxy Settings' section and enter the IP address, port, username and password of your proxy server.
Click 'OK' to apply the settings and exit the Settings window. All future connections through FileZilla will use the proxy server you designated until you change the settings and erase the proxy server information.
VPS Hosting

Monday, August 24, 2015

How to Change Your Domain Hosting


Research alternative Web hosting companies to find a service offering the features you need for your website at the best price.
Open an account with a new Web hosting company.
Log into your account with your current Web host.
Download all of your files from the host's server using the backup tool offered in the Web host's control panel or an FTP client application. Be sure to download all of your files. This includes any HTML files, picture files, audio files, flash files, INC files, CSS files, and so forth.
Back up your blog and Web forum database (if applicable) using a MySQL administration tool such as phpMyAdmin.
Log into your account with your new Web hosting company.
Obtain the DNS server information for the new Web hosting company. You will need this information later to update your DNS records to point to this new Web host server.
Upload all of the files for your website (downloaded in Step 4) to the new host's server.
Install the backup copy of your blog and forum database (created in Step 5) to the new host's server using their MySQL administration tool.
Log into your account with your original Web hosting company. Navigate to the Domain Name manager tool offered in the host's control panel. Edit your DNS records to reflect the server name associated with your new Web host. Submit the update. It can take up to 24 hours for the DNS records update to take effect globally. During this time your website will go off-line.
Visit your website. Check everything out to make sure all your Web pages have migrated successfully, the design elements of the site are still in tact, the website forum and blog are functioning properly, and so forth. Only after you're certain everything with your website is as it's supposed to be should you move on to the next step because you have mistakenly neglected to backup a stray file or two.
Cancel your account with your Web hosting company.
VPS Hosting

Saturday, August 22, 2015

How to Add Files Folders to an FTP Site


Right-click 'Start' and click 'Explore.' The Windows Explorer window opens.
Type 'ftp: //myftpserveraddress/' in the address bar on the top left of Windows Explorer, replacing the dummy address with the actual FTP address, and press 'Enter.' The 'Log On As' security box appears.
Type in your FTP user name and password, and then click 'Log On.' You should have access to your FTP files and folders on your FTP site. Windows Explorer will display the hosted files and folders on the right pane of Windows Explorer.
Move to the left pane of Windows Explorer. Browse your computer, locate your files and folders, and drag them to the right pane of Windows Explorer. This will upload your files and folders to your hosting site.
VPS Hosting

How to Set Up OpenCart in Go Daddy (10 Steps)


Download OpenCart from its Google Code site.
Extract the Install folder from the downloaded ZIP file using WinRAR or WinZip.
Upload the unzipped Install folder to your Go Daddy host directory using an FTP application such as FileZilla or CyberDuck.
Select 'Web Hosting' from the Products section of your Go Daddy Account Manager. Under Databases, select the MySQL database icon, and click 'Create Database.' Enter the desired database name, and press 'Create.'
Assign a user to the newly created database. Make sure that the username and password are different from your root username and password.
VPS Hosting

How to set up ftp filezilla for GoDaddy hosting account


Open the FileZilla program. Go to File > Site Manager
Enter in the Space for the following:
Host: Your domain name. IE: ehow.com Port: 21
Server type: FTP
Logontype: normal
User: This is the username that appears when you enter into your hosting/domain settings. May not be the login name used to sign on to your godaddy account.
If you entered in everything correctly, you should be connected without a problem. If you'd like additional help or you are using another FTP client program, then try visiting the Godaddy FTP information page. Here is the link: https://www.godaddy.com/gdshop/ftpinfo.asp
Good luck!
VPS Hosting

How to Remove the Error Log From Plesk


Log into Plesk. Scroll down and left click on the SSH Terminal. This will open the terminal in the browser window. Enter your FTP password and click OK.
Type in 'cd /usr/local/psa/admin/logs' then 'dir' then locate the file name of the error log and write it down. It will be slightly different for each version of Plesk.
Type 'rm filename.txt,' but replace filename.txt with the name of the error log. This will remove the error log from the server.
VPS Hosting

Friday, August 21, 2015

How to Buy Space on a Server


Learn what you should expect to pay. Different websites have different needs. High-volume sites such as Facebook require tens of millions of dollars each year to function, and a successful e-commerce site might pay $5,000 annually. In contrast, the server needs of a typical website are so relatively small that $100 or less per year is reasonable and common. To discover more about reasonable server costs for your website in particular, call or email business owners operating in an industry or market similar to yours and ask how much they pay.
Determine necessary features. Even the most basic web hosting packages offer a large collection of features, but not all may provide the features specifically required by your website. Do you need a Linux or Windows operating system? What about core functions, such as the ability to host domains and sub-domains, email and FTP accounts, and relational databases? In terms of programming needs, do you require CGI, PHP, Perl, Ruby on Rails, Python or JSP? How about the ability to simply create guestbooks, forums, chatrooms, password-protected directories or email forms? If you expect to sell products online, shopping cart software and secure server technology must also be considered. Create a spreadsheet and list all of the features that your web server must provide.
Read customer reviews. Setting up space on a web server is quick and simple, but changing to another is time-consuming and often difficult. Avoid this possibility by reading reviews provided by current and former customers on sites such as webhostingreviews.com. These sites provide real-world insight into a hosting provider's up-time and reliability, server and connection speed, technical support and knowledge, customer service, billing practices, and their overall ability to deliver value.
Buy server space. Purchasing your web server space is the easiest part of the process. Visit your selected provider's website, find the plan you wish to buy and begin your order. After providing the name of your website, you will be asked to provide your contact information and payment details. In most cases you can also select your payment term: monthly, yearly, or multi-yearly (Many hosting providers offer discounts for services paid in advance). After submitting payment, you will receive a confirmation email from your provider. Your server space will generally be available for use within an hour after purchase.
VPS Hosting