In Feburary 2016 30,
Point your Web browser to a free image host like Photobucket, Flickr, TinyPic, MediaFire or FileFactory. Image hosts allow you to select the picture from your computer and upload the file to a server.
Click the 'Upload' or 'Choose File' button and use the dialog window that automatically opens to select your GIF file from your computer's location. Continue to follow the prompts to finish the upload process.
Copy the URL address that automatically displays when the upload procedure on TinyPic, MediaFire or FileFactory is complete. If using Photobucket or Flickr, click the 'Share' feature and then copy the HTML or URL code that appears. See your particular host's 'Help' page if you need assistance locating this information.
Access a Web area, such as a forum post or blog entry, and paste the URL in an image tag as follows: This code displays your GIF image on the page.
In Feburary 2016 30,
Posts mit dem Label upload werden angezeigt. Alle Posts anzeigen
Posts mit dem Label upload werden angezeigt. Alle Posts anzeigen
Dienstag, 1. März 2016
How to Host SVN Repo in GoDaddyIn Feburary 2016 30,
In Feburary 2016 30,
Click 'Start,' then 'Computer,' then 'Map Network Drive,' then 'Connect to a Website,' then enter your FTP login information and click 'Finish.' Double-click your FTP site and upload the SVN repo to your server.
Log in to your GoDaddy account.
Click 'Web Hosting,' then select your account and click 'Launch.'
Click 'Settings,' then 'SSH.'
Click 'Enable.' Click 'Save.' After 72 hours, SSH will be enabled. The SVN Repo will then be active.
In Feburary 2016 30,
Click 'Start,' then 'Computer,' then 'Map Network Drive,' then 'Connect to a Website,' then enter your FTP login information and click 'Finish.' Double-click your FTP site and upload the SVN repo to your server.
Log in to your GoDaddy account.
Click 'Web Hosting,' then select your account and click 'Launch.'
Click 'Settings,' then 'SSH.'
Click 'Enable.' Click 'Save.' After 72 hours, SSH will be enabled. The SVN Repo will then be active.
In Feburary 2016 30,
How to Upload a File to Godaddy HostingIn Feburary 2016 30,
In Feburary 2016 30,
Navigate in your Web browser to the GoDaddy Account Manager page (mya.godaddy.com). Click the 'Please Log In' link near the top of the page, and then enter the user name and password associated with your GoDaddy hosting account.
Click the 'Web Hosting' link on the left side of the page under the 'My Products' heading. If you have multiple hosting accounts with GoDaddy, the next page displays a 'Launch' button under the name of each account.
Click the 'Launch' button under the name of the hosting account associated with the server that you want to upload files to. This displays the Hosting Control Center interface for the selected hosting account.
Scroll down to the 'Content' heading, and click 'FTP File Manager.' This displays the file manager for the selected server. The left side of the window displays a list of the folders on the server; click a folder to display its files on the right side of the window.
Click the 'Upload' button at the top of the window after navigating to the desired folder on your server.
Click the 'Browse' button. A file navigation window appears. Locate the file on your computer that you want to upload to the server. Double-click the file. Alternatively, hold the 'Ctrl' key while clicking to select multiple files, and then click the 'Open' button.
Click 'Upload' to send the selected files to the server.
In Feburary 2016 30,
Navigate in your Web browser to the GoDaddy Account Manager page (mya.godaddy.com). Click the 'Please Log In' link near the top of the page, and then enter the user name and password associated with your GoDaddy hosting account.
Click the 'Web Hosting' link on the left side of the page under the 'My Products' heading. If you have multiple hosting accounts with GoDaddy, the next page displays a 'Launch' button under the name of each account.
Click the 'Launch' button under the name of the hosting account associated with the server that you want to upload files to. This displays the Hosting Control Center interface for the selected hosting account.
Scroll down to the 'Content' heading, and click 'FTP File Manager.' This displays the file manager for the selected server. The left side of the window displays a list of the folders on the server; click a folder to display its files on the right side of the window.
Click the 'Upload' button at the top of the window after navigating to the desired folder on your server.
Click the 'Browse' button. A file navigation window appears. Locate the file on your computer that you want to upload to the server. Double-click the file. Alternatively, hold the 'Ctrl' key while clicking to select multiple files, and then click the 'Open' button.
Click 'Upload' to send the selected files to the server.
In Feburary 2016 30,
Dienstag, 16. Februar 2016
How to Share SVG on FacebookIn Feburary 2016 16,
In Feburary 2016 16,
Upload the SVG file to a free image hosting website like PostImage, ImageShack or TinyPic. Alternatively, upload it to your own personal web space. Open the uploaded SVG image within the web browser, double-click the mouse in the 'Address Bar,' then right-click and select 'Copy.'
Click the 'Link' button above the Facebook news feed, right-click your mouse in the field and choose 'Paste.' Click the 'Attach' button to attach the link to your post.
Input any status message you want to post alongside the image. Verify that the post is to your liking, then choose 'Share.'
In Feburary 2016 16,
Upload the SVG file to a free image hosting website like PostImage, ImageShack or TinyPic. Alternatively, upload it to your own personal web space. Open the uploaded SVG image within the web browser, double-click the mouse in the 'Address Bar,' then right-click and select 'Copy.'
Click the 'Link' button above the Facebook news feed, right-click your mouse in the field and choose 'Paste.' Click the 'Attach' button to attach the link to your post.
Input any status message you want to post alongside the image. Verify that the post is to your liking, then choose 'Share.'
In Feburary 2016 16,
Donnerstag, 11. Februar 2016
How to Put a Song in the Background of a WebsiteIn Feburary 2016 11,
In Feburary 2016 11,
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 11,
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 11,
Mittwoch, 10. Februar 2016
How to upload or share a video and make moneyIn Feburary 2016 10,
In Feburary 2016 10,
Visit www.revver.com
Set up an account
Click 'upload' and follow the instructions
Add 'meta data' (descriptive language, title, etc.)
Use Sharing tools to publish 1 or hundreds of videos to your website, blog, community page etc.
In Feburary 2016 10,
Visit www.revver.com
Set up an account
Click 'upload' and follow the instructions
Add 'meta data' (descriptive language, title, etc.)
Use Sharing tools to publish 1 or hundreds of videos to your website, blog, community page etc.
In Feburary 2016 10,
Samstag, 6. Februar 2016
How to Post a Web PageIn Feburary 2016 06,
In Feburary 2016 06,
Determine where you would like to post the web page. You will need a web hosting service account. Three popular web hosting services include Go Daddy, bluehost and 1&1 (see Resources).
Determine the details of your account, including the hostname (the machine that that you will upload files to), your username, password and URL address.
Establish a connection to the Internet via a local area connection or wireless connection.
Open an FTP program such as FileZilla or CoreFTP, which are available for free download.
Enter your hostname, username and password of your website in the FTP program.
Locate the web page you would like to post. Click 'Browse' from the FTP program, navigate to the file and click to select it.
Click the option to transfer the web page to the hosting provider.
In Feburary 2016 06,
Determine where you would like to post the web page. You will need a web hosting service account. Three popular web hosting services include Go Daddy, bluehost and 1&1 (see Resources).
Determine the details of your account, including the hostname (the machine that that you will upload files to), your username, password and URL address.
Establish a connection to the Internet via a local area connection or wireless connection.
Open an FTP program such as FileZilla or CoreFTP, which are available for free download.
Enter your hostname, username and password of your website in the FTP program.
Locate the web page you would like to post. Click 'Browse' from the FTP program, navigate to the file and click to select it.
Click the option to transfer the web page to the hosting provider.
In Feburary 2016 06,
Mittwoch, 3. Februar 2016
I Could Not Connect to the Server in FileZilla 1and1In Feburary 2016 03,
In Feburary 2016 03,
Users often confuse hosting accounts with FTP accounts. You enter the username and password for your hosting account to access the website control panel on 1and1. This username and password is not even relevant to FileZilla. Instead, you need to retrieve the details for your FTP account to use FileZilla. You get an FTP username and password in the welcome email when you join. If you no longer have access to this email, get your FTP username from inside the panel and set up a new password.
Account Management
Access your admin control panel by logging into your hosting account. If you have more than one domain, choose which one you want to administer. Select 'FTP Accounts' in the 'Webspace' menu to see your username -- this is the username that you enter into FileZilla to upload files to your website. However, because the password is hidden even in your own account for security reasons, you need to create a new password if you do not know it. Click 'Edit' to see the option to create a new password. Write this and the username down on a piece of paper to make sure you are using the correct account details in FileZilla. You can also click 'New User' to set up additional usernames and passwords for FTP purposes.
Establishing a Connection
Now that you are sure you have the correct username and password for your FTP account, you need to enter the correct information in FileZilla. Open the software, then click the 'Site Manager' icon, which has an image of two computers, near the top. In the window that pops up, select 'New Site' and enter any name for this site, then enter your website address; however, do not enter the 'http' and 'www' portions of the address -- for example, enter 'MySite.com,' not 'www.MySite.com.' Leave the port as '21' and the server type as 'FTP,' but change the 'Logontype' option to 'Normal.' Enter the FTP username and password that you've retrieved from the 'FTP Accounts' section in your 1and1 hosting account. Click 'Save and Exit.' To establish a connection, click the 'Site Manager' icon again, select your website and click 'Connect.'
Other Troubleshooting
If you are still experiencing connection problems, you may have an issue with the FileZilla FTP utility. Because this is free software, download another copy from FileZilla's website. If you still cannot connect with a new copy, 1and1 may be having a server issue; call 866-991-2631 to check the server's status. Another option is to try another free FTP client to isolate whether the problem is FileZilla or 1and1. Examples include Core FTP and Go FTP.
In Feburary 2016 03,
Users often confuse hosting accounts with FTP accounts. You enter the username and password for your hosting account to access the website control panel on 1and1. This username and password is not even relevant to FileZilla. Instead, you need to retrieve the details for your FTP account to use FileZilla. You get an FTP username and password in the welcome email when you join. If you no longer have access to this email, get your FTP username from inside the panel and set up a new password.
Account Management
Access your admin control panel by logging into your hosting account. If you have more than one domain, choose which one you want to administer. Select 'FTP Accounts' in the 'Webspace' menu to see your username -- this is the username that you enter into FileZilla to upload files to your website. However, because the password is hidden even in your own account for security reasons, you need to create a new password if you do not know it. Click 'Edit' to see the option to create a new password. Write this and the username down on a piece of paper to make sure you are using the correct account details in FileZilla. You can also click 'New User' to set up additional usernames and passwords for FTP purposes.
Establishing a Connection
Now that you are sure you have the correct username and password for your FTP account, you need to enter the correct information in FileZilla. Open the software, then click the 'Site Manager' icon, which has an image of two computers, near the top. In the window that pops up, select 'New Site' and enter any name for this site, then enter your website address; however, do not enter the 'http' and 'www' portions of the address -- for example, enter 'MySite.com,' not 'www.MySite.com.' Leave the port as '21' and the server type as 'FTP,' but change the 'Logontype' option to 'Normal.' Enter the FTP username and password that you've retrieved from the 'FTP Accounts' section in your 1and1 hosting account. Click 'Save and Exit.' To establish a connection, click the 'Site Manager' icon again, select your website and click 'Connect.'
Other Troubleshooting
If you are still experiencing connection problems, you may have an issue with the FileZilla FTP utility. Because this is free software, download another copy from FileZilla's website. If you still cannot connect with a new copy, 1and1 may be having a server issue; call 866-991-2631 to check the server's status. Another option is to try another free FTP client to isolate whether the problem is FileZilla or 1and1. Examples include Core FTP and Go FTP.
In Feburary 2016 03,
How to Upload a Video to GoDaddyIn Feburary 2016 03,
In Feburary 2016 03,
Go to GoDaddy's home page.
Log in by entering your account username and password into the corresponding fields. Your account name and password is in the email you received from GoDaddy when you first set up your account or purchased a product from them.
Hover over the 'Hosting' tab with your mouse. The Hosting menu will open, and click on 'Web Hosting.'
Click 'Launch' next to the hosting account you want to upload the video to. If you have several domains, you may have a hosting account associated with each one.
Launch the Hosting Control Center associated with the domain you want the video to be available on.
Click 'File Manager' or 'Files' in the Hosting Control Center or Hosting Dashboard.
Select a folder where you want the video to be stored in (e.g., 'videos').
Click the 'Upload' folder.
Select the 'Browse' button.
Find and select the video stored on your computer or connected storage device, and click 'Open.'
Click 'Upload' again. The GoDaddy File Manager will transfer the video from the computer to your hosting account and store it in the selected folder.
In Feburary 2016 03,
Go to GoDaddy's home page.
Log in by entering your account username and password into the corresponding fields. Your account name and password is in the email you received from GoDaddy when you first set up your account or purchased a product from them.
Hover over the 'Hosting' tab with your mouse. The Hosting menu will open, and click on 'Web Hosting.'
Click 'Launch' next to the hosting account you want to upload the video to. If you have several domains, you may have a hosting account associated with each one.
Launch the Hosting Control Center associated with the domain you want the video to be available on.
Click 'File Manager' or 'Files' in the Hosting Control Center or Hosting Dashboard.
Select a folder where you want the video to be stored in (e.g., 'videos').
Click the 'Upload' folder.
Select the 'Browse' button.
Find and select the video stored on your computer or connected storage device, and click 'Open.'
Click 'Upload' again. The GoDaddy File Manager will transfer the video from the computer to your hosting account and store it in the selected folder.
In Feburary 2016 03,
Abonnieren
Posts (Atom)