Showing posts with label HTTP. Show all posts
Showing posts with label HTTP. Show all posts

Tuesday, 1 March 2016

How to Use a Web Browser to Download Files With FTPIn Feburary 2016 30,

In Feburary 2016 30,
Find the FTP address of the remote file, including the file's complete path. (If you are clicking through a link on a Web site, you will not need to know the path, since the Webmaster will have coded this into the link.)
Enter the FTP address in the browser address box, the same way you would enter an HTTP (Web) address. For example, your FTP address might be something like this: ftp://ftp.simtel.net/freeware/myfile.zip.
Press the Enter key.
Enter any ID information or passwords that you may have been assigned, if prompted. Some Web sites may be set up so you are not required to enter passwords or log-in IDs.
Choose the Save File to Disk option if given the choice between that and Open File.
Identify the folder on your hard drive where you want the downloaded file to be stored. Accept the default or choose another folder.
Wait while the file downloads to your hard disk.
In Feburary 2016 30,

Sunday, 28 February 2016

How to Find an FTP AddressIn Feburary 2016 28,

In Feburary 2016 28,
Replace the 'http' in your URL with an 'ftp.' You may need to enter it in the form: 'ftp://websiteaddress.com' or 'ftp://ftp.websiteaddress.com.' If the FTP is under a sub-domain, it may be listed as 'ftp.subdomain.hostdomain.com' or 'ftp://ftp.subdomain.hostdomain.com.'
Check the welcome letter you received from the web hosting provider.
Log in to the control panel of your website. Using this method, you will need the username and password to access the account. The FTP address should be listed in the FTP account section of the control panel.
Contact your web host for the FTP address.
In Feburary 2016 28,

Friday, 26 February 2016

How to Write a Batch ScriptIn Feburary 2016 26,

In Feburary 2016 26,
Hit the Windows logo and 'R' keys on the keyboard simultaneously. This will bring up the 'Run' dialog box. In the box, type 'notepad' and hit 'Enter.'
Type 'c:\Progra~1\Intern~1\iexplore.exe http://www.ehow.com' into the window. This command will open an Internet Explorer window, and Internet Explorer will browse directly to the index page of eHow upon being opened.
Click 'File,' then click 'Save As.'
Click the drop-down menu next to 'Save as type,' and choose 'All Files.'
Navigate to your desktop. Name the file 'TestBatch.bat' and click 'Save.'
Double click the batch file. If you performed the above steps correctly, an Internet Explorer window to eHow will be opened.
In Feburary 2016 26,

How to Set Up a Network Scanning Xerox WorkCentre Pro 245In Feburary 2016 26,

In Feburary 2016 26,
Press the 'Access' button on the multifunction's touch display.
Type '1111' or the device's current password and touch the 'Enter' button on the touch display.
Press 'Go to Tools' and press 'More.'
Touch 'Optional Services.'
Touch 'Network Scanning,' enter code 'A' from your device's scanning kit instructions and press 'Enter.'
Touch 'Exit Tools' to restart the device.
Set Up Repository
Press 'Network Scanning.' If this button isn't available on the main menu, press 'Features' and select 'All Services.'
Select a method for accessing your scanning repository and press the corresponding button: FTP, NCP, SMB or HTTP/HTTPS.
Open a Web browser on a computer, type your Xerox's IP address in the address bar and press 'Enter.'
Click 'Properties,' select 'Services,' select 'Network Scanning' and click 'File Repository Setup.'
Click 'Add' and enter a name for your repository in the 'Friendly Name' box. This is the name that will appear on the multifunction's destination list.
Choose 'FTP,' 'NCP,' 'SMB' or 'HTTP/HTTPS' from the 'Protocol' menu.
Choose either 'IP Address' or 'Host Name' and enter the IP address or Host Name for your repository.
Type the path to your repository in the 'Document Path' field, enter the login information for the repository in the 'Login Name' and 'Password' fields and click 'Apply.'
Enter the WorkCentre's administrator credentials to finalize the settings and return to the main page. If you have not customized your credentials, the default username is 'admin' and the default password is '1111.'
Customized Settings and Default Template
Open a Web browser, type the IP for your Xerox in the address bar and press 'Enter.'
Click 'Properties,' select 'Services' and select 'Network Scanning.'
Click 'Default Template' and select your default file destination, document name and scan format.
Configure your custom scan settings by clicking the 'General' link on the 'Internet Services' menu. Once you have chosen your preferred settings, click 'Apply.'
Click 'Add' next to 'File Destinations,' select a filing policy and choose your file repository from the drop-down menu. Click 'Apply' to finish.
Configure additional custom scan settings by clicking the 'General' link on the 'Internet Services' menu. Once you have chosen your preferred settings, click 'Apply.'
In Feburary 2016 26,

