In Feburary 2016 27,
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.
In Feburary 2016 27,
Posts mit dem Label HTML werden angezeigt. Alle Posts anzeigen
Posts mit dem Label HTML werden angezeigt. Alle Posts anzeigen
Samstag, 27. Februar 2016
How to Create a Comcast Web PageIn Feburary 2016 27,
In Feburary 2016 27,
Go to Publish.comcast.net/splash and log into the system with your Comcast username and password. (This is assigned when you first register for the service.) If you log into your Comcast email account first, you may be asked to log in once more to verify your identity. This will bring up your 'Personal Web Pages' dashboard.
Click the 'Create & Edit Pages' tab. Your default web page (the home page) will show. Click 'Default Page' to create and edit your home page. There is an HTML editor on the page where you can write your website code (see 'Resources' for HTML help).
Choose the option to create a new page next. (This is optional.) Type in the name or title of your new web page. Repeat this for each additional page that you want to appear on your site.
Click 'Change Site Theme' to select the background and format for your site. Comcast calls this the 'Look & Feel.' Choose the theme that you like, preferably one that goes with your site's topic, and click 'Update Theme.'
Select 'Upload & Manage Photos' to create a photo gallery where you can store your photos. Click 'Upload Photos' to browse for the images that you want on your site. You can add these photos to your web page by typing the image address (for example ) into the HTML edit box under 'Create a New Page' or 'My Pages.'
Choose widgets, which are optional tools that you can add to your site, by clicking the 'Select & Configure Widgets' section. You can add polls, calendars, a guest book and even a weather reporting widget to your Comcast page.
Manage and upload additional files that you want to use on your web page by selecting the 'View & Manage Files' tab.
Click the 'Home' tab when you're finished editing your new Comcast web page or pages. Select 'View My Site' on the main menu.
In Feburary 2016 27,
Go to Publish.comcast.net/splash and log into the system with your Comcast username and password. (This is assigned when you first register for the service.) If you log into your Comcast email account first, you may be asked to log in once more to verify your identity. This will bring up your 'Personal Web Pages' dashboard.
Click the 'Create & Edit Pages' tab. Your default web page (the home page) will show. Click 'Default Page' to create and edit your home page. There is an HTML editor on the page where you can write your website code (see 'Resources' for HTML help).
Choose the option to create a new page next. (This is optional.) Type in the name or title of your new web page. Repeat this for each additional page that you want to appear on your site.
Click 'Change Site Theme' to select the background and format for your site. Comcast calls this the 'Look & Feel.' Choose the theme that you like, preferably one that goes with your site's topic, and click 'Update Theme.'
Select 'Upload & Manage Photos' to create a photo gallery where you can store your photos. Click 'Upload Photos' to browse for the images that you want on your site. You can add these photos to your web page by typing the image address (for example ) into the HTML edit box under 'Create a New Page' or 'My Pages.'
Choose widgets, which are optional tools that you can add to your site, by clicking the 'Select & Configure Widgets' section. You can add polls, calendars, a guest book and even a weather reporting widget to your Comcast page.
Manage and upload additional files that you want to use on your web page by selecting the 'View & Manage Files' tab.
Click the 'Home' tab when you're finished editing your new Comcast web page or pages. Select 'View My Site' on the main menu.
In Feburary 2016 27,
Mittwoch, 24. Februar 2016
How to Use a GoDaddy Form MailerIn Feburary 2016 24,
In Feburary 2016 24,
Set the e-mail address for the GoDaddy form mailer within your account. Log into your Account Manager. Under “Products” and click “Web Hosting.” Click “Launch” beside the hosting account you wish to use for your form mailer.
Click “Form Mail” under the “Content” section. Enter the e-mail address where you want submitted forms to be sent under “Forms Email Address.” Click “Continue” and “Update” to verify the e-mail address.
In your HTML file where you want the form to appear, enter this code:<form action='/gdform.php' method='post'>
<input type='hidden' name='subject' value='New E-Mail Subscriber' />
<input type='hidden' name='redirect' value='http://www.yoursite.com/thanks.html" />
<p>First Name:<input type='text' name='FirstName' /></p>
<p>Last Name:<input type='text' name='LastName' /></p>
<p>E-Mail:<input type='text' name='email' /></p>
<p>Your Message:<textarea name='comments' cols='50' rows='20'>
Tell us what you think of our new website!</textarea></p>
<input type='submit' name='submit' value='submit'/>
</form>You can edit this code to suit your needs. The above items are examples, including the subject, redirection page, first name, last name, e-mail and message.
Save your HTML file with the new code.
Upload the HTML file to your server using your preferred FTP client, just as you did with your initial website files.
Visit your website to see the new form. Test the form by filling in all of the fields and using a different e-mail address than the one you entered in Step 2. Once you submit the form, you should receive an e-mail to the e-mail address you entered in Step 2 with the submitted information.
In Feburary 2016 24,
Set the e-mail address for the GoDaddy form mailer within your account. Log into your Account Manager. Under “Products” and click “Web Hosting.” Click “Launch” beside the hosting account you wish to use for your form mailer.
Click “Form Mail” under the “Content” section. Enter the e-mail address where you want submitted forms to be sent under “Forms Email Address.” Click “Continue” and “Update” to verify the e-mail address.
In your HTML file where you want the form to appear, enter this code:<form action='/gdform.php' method='post'>
<input type='hidden' name='subject' value='New E-Mail Subscriber' />
<input type='hidden' name='redirect' value='http://www.yoursite.com/thanks.html" />
<p>First Name:<input type='text' name='FirstName' /></p>
<p>Last Name:<input type='text' name='LastName' /></p>
<p>E-Mail:<input type='text' name='email' /></p>
<p>Your Message:<textarea name='comments' cols='50' rows='20'>
Tell us what you think of our new website!</textarea></p>
<input type='submit' name='submit' value='submit'/>
</form>You can edit this code to suit your needs. The above items are examples, including the subject, redirection page, first name, last name, e-mail and message.
Save your HTML file with the new code.
Upload the HTML file to your server using your preferred FTP client, just as you did with your initial website files.
Visit your website to see the new form. Test the form by filling in all of the fields and using a different e-mail address than the one you entered in Step 2. Once you submit the form, you should receive an e-mail to the e-mail address you entered in Step 2 with the submitted information.
In Feburary 2016 24,
Mittwoch, 17. Februar 2016
How to Stream a WAVIn Feburary 2016 17,
In Feburary 2016 17,
Upload the WAV file to your own server. Although you might want to stream a file that already exists online somewhere, doing so could cause the person hosting the file to lose “bandwidth” (the amount of data the hosting provider allows him to use each month) every time someone plays it. Login to your 'File Manager' and upload the file. Double click on the name of your file within the 'File Manager' to open it in a new tab or window.
Add an 'embed' code to the HTML of the webpage on which you wish to stream your WAV file. Hold down the 'Ctrl' and 'C' keys at the same time and copy the following code onto your computer's clipboard by highlighting it.
hidden=true>
.
Paste the embed code into the HTML file for the page on which you plan to stream your wave. Double click on the file name—'index.html,' for example—in your 'File Manager' to open the HTML editor. Click your mouse wherever in the page—under the main 'Header' but before the 'Links' section, for example—and hold down the 'Ctrl' and 'V' keys at the same time to paste the embed code into the file.
Paste your WAV file's URL into the embed code. Navigate back to the tab where you opened your WAV file and click your mouse inside your browser's 'Address Bar.' Hold down the 'Ctrl' and 'C' keys at the same time to copy the file's URL and then tab back to your HTML file. Highlight the text file.wav and hold down the 'Ctrl' and 'V' keys at the same time to replace it with your file's URL.
Set whether or not you'd like your streaming WAV file to play automatically by adjusting the value after
'Autostart.' By default, the code you've inserted will begin playing the file as soon as someone visits your webpage. Replace 'true' with 'false' (all lowercase in any instance) to change this.
Save your HTML file and visit your webpage to listen to your streaming WAV file.
In Feburary 2016 17,
Upload the WAV file to your own server. Although you might want to stream a file that already exists online somewhere, doing so could cause the person hosting the file to lose “bandwidth” (the amount of data the hosting provider allows him to use each month) every time someone plays it. Login to your 'File Manager' and upload the file. Double click on the name of your file within the 'File Manager' to open it in a new tab or window.
Add an 'embed' code to the HTML of the webpage on which you wish to stream your WAV file. Hold down the 'Ctrl' and 'C' keys at the same time and copy the following code onto your computer's clipboard by highlighting it.
hidden=true>
.
Paste the embed code into the HTML file for the page on which you plan to stream your wave. Double click on the file name—'index.html,' for example—in your 'File Manager' to open the HTML editor. Click your mouse wherever in the page—under the main 'Header' but before the 'Links' section, for example—and hold down the 'Ctrl' and 'V' keys at the same time to paste the embed code into the file.
Paste your WAV file's URL into the embed code. Navigate back to the tab where you opened your WAV file and click your mouse inside your browser's 'Address Bar.' Hold down the 'Ctrl' and 'C' keys at the same time to copy the file's URL and then tab back to your HTML file. Highlight the text file.wav and hold down the 'Ctrl' and 'V' keys at the same time to replace it with your file's URL.
Set whether or not you'd like your streaming WAV file to play automatically by adjusting the value after
'Autostart.' By default, the code you've inserted will begin playing the file as soon as someone visits your webpage. Replace 'true' with 'false' (all lowercase in any instance) to change this.
Save your HTML file and visit your webpage to listen to your streaming WAV file.
In Feburary 2016 17,
Dienstag, 16. Februar 2016
How to Edit Your WebsiteIn Feburary 2016 16,
In Feburary 2016 16,
If your website is content driven, it may be based in a CMS such as WordPress or Joomla. If you are unsure of this, ask the person who designed your website. To initiate changes to content on a CMS-based website, you log in to your site's administrative panel. The administrative panel offers buttons for various types of content management. After you log in, you can add, delete or edit posts and articles on your site. You can also use a CMS to change some of the other parameters of your site. For example, if your site uses WordPress, you can install a different theme to change the layout of the site, and you can install plugins to change some aspects of your site's functionality.
Changing the Content and Functionality of Your Website
If you need to edit the structure or content of your website and your site does not use a CMS, you must edit the actual files on your site. Use caution if you are implementing HTML, PHP or JavaScript for the first time. If you are not confident in your Web-development skills, the changes you make directly to code could impair the functionality of your website. In such a case, a WYSIWYG editor can be useful. WYSIWYG editors display the changes to your website as you make them, and you drag elements around rather than alter the page code in a text editor.
Changing the Visual Style of Your Website
Most of the visual flair of your website is contained in one or more Cascading Style Sheets files. These files tell the HTML of your site where to position certain elements, how to color the background and what font to use. By editing the CSS files, you change the stylistic aspects of a page. If you rename a CSS file, you must make sure that the applicable HTML files link to the renamed version of the file. This link is in the HTML document's
section. With a WYSIWYG editor, you can confidently make these changes if you are not comfortable making them to your site's code.
Uploading Files to Your Website
After you make changes to your site's code, upload the files to your hosting server for the changes to take effect. If the changes are minor, you may want to download a copy of the file onto your local computer, edit that and then return it to the server. For example, if you want to change one line in your website's index.html file, download it from the server first to make sure that you are modifying the most current version of the file. After you make the changes, upload the file to the server, making sure to overwrite the old one. You accomplish these transfers using a File Transfer Protocol client. An FTP client connects your computer to a remote server for the exchange of files.
In Feburary 2016 16,
If your website is content driven, it may be based in a CMS such as WordPress or Joomla. If you are unsure of this, ask the person who designed your website. To initiate changes to content on a CMS-based website, you log in to your site's administrative panel. The administrative panel offers buttons for various types of content management. After you log in, you can add, delete or edit posts and articles on your site. You can also use a CMS to change some of the other parameters of your site. For example, if your site uses WordPress, you can install a different theme to change the layout of the site, and you can install plugins to change some aspects of your site's functionality.
Changing the Content and Functionality of Your Website
If you need to edit the structure or content of your website and your site does not use a CMS, you must edit the actual files on your site. Use caution if you are implementing HTML, PHP or JavaScript for the first time. If you are not confident in your Web-development skills, the changes you make directly to code could impair the functionality of your website. In such a case, a WYSIWYG editor can be useful. WYSIWYG editors display the changes to your website as you make them, and you drag elements around rather than alter the page code in a text editor.
Changing the Visual Style of Your Website
Most of the visual flair of your website is contained in one or more Cascading Style Sheets files. These files tell the HTML of your site where to position certain elements, how to color the background and what font to use. By editing the CSS files, you change the stylistic aspects of a page. If you rename a CSS file, you must make sure that the applicable HTML files link to the renamed version of the file. This link is in the HTML document's
section. With a WYSIWYG editor, you can confidently make these changes if you are not comfortable making them to your site's code.
Uploading Files to Your Website
After you make changes to your site's code, upload the files to your hosting server for the changes to take effect. If the changes are minor, you may want to download a copy of the file onto your local computer, edit that and then return it to the server. For example, if you want to change one line in your website's index.html file, download it from the server first to make sure that you are modifying the most current version of the file. After you make the changes, upload the file to the server, making sure to overwrite the old one. You accomplish these transfers using a File Transfer Protocol client. An FTP client connects your computer to a remote server for the exchange of files.
In Feburary 2016 16,
Labels:
actual,
aspects,
caution,
files,
functionality,
HTML,
implementing,
PHP,
plugins,
structure
Montag, 15. Februar 2016
How to Put a Song in the Background of a WebsiteIn Feburary 2016 15,
In Feburary 2016 15,
Log in to your web host by inputting your user name and password into the corresponding text boxes. Click on the 'Upload' button and select a song that you want to put in the background of your website. This will upload it to the root directory of your site. The root directory is the default where you are directed when you first sign into your web host.
Click on the HTML document in your web server in which you want to put the song into the background. Copy and paste the following HTML background music code into the place in your HTML code where you want the music player to appear: <embed name='Name of song'
src='URL to song'
loop='false'
hidden='false'
autostart='true'>
</embed>Replace the section that says “Name of Song” with the title of your song and the section that says “URL to Song” with the URL to your song.
Play the song more than once, when someone links to your page, by inputting the number of times that you want it to play into the loop value. Replace loop='false' with loop='1'or loop='2' as the proper HTML.
Hide the music player so that the user cannot stop the music. To do this, input “true” next to the hidden value. Replace hidden='false' with hidden='true' as the proper HTML.
Stop the music from playing automatically when someone opens your web page by inputting “false” next to the autostart value. Replace autostart='true' with autostart='false' as the proper HTML.
Save the web page file with the code in it.
In Feburary 2016 15,
Log in to your web host by inputting your user name and password into the corresponding text boxes. Click on the 'Upload' button and select a song that you want to put in the background of your website. This will upload it to the root directory of your site. The root directory is the default where you are directed when you first sign into your web host.
Click on the HTML document in your web server in which you want to put the song into the background. Copy and paste the following HTML background music code into the place in your HTML code where you want the music player to appear: <embed name='Name of song'
src='URL to song'
loop='false'
hidden='false'
autostart='true'>
</embed>Replace the section that says “Name of Song” with the title of your song and the section that says “URL to Song” with the URL to your song.
Play the song more than once, when someone links to your page, by inputting the number of times that you want it to play into the loop value. Replace loop='false' with loop='1'or loop='2' as the proper HTML.
Hide the music player so that the user cannot stop the music. To do this, input “true” next to the hidden value. Replace hidden='false' with hidden='true' as the proper HTML.
Stop the music from playing automatically when someone opens your web page by inputting “false” next to the autostart value. Replace autostart='true' with autostart='false' as the proper HTML.
Save the web page file with the code in it.
In Feburary 2016 15,
Dienstag, 9. Februar 2016
How to Add Ads to My Web PageIn Feburary 2016 09,
In Feburary 2016 09,
Make sure your web host will let you put ads on the page. Some free web hosting providers already have their own ads on the page or will not allow you to put Javascript on the page. If you can’t put ads on your existing web page, you will need to switch to another web hosting provider.
Join an advertising program. Write down your username and password; you will need them each time you sign in to the program website.
Log into the advertising program website and set up your account. Read the support pages to learn how to generate HTML code for ads and to select the types and sizes of ads you want to display on your web page.
Generate and copy the HTML code for an ad or ad group. You can copy the code by selecting the code and then choosing “Copy” from the 'Edit' menu of your web browser.
Open your web page in an HTML editor. Paste the copied HTML code into your web page at the place you want the ad to appear. You can control the position and appearance of the ads on your web page. Paste in the copied code by selecting “Paste” from the 'Edit' menu of your HTML editor. Save the file when you finish making changes.
Upload the web page to your web hosting account. View the page online to make sure the ads appear correctly. If they don’t, revise the HTML code, save the file and upload it again.
In Feburary 2016 09,
Make sure your web host will let you put ads on the page. Some free web hosting providers already have their own ads on the page or will not allow you to put Javascript on the page. If you can’t put ads on your existing web page, you will need to switch to another web hosting provider.
Join an advertising program. Write down your username and password; you will need them each time you sign in to the program website.
Log into the advertising program website and set up your account. Read the support pages to learn how to generate HTML code for ads and to select the types and sizes of ads you want to display on your web page.
Generate and copy the HTML code for an ad or ad group. You can copy the code by selecting the code and then choosing “Copy” from the 'Edit' menu of your web browser.
Open your web page in an HTML editor. Paste the copied HTML code into your web page at the place you want the ad to appear. You can control the position and appearance of the ads on your web page. Paste in the copied code by selecting “Paste” from the 'Edit' menu of your HTML editor. Save the file when you finish making changes.
Upload the web page to your web hosting account. View the page online to make sure the ads appear correctly. If they don’t, revise the HTML code, save the file and upload it again.
In Feburary 2016 09,
Abonnieren
Posts (Atom)