Posts mit dem Label hours werden angezeigt. Alle Posts anzeigen
Posts mit dem Label hours werden angezeigt. Alle Posts anzeigen

Freitag, 26. Februar 2016

How to Use Godaddy for Web HostingIn Feburary 2016 26,

In Feburary 2016 26,
Determine what you plan to use your Web site for. GoDaddy hosts small business and personal Web sites. Visit the GoDaddy 'Hosting Plans' Web page to view your options (see Resources below).
Decide how much storage and transfer capacity you need as well as how much you're willing to pay. Your storage and transfer needs will be dictated by how large your Web site will be and how much traffic you expect to get. You will also need to decide whether you will be using a Linux or Windows platform for your site.
Set Up a Hosting Account
Visit the GoDaddy home page (see Resources below). Give yourself a little more than two hours to set up the basics of your Web site. Simple details like password activations can take about 30 minutes to complete.
Drag the mouse over the section in green that reads 'Hosting and Servers' to begin the process of setting up your hosting account. Click on 'My Hosting Account.'
Select the highlighted option in blue called 'Setup New Account.' This will send you to the section to begin your Web site registration process.
Type in the requested information, such as address, phone number and name. If you are starting a small business, be sure to enter the applicable information.
Click on 'Create a New Account' to submit the information.
Select a package by checking the applicable box with your mouse. Finish up the process by clicking 'Checkout.' Then enter payment information.
Use Your Web Site
Create and upload your Web site. The software you use to create and upload your site will depend to some extent on the platform you chose. For example, if you choose a Windows platform, you can use FrontPage software to create and upload a site.
Access the Metropolis Hosting Community offered by GoDaddy to learn about, find or install third-party applications for your site.
Investigate some of the features GoDaddy offers in addition to standard features such as email addresses. For example, GoDaddy offers free blogging tools.
In Feburary 2016 26,

Sonntag, 7. Februar 2016

How to Set Up a CNAME With GoDaddyIn Feburary 2016 07,

In Feburary 2016 07,
Log in to the GoDaddy site and launch the domain editor. Locate your domain and select the option to edit the DNS Zone File. Choose 'Add Record' and select a 'CNAME (Alias)' record. Type the name of the subdomain in the Host field, and type the IP address of the subdomain, or '@' if it's the same as the primary domain, in the Points To field. Accept the default TTL value and select 'Finish.' It can take up to 24 hours for the CNAME to propagate to all DNS servers around the world.
Create a Virtual Host
When you add a CNAME to a domain, it means that users can address traffic to that subdomain and that DNS servers will route the traffic to your Web server. However, you must tell the Web server what to do with the traffic that arrives for the subdomain, or it will resolve the default location for traffic with an unknown destination. You can do this by creating a virtual host for the subdomain. For example, in Apache, use the ServerName directive to provide the subdomain name and the DocumentRoot directive to provide the location of the code for the subdomain:
ServerName mail.example.com
DocumentRoot /var/www/example-mail/html
ErrorLog /var/log/apache2/exm-error.log
CustomLog /var/log/apache2/exm-access.log combined
In Feburary 2016 07,