Thursday, 25 February 2016

How to Edit a Live PHP Site via FTPIn Feburary 2016 25,

In Feburary 2016 25,
Open File Explorer or Internet Explorer: both programs access the built-in FTP client.
Type the site's host server FTP url into the address bar and press 'Enter.' The FTP address starts with 'FTP://' instead of 'HTTP://" like a website. ExampleSite.com might have its FTP server located at a URL like 'FTP://adminFTP.ExampleSite.com.'
Enter your client account user name and password then press 'OK' to log in to the FTP.
Locate the PHP files you want to update in the FTP browser window. The FTP browser window displays the files on the FTP server like File Explorer displays local files on your computer or home network.
Copy the PHP files you want to update to your computer by highlighting them in the browser window, pressing 'Ctrl+C,' opening a local folder Window in File Explorer and pressing 'Ctrl+V.' You can edit the copy of the file stored on your computer, but you can't edit the one stored on the FTP site.
Open the PHP files you want to edit with Notepad or a code editing program, make the changes you want to make in the code and save the updated file.
Highlight the updated versions of the files you want to update on the PHP site in the File Explorer window and press 'Ctrl+C' to copy them.
Open the FTP window, locate the folder hosting the files you want to update and press 'Ctrl+V' to upload the files to the FTP. If Windows asks, choose the option that overwrites and replaces the files. The new versions of the files will immediately display on the site when refreshing the page.
In Feburary 2016 25,

Tuesday, 23 February 2016

How to Open Up a New Tab in HTMLIn Feburary 2016 23,

In Feburary 2016 23,
Open Windows Notepad or another text or HTML editor on your computer. Open the HTML file in which you want to place links that open in a new tab or window.
Position the cursor at the point in the HTML code where you want to place the link. Enter the following HTML code:http://www.somesite.com/somepage.htm' target='_blank'>Link Text
Change the 'http://www.somesite.com/somepage.htm' value to the actual website and page to open with the link.
Change the 'Link Text' value to the text you want to display for the link. For instance, 'Click Here to go to Somesite.com' or any other descriptive text.
Click 'File,' then 'Save' on the editor toolbar.
Use an FTP program or log in to the control panel of your Web hosting account to upload the new HTML file to your site. When visitors click links formatted with the above syntax, Web pages will open in a new tab if the browser supports the option. If the browser does not support tabbed pages, the link will open and display the Web page in a new browser window.
In Feburary 2016 23,

Thursday, 18 February 2016

How to Connect to FTP Through a ProxyIn Feburary 2016 18,

In Feburary 2016 18,
Click the 'Edit' menu at the top of the FileZilla window, and select 'Settings.'
Click 'Generic Proxy' under 'Connection' on the left side of the window.
Click a radio button to indicate whether your network uses an HTTP or SOCKS proxy server.
Type the address, port number, user name and password for your proxy server.
Click 'OK' to save your settings.
Internet Explorer or Windows Explorer
Click the Windows logo in the corner of the screen, and select 'Control Panel.'
Click 'Network and Internet,' and then click 'Internet Options.'
Select the 'Connections' tab at the top of the 'Internet Properties' window, and then click the 'LAN Settings' button.
Click the 'Use a proxy server for your LAN' check box.
Enter the address and port number of the proxy server.
Click 'OK' twice to save your settings.
FlashFXP
Click the 'Options' menu at the top of the FlashFXP window, and then click 'Preferences.'
Click 'Proxy' under the 'Connection' category on the left side of the window.
Click the 'New Entry' button at the top of the window.
Click the drop-down menu next to 'Type' and select the type of proxy server that you connect through, such as 'SOCKS 5' or 'HTTP.'
Enter the address and port number of the proxy server, along with your username and password if applicable.
Type the name that you would like to use to identify the proxy server. This feature is useful if you have more than one proxy server that you connect to.
Click 'OK' twice to save your settings.
In Feburary 2016 18,

