Uploading Your Website with FTPGet Web Design Tips and Tricks on mps-web-design.com. Uploading Your Website with FTP topic will increase your understanding on Web Design Tips and Tricks. We at mps-web-design.com only provide news, articles, information in Web Design Tips and Tricks. Web Design Tips and Tricks at mps-web-design.com provides the most up to date news and articles. If you have questions please do not hesitate to contact us.
What's FTP? FTP stands for File Transfer Protocol. It's a standard for transferring files quickly and easily between computers, intended to allow computers with different operating systems to exchange files without users needing to worry about the different file systems they use. Compared to HTTP, transfers over FTP are very reliable, meaning that your upload will not just fail without telling you, and you can pause and resume any upload you start. To connect to an FTP server, you need three things: the FTP server's address, a username, and a password. Your web host should have provided these to you when you opened your account, or you may also be able to create one yourself using your website's cPanel. Check your host's help for more information. Before you can use FTP, you need an FTP program. Luckily, you have quite a few choices. Internet Explorer What, Internet Explorer? Yes, IE actually has an FTP program built in. Just go to your host's FTP server using a URL with ftp:// instead of http://, like this: ftp://ftp.example.com. You will be asked to enter your username and password, and then you'll be presented with a view of the files and folders on the FTP server, just like if they were on your own computer! To upload files, all you need to do is drag them from wherever they are now into this window. So what's the problem? Why not just use IE for all your FTP uploading needs? Well, unfortunately, the answer is that it isn't very reliable as an FTP program: it works, but it's very slow, and won't automatically try things again if it runs into errors. It also lacks a good way of telling you how far along your uploads are or giving you much control over them - fine for uploading one or two files, but not so great when it comes to uploading a whole website. CuteFTP CuteFTP (www.cuteftp.com), by GlobalScape, was one of the first useful graphical FTP programs for Windows, and is still popular. It supports resuming, scheduling transfers in advance and multiple transfers at once, and also has the useful feature of allowing you to quickly edit files on the server using a built-in text editor. It costs $40, or you can get a Pro version with more features for $60. WS FTP WS FTP (www.wsftp.com) is another old, established FTP program, but recently became a lot easier to use than it used to be. Some useful features include its various wizards and tutorials for doing common things, editing files on the server using any software you like (a rare feature) and sorting options that let you find files quickly. It also has special features to help you out with blogging and digital photography. Cost: $60. BulletproofFTP BulletproofFTP (www.bpftp.com) is an FTP client that does a lot of things automatically - it's clever when it comes to handling common situations in a good way, where other FTP programs can often do things you wouldn't want or constantly ask you to confirm things. However, the interface is looking a little dated now, and it costs $30. SmartFTP SmartFTP (www.smartftp.com) is my personal favourite FTP program. Why? Well, it has a modern, easy-to-use interface. It's updated often, and has almost all the features of the programs above, as well as very good support for queuing, proxies, backups, and some obscure things like chmod that you might need to do from time to time. Best of all, although it costs $37 for business use, it's free for non-commercial or personal users. FileZilla
Finally, if you want a completely free and open-source FTP program, FileZilla (filezilla.sourceforge.net) is worth a look. While the interface is simple and a little technical, it does most things you would want it to do, and is surprisingly fast and stable. If you want an easy to use program that doesn't hide anything for you, then you could do worse than FileZilla - and hey, if you want it free, you don't have that many choi
This post was originally published on May 13th, 2004. As others are writing about the topic, I thought bringing it out of the archives would be worthwhile. A little recapThe idea of placing multiple states of buttons and other elements that are used in background images took its roots, I believe, from Pixy's Fast Rollovers. The CSS Zen Master extended this to another purpose in CSS Sprites: Image Slicing’s Kiss of Death. Didier Hilhorst came up with a nice application of this method, and I worked it backwards in Responsible CSS - Recycle your background images. The idea behind the 'sprites' method can obviously be extended to any html element, and there are tangible benefits for doing this, just as long as the designer does his or her usual homework. Benfits of using the 'sprites' methodWhat are the possible the benefits of using this method? Essentially it lies in faster download times for your web content. Readers of Andy Kings book, Speed Up Your Site: Web Site Optimization will notice that this method reduces http requests and makes more efficient use of the data packets used to transfer files to the users computer, and that that is a good thing. Packet size and http requestsFrom Web Page Design and Download Time, by Jing Zhi of Keynote Systems (seen here - pdf), cited in Andy's book:
They also found that it was the number of packets and not necessarily the overall size of the page that was important. If a packet could hold 1460 bytes (the figure given in the article) and your object was 1600 bytes, it would require two packets. They found that this object would transfer at the same speed as another object that was greater in size but still fit in two packets. Potential payoffThe potential payoff for using this method versus individual images, then, is a faster download time due to reduced number of packets and fewer http requests. Reducing http requests is easy. One file instead of two or three etc. is simple. But packet requests? That depends... An exampleThe number of packets sent will depend on the size of the file and the users internet connection. As an example, lets look at the fiftyfoureleven.com logo at the top of the page. When this design was first being coded, that link consisted of two 3.34kb images, one for the link state and one for the hover state. Now, by using one image that contains both states and simply bumping it back and forth depending on the hover state, that has been reduced to one 5.35 kb image. Right there is a savings of 1.33 kb. Good news. Now, for arguments sake lets say that a packet can hold 1460 bytes (packet size for connections greater than 128kb/s = 1500 bytes -40bytes for tcp/ip headers). The two image method used 6 packets, 3 for each image (3.34/1.46, rounded up). The single image method uses 4 packets (5.34/1.46, rounded up). Things are looking good. How to optimizeIn his alistapart article, Dave refers to the image that holds all of the sprites as his 'master image'. The key to benefitting from this method is to ensure that the file size of your master image isn't a bloated equivalent versus the sum of its pieces. ConclusionGreat benefits can be realized when combining a master image from slices that fall well below the size of one packet, as that unused packet space goes wasted. After doing a little more research, it seems that packet size can vary depending on the connection rate. That being said, it may be rather difficult to come up with a firm rule here. To play it smart and safe, try and:
This isn't exactly groundbreaking advice, however having seen the results acheived with the logo on this page, it can be seen that using the sprite method versus individual images at minimum does reduce http requests and even further it can reduce file size which in turn can reduce the number of packets sent. Article Index: | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
More Articles:1. Domain Registered? Now What? I own a company that, among other things, develops web sites, and I've hadmy own business and personal sites since the early 1990's. While each website project has its own challenges and rewards, there are some commonelements to all of them.First, make sure that the ISP or web development firm registered the domainname in your or your client's name, and not their own. Even today,outsourcers will often register domains in their own names, leaving you outin the cold if the site becomes popular, un… 2. Website Design By Chrissy Miller When designing or redesigning a website the most important part of the project happens before any graphics or code are created.Start by determining the primary goals of your website. Are you using it to sell your products or services? Maybe it’s intended simply to advertise your offline business, provide support to your existing customers or build your company brand. Whatever the goals are, clearly defining them ahead of time will better guide you in the actual creation process.Next, remember … 3. Web Site Design - User Focus By Christopher Smith It's important to understand what catches a user's eye first on a page, then second, etc. If you know this you can order your page elements accordingly.There are several factors in what captures a users attention. These are size, contrast, movement and position.This is obvious but a user will see a larger headline before a smaller one. This is why we use larger font sizes for higher impact. Making text bold or not has the same effect. Similarly, a large image will be seen before a headline so … 4. Learn the Language of the World Wide Web If you are already on the web or thinking about it then you must know the terminology used on the web. Here is a Glossary of a few must know Web Terms. Visitors:The number of distinct people who visit your site. Page Views:The number of web pages that have been viewed by the visitors to your site. If a single page is viewed many times by a visitor, each view is treated as a new page view. Hits:When a visitor views a page that has 3 graphics or images on it, he / she will give you 4 hits. 1 fo… |
||||