How to Copy and Paste Songs Into FacebookIn Feburary 2016 18,

In Feburary 2016 18,
Upload your song using the File Manager of your Web host or via an FTP program such as FileZilla or SmartFTP.
Log in to Facebook.
Go to your Profile Page and type in the URL of the song in your status - for example: http://www.mywebsite.com/mysong.mp3.
Click on the 'Share' button. Once posted, Facebook automatically recognizes the URL as a song and displays an audio player to enable people in your network to listen to it.
Post a Song Using a Facebook App
Go to facebook.com/apps/directory.php and enter 'music' in the search box.
Select a music player application from the listed apps by clicking on the name of the app. Examples of music apps where you can add music to your profile are listed in the 'Resources' section.
Click on the 'Go to App' button and follow the steps to activate it on your account.
Click on the link or button to upload your music and follow the prompts to complete the task. An option to share the music posted on your Facebook page will appear once the song is uploaded.
In Feburary 2016 18,

Wednesday, 17 February 2016

How to Fix Internet Explorer Error Code 10061In Feburary 2016 17,

In Feburary 2016 17,
Check the address in your toolbar to make sure it is correct. If you get this error, you may have entered the address wrong into your address toolbar. Check the entire address for errors since there is a huge difference between .com and .org at the end of a URL or http: and ftp: at the beginning of a URL.
Contact the administrator of the site you are trying to visit. The administrator may have the wrong link to a specific place on the site or a server may be not working correctly. You may also need some sort of special permission to view content on that Web server.
Check your system administrator if you are at work or at school. Copy and paste the entire error that you get in an email to your system help desk. Include the entire Web address that gave you the error. An error of this type may be caused by a firewall or a proxy setting your work or school has control over.
In Feburary 2016 17,

Friday, 12 February 2016

How to Run IPTV in VLCIn Feburary 2016 12,

In Feburary 2016 12,
Open the VLC media player.
Click the “Media” button on the top navigation bar to show the File menu.
Click the “Open Network Stream” option.
Click the radio button next to the “HTTP/HTTPS/FTP/MMS” option and then type the following URL into the “URL” input box. http://avenard.org/iptv/playlist-tpg-vlc.m3u
Click “OK.” The Avenard playlist opens in VLC and the channels list down the left panel.
Click a channel in the left panel and then click the “Right” pointing arrow at the bottom of the viewing screen to play the channel.
In Feburary 2016 12,

Thursday, 11 February 2016

What Are the Benefits of FTP?In Feburary 2016 11,

In Feburary 2016 11,
Files are uploaded to an FTP server. The server has a large memory capacity to host the files available for transfer. Files can be accessed through any Internet browser or any FTP software, referred to as a 'client.' Sometimes files are available permanently, but oftentimes, especially through a company, they may be available only temporarily. Check with the administrator to find out whether there is an automatic delete time frame.
Access
One way to access these files directly is to use the FTP address through an Internet browser. The address will be similar to a website address, except instead of 'http://,' it will begin with 'ftp://.' You may need a login ID and password to access some FTP sites, which will typically automatically pop up in a dialogue box.
Inside an FTP Site
Once you're logged in, there will usually be a file structure, with main folders and subfolders, similar to what you may have in 'My Documents' on your computer. This structure is set up by an administrator. Folders and files may be public or private, and access may include adding, moving, editing and/or deleting; so, if it seems like you can't do something, check with the administrator about the limits to your access.
'Hidden' FTP
However, when downloading from the internet, the FTP site is probably using an anonymous login, which is why you may have never known it was happening. The FTP address itself is usually hidden from the end user, though the file transfer process is the same.
Easier Access
If you start using an FTP site regularly, find yourself with multiple IDs or just want an easier access point, then an FTP client is something to consider. There are many free options available. It makes uploading much easier and protects downloads---simply drag and drop. It will store all of your frequented FTP sites, along with their respective logins and passwords, in one convenient place. Check out the resources below for a start, find one that suits your needs and preferences, and let the file transfers begin.
In Feburary 2016 11,

Wednesday, 10 February 2016

HTTP Vs. FTP File TransferIn Feburary 2016 10,

In Feburary 2016 10,
In order to update a file to a website, all the user needs is a modern internet browser. However, on the server side of the website, a site programmer has to implement a system that can handle a file upload. The programmer has several options to perform this, from a simple HTML upload to more advanced forms with languages such as PHP and ASP, for use in a forum or a blog. With downloading, all a user has to do is click on a link.
Uploading via FTP
FTP, or File Transfer Protocol, predates HTTP by quite some time. However, FTP is used primarily by webmasters and web developers who need to upload files directly to their servers. In order to use an FTP server, you will need an FTP client to connect to it. Free FTP programs include FileZilla and CoreFTP, and can be found in the resources section below.
Advantages and Disadvantages of HTTP
HTTP uploads provide an incredibly simple method of uploading files to a server, with minimal knowledge about file transfers. Downloading a file is also incredibly easy too. However, the disadvantages lie in HTTP's lack of power when it comes to file uploading. Also, a programmer needs to have the knowledge required to create the form in HTML, in order to upload the file in question. This especially is true if the file is for a social network similar to Myspace or Facebook that they're creating.
Advantages and Disadvantages of FTP
Using a FTP server offers advantages of its own. For one, a user can use a program to perform a mass upload to a server, not having to worry about repeatedly having to rebrowse for files and re-upload them using one form. Downloads can also be done en masse as well. Unfortunately, an FTP server still requires an FTP client to use, and the use of one would be particularly cumbersome to those who just wanted to upload a picture or two.
Differences
Ultimately, FTP and HTTP file transfers have completely different purposes. FTP's file transfer purpose is more or less for website maintenance and batch uploads, while HTTP is for client-end work and for end users to upload things such as movies, pictures and other files to the server. Often times, a programmer will use FTP to upload the files that allow an end-user to upload files via HTML/HTTP as well.
In Feburary 2016 10,

Friday, 5 February 2016

How to Learn Network ProtocolsIn Feburary 2016 05,

In Feburary 2016 05,
Memorize the seven OSI layers using the commonly-used mnemonic 'All People Seem To Need Data Processing' -- for Application, Presentation, Session, Transport, Network, Data link and Physical layers.
Remember that the Application layer is for applications that interface with users. Functions included here are emails, file transfers, web-browsing and remote access. Common email protocols are SMTP (Simple Mail Transfer Protocol) and POP3 (Post Office Protocol version 3). Web-browsing has HTTP (Hypertext Transfer Protocol). File transfer has FTP (file transfer protocol).
Remember that the Presentation layer is involved in the presentation of data. This includes audio, video and other visual presentations. Protocols include the common JPEG for pictures, MP3 for music, AVI for videos.
Remember that the Session layer is responsible for establishing a session or connection between computers and networks. Common protocols include SQL (structured query language) and RPC (remote procedure call).
Remember that the Transport layer is involved in transmitting or transferring data from one device to another. Common protocols are TCP (Transport Control Protocol) and UDP (User Datagram Protocol).
Remember that the Network layer is responsible for tracking and routing where data should be transmitted. To be able to route data correctly, computers need 'addresses,' which the Internet Protocol (IP) is responsible for. Similar to courier and cargo services, the network layer also has the RIP (Routing Information Protocol), EGP (External Gateway Protocol) and IGMP (Internet Group Management Protocol). These are the trucks, planes, and trains responsible for routing data.
Remember that the Data link layer is responsible for linking or connecting data between the other protocols. It provides error-free mechanism to ensure that the link is maintained. Common protocol is PPP (Point-to-Point Protocol) and SLIP (Serial Line Internet Protocol).
Remember that the Physical layer are the physical connections between networks and computers. These are the wires, cables, switches, amplifiers and other physical devices that link computers. There is no protocol under the Physical layer.
In Feburary 2016 05,