FTP 553 upload FAILED in LION ( cuteftp, transmit, coda, cyberduck all fail) , But works in Windows 7.

Hi folks,
I hv a big trouble in FTP upload.
I own a VPS server, and now is rush time I need to upload some file.
Now, I use CUTEFTP, TRANSMIT, CODA, CYBERDUCK in my updated LION, ALL FAILED.
and also, I can not use those client to creat a new file, and not allow to do anything.
maybe you will say, " check your VPS setting ".
the points are:
1. I can use those client in sometimes, and error in sometimes.
2. I can do anything, including upload, download, editing, creating file in my other WINDOWS 7.
Okay, Anyone know the solution? Please help me.. thank you so much.
p.s, ftp is easy job. I dont why APPLE **** this up like always.

Problem solved!
I found out how to get FTP to work on my Macs. It was just a hunch, but I tried it and BANGERS ON! (FYI: Bangers is an English slang term for sausages, the kind that is usually enjoyed with a sparkling fermented beverage. Ergo, bangers on implies that the work is done. Time to celebrate.)
As you know, the Macintosh is a very sturdy operating system based almost entirely on Unix, but with a candy apple shell GUI. The developers of this candy coating went to great lengths to provide transparent services to the users that once were only available to the zealous key coders of yesteryear. File Sharing is one such feature. All one has to do is turn it on and specify a folder, and that folder makes itself discoverable on the local network. Oddly though, having it on interferes with passive FTP. All I did to make passive FTP work was to inadvertently decide that maybe … just maybe … it was a problem because it was another kind of File Transfer Protocol. So, I tried turning it off and the rest is history.
BANGERS ON!

Similar Messages

  • Applet fails in Linux but works on Windows and MAC

    Hey I've been testing my RMI Chat and everything seems to work fine when I connect to it from a MAC machine or Windows machine but when I try to connect on Linux (openSUSE) the applet gets a connection timeout.
    The applet will load initially but when it connects to the server, I get a connection timeout exception. The exception is:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.ConnectException: Connection refused to host: 192.168.1.103; nested exception is:
         java.net.ConnectException: Connection timed out: connect
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:325)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
         at java.lang.Thread.run(Thread.java:595)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
         at sun.rmi.server.ActivatableRef.invoke(ActivatableRef.java:124)
         at ds.rmi.server.ChatServerImpl_Stub.registerClient(Unknown Source)
         at ds.rmi.client.ClientUI.start2(ClientUI.java:360)
         at ds.rmi.client.ClientUI.register(ClientUI.java:282)
         at ds.rmi.client.ClientUI.start(ClientUI.java:334)
         at sun.applet.AppletPanel.run(AppletPanel.java:420)
         at java.lang.Thread.run(Thread.java:595)The address to connect to the Chat is: 192.168.1.102:8080/dschat and the 192.168.1.103 is the address for the linux machine.
    Has it got to do with the /etc/hosts?? I also have java.rmi.hostname set in the server class
    Thanks in advance for any help
    Brian

    Check to see if you can access your server from other machines over the internet using telnet. That is in command prompt go to the drive that has the OS. Say it is C:
    Then write:
    C:\>telnet <your servers external ip address> <port number that you are trying to access>
    If everything is fine you will get a blank window with the cursor blinking on the top left hand corner of the window.
    Generally this connection timed out exception occurs when the client can't find the server.

  • Creative cloud keeps failing and saying that a problem caused it to stop working on (windows 8)

    I need help asap. I have alot of work to do

    Hi LaCoralyn Hilliard,
    Kindly try to remove it and then re-install it using the link mentioned below.
    https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Thanks,
    Atul Saini

  • Runtime.getRuntime().exec works on windows failed on linux!

    Hi,
    I'm trying to execute a linux command from java 1.4.2 using Runtime.getRuntime().exec(). The linux command produces output and write to a file in my home dir. The command runs interactively in the shell and also run on windows.
    The command is actually a mozilla pk12util. My java code to run this pk12util works on windows, but not on linux (fedora). When I print out the command I'm trying to run in java, I can run it interactively in bash shell.
    Method below is where the problem seems to be:
    public void writeCert() {
    // Declaring variables
    System.out.println("Entering writeCert method");
    String command = null;
    certFile = new File(credFileName);
    // building the command for either Linux or Windows
    if (System.getProperty("os.name").equals("Linux")) {
    command = linuxPathPrefix + File.separator + "pk12util -o "
    + credFileName + " -n \"" + nickName + "\" -d "
    + dbDirectory + " -K " + slotpw + " -w " + slotpw + " -W "
    + pk12pw;
    System.out.println("System type is linux.");
    System.out.println("Command is: " + command);
    if (System.getProperty("os.name").indexOf("Windows") != -1) {
    // command = pk12utilLoc + File.separator + "pk12util -o
    // "+credFileName+" -n "\"+nickname+\"" -d \""+dbDirectory+"\" -K
    // "+pk12pw+" -w "+pk12pw+" -W "+pk12pw;
    command = pk12utilLoc + File.separator + "pk12util.exe -o "
    + credFileName + " -n \"" + nickName + "\" -d "
    + dbDirectory + " -K " + slotpw + " -w " + slotpw + " -W "
    + pk12pw;
    System.out.println("System type is windows.");
    System.out.println("Command is: " + command);
    // If the system is neither Linux or Windows, throw exception
    if (command == null) {
    System.out.println("command equals null");
    try {
    throw new Exception("Can't identify OS");
    } catch (Exception e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    // Having built the command, running it with Runtime.exec
    File f = new File(credFileName);
    // setting up process, getting readers and writers
    Process extraction = null;
    BufferedOutputStream writeCred = null;
    // executing command - note -o option does not create output
    // file, or write anything to it, for Linux
    try {
    extraction = Runtime.getRuntime().exec(command);
    } catch (IOException e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    // Dealing with the the output of the command; think -o
    // option in command should just write the credential but dealing with output anyway
    BufferedWriter CredentialOut = null;
    OutputStream line;
    try {
    CredentialOut = new BufferedWriter (
    new OutputStreamWriter(
    new FileOutputStream(credFileName)));
    catch (FileNotFoundException e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    // writing out the output; currently having problems because I am trying to run
    }

    My error is due to the nickname "-n <nickname" parameter error. I think the problem is having a double quotes around my nickname, but if I take out the double quotes around my nickname "Jana Test's ID" won't work either because there are spaces between the String. Error below:
    Command is: /usr/bin/pk12util -o jtest.p12 -n "Jana Test's Development ID" -d /home/jnguyen/.mozilla/firefox/zdpsq44v.default -K test123 -w test123 -W test123
    Read from standard outputStreamjava.io.PrintStream@19821f
    Read from error stream: "pk12util: find user certs from nickname failed: security library: bad database."
    null
    java.lang.NullPointerException
    at ExtractCert.writeCert(ExtractCert.java:260)
    at ExtractCert.main(ExtractCert.java:302)
    Code is:
    private String nickName = null;
    private void setNickname(String nicknameIn) {
    nickName = nicknameIn;
    // building the command for either Linux or Windows
    if (System.getProperty("os.name").equals("Linux")) {
    command = linuxPathPrefix + File.separator + "pk12util -o " + credFileName + " -n \"" + nickName + "\" -d " + dbDirectory + " -K " + slotpw + " -w " + slotpw + " -W " + pk12pw;
    System.out.println("System type is linux.");
    System.out.println("Command is: " + command);
    extraction = Runtime.getRuntime().exec(command);
    BufferedReader br = new BufferedReader(
    new
    InputStreamReader(extraction.getErrorStream()));
    PrintStream p = new PrintStream(extraction.getOutputStream());
    System.out.println("Read from standard outputStream" + p);

  • FTP - Not uploading to remote host server.

    Trying to use FileZilla client on Mac with Lion to FTP upload (in passive mode) files from the Mac to the remote server to build web pages. Within FileZilla, able to log in, change directories and download any available file. Only able to upload files less than ~ 600 Bytes, but not greater. Larger files will transfer only the directory name, listed with 0 bytes file size. The client FileZilla times out.
    I have 3 iMacs (all with the most recent version of OS X Lion) on a local area network without a firewall connected to my ISP through a DSL modem. All exibit the same symptoms. After bypassing the LAN router, connecting directly to the DSL modem I got the same results as well.
    Bringing in a Windows 7 Ultimate PC, connecting to the LAN through WiFi, the uploads went flawlessly.
    The trouble seems to be with Apple's OS.
    Can anyone point me in the right direction?
    Note:
    > The remote server requires passive FTP to transfer page elements.
    > My automated software for page building uses passive FTP to keep pages updated at 15 minute intervals, 24 hours a day. So, I'm not really interested in other manual options. I must get FTP passive mode to work in order to upload files.
    > I've also tried Transmit and Cyberduck with no success.

    Problem solved!
    I found out how to get FTP to work on my Macs. It was just a hunch, but I tried it and BANGERS ON! (FYI: Bangers is an English slang term for sausages, the kind that is usually enjoyed with a sparkling fermented beverage. Ergo, bangers on implies that the work is done. Time to celebrate.)
    As you know, the Macintosh is a very sturdy operating system based almost entirely on Unix, but with a candy apple shell GUI. The developers of this candy coating went to great lengths to provide transparent services to the users that once were only available to the zealous key coders of yesteryear. File Sharing is one such feature. All one has to do is turn it on and specify a folder, and that folder makes itself discoverable on the local network. Oddly though, having it on interferes with passive FTP. All I did to make passive FTP work was to inadvertently decide that maybe … just maybe … it was a problem because it was another kind of File Transfer Protocol. So, I tried turning it off and the rest is history.
    BANGERS ON!

  • I have created a Blog in iWeb and uploaded it to an FTP server.   It works fine, except that the 'Comments' facility is missing.   When I upload the blog to MobileMe   the 'Comments' facility is there and working great.   How can I solve the problem on th

    I have created a Blog in iWeb and uploaded it to an FTP server.   It works fine, except that the 'Comments' facility is missing.   When I upload the blog to MobileMe   the 'Comments' facility is there and working great.   How can I solve the problem on the FTP server Blog.

    You haven't a problem. You simply did not read the iWeb Help :

  • Uploading OS X Lion was interrupted

    Hello, uploading OS X Lion was interrupted, I can not install the new OS and MacAppStore tells me that the product is installed.
    How? Thank you in advance

    I had the same problem! Try to restart the download - if it doesnt work use following steps:
    1. Close the AppStore
    2. Go to Finder and Programs (were your Applications installed)
    3. Take the Lion App and delete it.
    4. Start the AppStore and go to "Purchased"
    5. Download Lion again
    It hope it works.

  • FTP quick upload

    When I try to download a file my option comes up FTP quick upload and asks me for a username and password after asking for "Host" and states "Quick upload is not configured". I dont wish to use FTP so how do I bypass this perhaps by disabling FTP so default download arrangement can do its stuff with the file I wish to download.Hope this makes sense??

    Probably the best solution would be to check with the person who gave you the flash drive to see what the file is supposed to be.
    Matt

  • Socket, ftp, file upload

    Hi,
    I'm writting a library to manage ftp socket connections in AIR app. I'd like to implement a file upload operation but I need to answer some questions first.
    1. How big should be single package of data I send to server?
    2. How often packages can be sent?
    Running through the web I found examples where people sent packages at 4kb/300ms, 10kb/120ms.
    SmartFTP client sends 128kb/??. I wrote "??" because it seems that frequency of sending packages differs in a time.
    WinSCP client allows to set a limitation on upload transfer (8 - 1024 kb/s) but it also has a "unlimited" option. How does it know what is the maximum transfer at a moment?
    When I flushed 4kb each 1ms FTP server managed to receive only a part of my packages. Then I changed 1ms to 10ms and FTP server still didn't receive all packages but it received more than in previous case. Finally I set 100ms rate and the file was transfered properly. This test makes me to belive that package size and flush frequency really matters. I'm pretty sure that event if I send packages at 100ms rate it could cause some problems in cases when internet connection is low. I hoped that server may return some response when it receives package so I could know than next package can be send but nothing like that happens.
    I also tried to flush a whole file at once because I belived that is the way to get maximum file transfer and it worked but I'm affraid it's not a good solution. I'm affraid that it may cause some problems on a server-side because of too much data at once. It's just a hunch so let me know if I'm wrong, please.
    3. How do I know if file was sent properly?
    The only thing that comed to my mind was sending SIZE command after closing passive connection and comparing local file size with remote file size. But if sizes don't match then what? Delete remote file and send it againg? It seems weird. For all my life I didn't see a situtation in which ftp client didn't manage to send a file and even if that it tried to resend it.
    4. How can I estimate upload transfer?
    I can't rely on the amount of data I send because I can send 1kb/s as well as whole file at once and it won't reflec the real transfer. I need to know somehow how much of the data I send was received be server. Again SIZE command comed to my mind. I thought that while uploading I could send SIZE command at some time interval like 1000ms and estimate by that how many bytes is received by server each second. Unfortunately server doesn't respond to SIZE command until file transfer is complete.
    I'm lack of ideas: server doesn't return any confirmation that package was received and I can't do it by checking remote file size. What else can I do?
    If you can't help me I'll be glad if you poit me out a place where I could introduce my problem. It's difficult to find a forum about wrtting ftp client issues

    Thanks Kennethkawamoto2, now i knew the reason, but still i am getting error for crossdomain.xml , when moving flash on production.
    I am putting it as below,
    Security.loadPolicyFile('xmlsocket://ipaddress:80/crossdomain.xml');
    can anybody help?
    much appreciated,
    Meghana

  • Mac OS X 10.7 Lion and Transmit Rate

    Since I upgraded to Lion the transmit rate has dropped from being reported at 450 in Snow Leopard to 216 sometimes 349 in Lion. Nothing has changed hardware-wise apart from upgrading to Lion only.

    Tried unsuccesfully to remove my previous post.
    This the correct EDITED version:
    This is an older post, but…
    A visit to the original applejack at sourceforge.net yesterday, and drilling down through its links, does not specifically that there is no current version for Lion 10.7.x.
    http://sourceforge.net/projects/applejack/?source=directory
    I know that it's not uncommon for an author of freeware not to keep the site updated, however.
    Does anyone have definitive information on this?
    ~~~~~~~~
    EDITED to remove a reference to some misinformation I had received. 
    Sorry. 

  • Since upgrading to Lion, my time machine backups are failing - error message: The backup disk image "/Volumes/Jackie Scanlon's Time Caps/Jacqueline Drabczynska's MacBook.sparsebundle" could not be accessed (error -1). Any ideas?

    Since upgrading my Macbook to Lion, the time machine backups are failing - error message: "The backup disk image “/Volumes/Jackie Scanlon's Time Caps/Jacqueline Drabczynska’s MacBook.sparsebundle” could not be accessed (error -1)."  I have rebooted the TIme Capsule and it worked OK, but don't want to do that every time.  Any suggestions?  Thanks

    Any new info on this? 
    I had the exact same problem and went crazy and spent a hecka lot of time trying to deal with my brand new 2TB Time Capsule and almost brand new MacBook Pro.  Then I thought I fixed it...and I tried SO MANY things, I don't really know what did it...except taking out any apostrophe's in names of stuff that Apple puts in there...BUT...now it's back.
    Grrr...

  • Can't Upload Large Files (Upload Fails using Internet Explorer but works with Google Chrome)

    I've been experience an issue uploading large (75MB & greater) PDF files to a SharePoint 2010 document library. Using normal upload procedures using Internet Explorer 7 (our company standard for the time being) the upload fails. No error message is thrown,
    the upload screen goes away and the page refreshes and the document isn't there. I tried upload multiple and it says throws a failed error after a while.
    Using google chrome I made an attempt just to see what it did and the file using the "Add a document" uploaded in seconds. Can't figure out why one browser worked and the other doesn't. We are getting sporadic inquiries with the same issue.
    We have previously setup large file support in the appropriate areas and large files are uploaded to the sites successfully. Any thoughts?

    File size upload has to be configured on the server farm level. Your administrator most likely set
    up the limit to size of files that can be uploaded. This size can be increased and you would then be able to upload your documents.

  • When trying to install Mountain Lion I get an error message, Failed, recovery can't be created

    When trying to install Mountain Lion I get an error message, Failed, recovery can't be created

    My Mountain Lion install failed for the following reason:
    OS X can't be installed on the disk Macintosh HD, because a recovery system can't be created.
    The message went on:
    Visit www.apple.com/support/no-recovery to learn more.
    The page is about a different failure, but I'm assuming the reason for my failure is this one:
    The disk has a non-standard Boot Camp partition setup, in which further partitioning was performed after running Boot Camp Assistant, or the configuration that Boot Camp Assistant created was manually modified.
    The cure involves erasing the entire HD and starting from scratch, which in my case would involve backing up both the Mac and Windows sides, setting up Boot Camp again, reinstalling Windows XP and recovering everything from backups on both sides. I would rather not have Mountain Lion than go through all that, and I think it's unfair for Apple to expect me to.
    Because I don't recall doing anything off-piste when I set up Boot Camp in the first place (for a start, I'm not clever enough), I consider this episode an inadequacy in the Mountain Lion installer. As I won't be using the download, is it possible to get my money back?

  • DW CS4 ftp not uploading css

    Hi all.
    Ive edited my css on my site and tried to upload it using dw cs4 ftp, it uploads all new images and stuff but not the css.
    This is the modified css having just added the label rule (in green):
    .page-container .main .main-content .column1-unit v2 {
        font-size: 130%;
        line-height: 1.5em;
        font-weight: bolder;
        color: #900;
    .page-container .main .main-content .column1-unit p img {
        float: left;
    label {
        display:table;
    And here's whats on the site AFTER having uploaded the one above:
    .page-container .main .main-content .column1-unit p v1 {
         color: #F00;
         font-size: 120%;
         line-height: 1.5em;
         font-weight: bold;
         text-decoration: blink;
    .page-container .main .main-content .column1-unit v2 {
         font-size: 130%;
         line-height: 1.5em;
         font-weight: bolder;
         color: #900;
    So as you can see it hasnt over written the origional css, ive even tried to delete it through the ftp clien to no avail.
    This is quite urgent and desperatly need help, sure its some setting but I cant figure it out.
    Regards

    Below is the CSS in the CSS folder at 10 AM est.  Your green code is in it
    label {
         display:table;
    /*   Design:   Multiflex-3 Update-7 / Layout-5               */
    /*   File:     Global layout structure                       */
    /*   Author:   Wolfgang                                      */
    /*   Date:     January 15, 2007                              */
    /*   Homepage: wwww.1-2-3-4.info                             */
    /*   License:  Fully open source without restrictions.       */
    /*             Please keep footer credits with a link to     */
    /*             Wolfgang (www.1-2-3-4.info). Thank you!       */
    /*  GLOBAL  */
    /* NON-HEADER */
    *{padding:0; margin:0;}
    body {font-size:62.5%; background-color:rgb(255,255,255); font-family:verdana,arial,sans-serif;} /*Font-size: 1.0em = 10px when browser default size is 16px*/
    .page-container {width:900px; margin:0px auto; margin-top:10px; margin-bottom:10px; border:solid 1px rgb(150,150,150); font-size:1.0em;}
    .main {
         clear:both;
         width:900px;
         padding-bottom:30px;
         background-color: transparent;
         background-image: url(../img/bg_main_withnav_reverse.jpg);
         background-repeat: repeat-y;
         background-position: left top;
    .main-navigation {
         display:inline /*Fix IE floating margin bug*/;
         float:right;
         width:180px;
         overflow:visible !important /*Firefox*/;
         overflow:hidden /*IE6*/;
         background-image: url(../img/advert.jpg);
         height: 700px;
         background-repeat: no-repeat;
         padding-right: 10px;
    .main-content {display:inline; /*Fix IE floating margin bug*/; float:left; width:440px; margin:0 0 0 30px; overflow:visible !important /*Firefox*/; overflow:hidden /*IE6*/;}
    .page-container .main .main-content .column1-unit p img {
         border-top-color: #FFF;
         border-right-color: #FFF;
         border-bottom-color: #FFF;
         border-left-color: #FFF;
    .main-subcontent {display:inline /*Fix IE floating margin bug*/; float:left; width:185px; margin:0 0 0 15px; overflow:visible !important /*Firefox*/; overflow:hidden /*IE6*/;}
    .footer {clear:both; width:900px; padding:1.0em 0 1.0em 0; background:rgb(225,225,225) url(../img/bg_foot.jpg) no-repeat; font-size:1.0em; overflow:visible !important /*Firefox*/; overflow:hidden /*IE6*/;}
    /* --- For alternative headers START PASTE here --- */
    /* HEADER */
    .header {width:900px; font-family:"trebuchet ms",arial,sans-serif;}
    .header-top {
         width:900px;
         height:80px;
         overflow:visible !important /*Firefox*/;
         overflow:hidden /*IE6*/;
         background-color: rgb(240,240,240);
         background-image: url(../img/bg_head_top.jpg);
    .header-middle {
         width:900px;
         height:150px;
         overflow:visible !important /*Firefox*/;
         overflow:hidden /*IE6*/;
         background-color: rgb(230,230,230);
         background-image: url(../img/bg_head_middle.jpg);
    .header-bottom {
         width:900px;
         height:40px;
         background-image: url(../img/bg_head_bottom_nav.jpg);
         background-repeat: no-repeat;
    .header-breadcrumbs {clear:both; width:900px; padding:1.0em 0 1.5em 0; background:rgb(255,255,255) url(../img/bg_head_breadcrumbs.jpg) repeat-y;}
    /*  HEADER SECTION  */
    .sitelogo {width:60px; height:40px; position:absolute; z-index:1; margin:22px 0 0 20px; background:url(../img/bg_head_top_logo.jpg); }
    .sitename {width:300px; height:45px; position:absolute; z-index:1; margin:20px 0 0 90px; overflow:visible !important /*Firefox*/; overflow:hidden /*IE6*/;}
    .sitename h1 {font-size:240%;}
    .sitename h2 {margin:-4px 0 0 0; color:rgb(125,125,125); font-size:120%;}
    .sitename a {text-decoration:none; color:rgb(125,125,125);}
    .sitename a:hover {text-decoration:none; color:rgb(50,50,50);}
    .nav0 {width:350px; position:absolute; z-index:2; margin:25px 0 0 0; margin-left:550px !important /*Non-IE6*/; margin-left:553px /*IE6*/;}
    .nav0 ul {float:right; padding:0 20px 0 0;}
    .nav0 li {display:inline; list-style:none;}
    .nav0 li a {padding:0 0 0 3px;}
    .nav0 a:hover {text-decoration:none;}
    .nav0 a img {height:14px; border:none;}
    .nav1 {width:350px; position:absolute; z-index:3; margin:45px 0 0 550px;}
    .nav1 ul {float:right; padding:0 15px 0 0; font-weight:bold;}     
    .nav1 li {display:inline; list-style:none;}
    .nav1 li a {display:block; float:left; padding:2px 5px 2px 5px; color:rgb(125,125,125); text-decoration:none; font-size:120%;}
    .nav1 a:hover {text-decoration:none; color:rgb(50,50,50);}
    .sitemessage {
         width:400px;
         height:120px;
         position:absolute;
         z-index:1;
         margin:20px 0 0 480px;
         color:#BEBEBE; /*overflow:visible !important /*Activate if Firefox print problems*/
         overflow:hidden /*IE6*/;
         left: 340px;
         top: 96px;
    .sitemessage h1 {width:400px; text-align:right; font-size:230%;}
    .sitemessage h2 {float:right; width:320px; margin:8px 0 0 0; text-align:right; line-height:100%; font-size:160%;}
    .sitemessage h3 {float:right; width:320px; margin:10px 0 0 0; text-align:right; font-size:140%;}
    .sitemessage h3 a {text-decoration:none; color:rgb(234,239,247);}
    .sitemessage h3 a:hover {text-decoration:none; color:rgb(50,50,50);}
    /*Drop-down menu*/
    .nav2 {
         float:left;
         width:78%;
         border:none;
         color:rgb(75,75,75);
         font-size:130%;
         background-image: none;
         background-repeat: no-repeat;
         margin-right: 11%;
         margin-left: 11%;
    } /*Color navigation bar normal mode*/
    .nav2 ul {list-style-type:none;}
    .nav2 ul li {
         float:left;
         position:relative;
         z-index:auto !important /*Non-IE6*/;
         z-index:1000 /*IE6*/;
    .nav2 ul li a {
         float:none !important /*Non-IE6*/;
         float:left /*IE-6*/;
         display:block;
         height:3.1em;
         line-height:3.1em;
         padding:0 16px 0 16px;
         text-decoration:none;
         font-weight:bold;
         color: #FFF;
    .nav2 ul li ul {display:none; border:none;}
    /*Non-IE6 hovering*/
    .nav2 ul li:hover a {
         text-decoration:none;
    } /*Color main cells hovering mode*/
    .nav2 ul li:hover ul {display:block; width:10.0em; position:absolute; z-index:999; top:3.0em; margin-top:0.1em; left:0;}
    .nav2 ul li:hover ul li a {
         display:block;
         width:10em;
         height:auto;
         line-height:1.3em;
         margin-left:-1px;
         padding:4px 16px 4px 16px;
         border-left:solid 1px rgb(175,175,175);
         border-bottom: solid 1px rgb(175,175,175);
         background-color:#F00;
         font-weight:normal;
         color:#F00;
    } /*Color subcells normal mode*/
    .nav2 ul li:hover ul li a:hover {
         text-decoration:none;
    } /*Color subcells hovering mode*/
    /*IE6 hovering*/
    .nav2 table {position:absolute; top:0; left:0; border-collapse:collapse;}
    .nav2 ul li a:hover {
         text-decoration:underline;
    } /*Color main cells hovering mode*/
    .nav2 ul li a:hover ul {display:block; width:10.0em; position:absolute; z-index:999; top:3.1em; t\op:3.0em; left:0; marg\in-top:0.1em;}
    .nav2 ul li a:hover ul li a {display:block; w\idth:10.0em; height:1px; line-height:1.3em; padding:4px 16px 4px 16px; border-left:solid 1px rgb(175,175,175); border-bottom: solid 1px rgb(175,175,175); background-color:rgb(237,237,237); font-weight:normal; color:rgb(50,50,50);} /*Color subcells normal mode*/
    .nav2 ul li a:hover ul li a:hover {background-color:rgb(210,210,210); text-decoration:none;} /*Color subcells hovering mode*/
    .header-breadcrumbs ul {float:left; width:560px; list-style:none; padding:0 0 0 15px; font-family:verdana,arial,sans-serif;}
    .header-breadcrumbs ul li {display:inline; padding:0 0 0 10px; background:transparent url(../img/bg_bullet_arrow.gif) no-repeat 0 50%; font-weight:bold; color:rgb(125,125,125); font-size:100%;}
    .header-breadcrumbs ul a {color:rgb(70,122,167); text-decoration:none;}
    .header-breadcrumbs ul a:hover {color:rgb(42,90,138); text-decoration:underline;}
    .header-breadcrumbs .searchform {float:right; width:285px; padding:0 17px 0px 0px !important /*Non-IE6*/; padding:0 12px 0px 0px /*IE6*/;}
    .header-breadcrumbs .searchform form fieldset {float:right; border:none;}
    .header-breadcrumbs .searchform input.field {width:10.0em; padding:0.2em 0 0.2em 0; border:1px solid rgb(200,200,200); font-family:verdana,arial,sans-serif; font-size:120%; }
    .header-breadcrumbs .searchform input.button {width:3.0em; padding:1px !important /*Non-IE6*/; padding:0 /*IE6*/; background:rgb(230,230,230); border:solid 1px rgb(150,150,150); text-align:center; font-family:verdana,arial,sans-serif; color:rgb(150,150,150); font-size:120%;}
    .header-breadcrumbs .searchform input.button:hover {cursor:pointer; border:solid 1px rgb(80,80,80); background:rgb(220,220,220); color:rgb(80,80,80);}
    /* --- For alternative headers END PASTE here --- */
    /*  MAIN SECTION  */
    /* MAIN NAVIGATION */
    .main-navigation .round-border-topleft {width:10px; height:10px; position:absolute; z-index:100; margin:0; background:url(../img/bg_corner_topleft.gif) no-repeat;}
    /* MAIN CONTENT */
    .column1-unit {width:440px;  margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
    .column2-unit-left {float:left; width:200px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
    .column2-unit-right {float:right; width:200px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
    .column3-unit-left {float:left; width:120px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
    .column3-unit-middle {float:left; width:120px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/; margin-left:40px;}
    .column3-unit-right {float:right; width:120px; margin-bottom:10px !important /*Non-IE6*/; margin-bottom:5px /*IE6*/;}
    /* MAIN SUBCONTENT */
    .subcontent-unit-border {width:183px; margin:0 0 2.0em 0; padding:0 0 5px 0; border:solid 1px rgb(190,190,190); background:rgb(235,235,235);}
    .subcontent-unit-border-green {
         width:183px;
         margin:0 0 2.5em 0;
         padding:0 0 10px 0;
         border:solid 1px rgb(232,177,13);
         background-color:rgb(248,224,150);
    .subcontent-unit-border-blue  {width:183px; margin:0 0 2.5em 0; padding:0 0 10px 0; border:solid 1px rgb(137,170,214); background-color:rgb(213,225,240);}
    .subcontent-unit-border-orange {
         width:183px;
         margin:0 0 2.5em 0px;
         padding:0 0 10px 0;
         border:solid 1px rgb(160,214,81);
         background-color:rgb(217,239,185);
    .subcontent-unit-noborder {width:185px; margin:0 0 2.5em 0; padding:0 0 10px 0; background:rgb(235,235,235);}
    .subcontent-unit-noborder-green {width:185px; margin:0 0 2.5em 0; padding:0 0 10px 0; background-color:rgb(217,239,185);}
    .subcontent-unit-noborder-blue  {width:185px; margin:0 0 2.5em 0; padding:0 0 10px 0; background-color:rgb(213,225,240);}
    .subcontent-unit-noborder-orange {width:185px; margin:0 0 2.5em 0; padding:0 0 10px 0; background-color:rgb(248,224,150);}
    .round-border-topleft {width:10px; height:10px; position:absolute; z-index:100; background:url(../img/bg_corner_topleft.gif) no-repeat; margin-top:-1px; margin-left:-1px;}
    .round-border-topright {width:10px; height:10px; position:absolute; z-index:100; background:url(../img/bg_corner_topright.gif) no-repeat; margin-top:-1px; margin-left:174px;}
    .round-noborder-topleft {width:10px; height:10px; position:absolute; z-index:100; background:url(../img/bg_corner_topleft.gif) no-repeat; margin-top:0px; margin-left:0px;}
    .round-noborder-topright {width:10px; height:10px; position:absolute; z-index:100; background:url(../img/bg_corner_topright.gif) no-repeat; margin-top:0px; margin-left:175px;}
    /*  FOOTER SECTION  */
    .footer p {line-height:1.3em; text-align:center; color:rgb(125,125,125); font-weight:bold; font-size:110%;}
    .footer p.credits {font-weight:normal;}
    .footer a {text-decoration:underline; color:rgb(125,125,125);}
    .footer a:hover {text-decoration:none; color:rgb(0,0,0);}
    .footer a:visited {color:rgb(0,0,0);}
    /*  6. CLEAR FLOATS  */
    .page-container:after, .header:after, .header-breadcrumbs:after, .main:after, .main-navigation:after, .main-content:after, .main-content div:after, .main-subcontent:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
    .column1-unit:after, .column2-unit-left:after, .column2-unit-right:after, .column3-unit-left:after, .column3-unit-middle:after, .column3-unit-right:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
    .subcontent-unit-border:after, .subcontent-unit-noborder:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
    .subcontent-unit-border-blue:after, .subcontent-unit-border-green:after, .subcontent-unit-border-orange:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
    .subcontent-unit-noborder-blue:after, .subcontent-unit-noborder-green:after, .subcontent-unit-noborder-orange:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
    .footer:after, p:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
    .clear-contentunit {clear:both; width:440px; height:0.1em; border:none; background:rgb(210,210,210); color:rgb(210,210,210);}
    /*  PRINTING and MISCELLANEOUS  */
    @media print {.header-top {width:900px; height:80px; background:rgb(240,240,240); overflow:visible !important /*Firefox*/; overflow:hidden /*IE6*/;}}
    @media print {.header-breadcrumbs {width:900px; background:transparent;}}
    @media print {.nav2 {float:left; width:900px; border:none; background:rgb(240,240,240); color:rgb(75,75,75); font-size:1.0em; font-size:130%;}} /*Color navigation bar normal mode*/
    @media print {.main {clear:both; width:900px; padding-bottom:30px; background:transparent;}}
    @media print {.main-navigation {display:inline /*Fix IE floating margin bug*/; float:left; width:199px; border-right:solid 1px rgb(200,200,200); border-bottom:solid 1px rgb(200,200,200); background-color:rgb(240,240,240); overflow:visible !important /*Firefox*/; overflow:hidden /*IE*/;}}
    @media print {.footer {clear:both; width:900px; height:3.7em; padding:1.1em 0 0; background:rgb(240,240,240); font-size:1.0em; overflow:visible !important /*Firefox*/; overflow:hidden /*IE6*/;}}
    #effect1 {
         color: #F00;
         font-size: 120%;
         font-weight: bold;
         text-decoration: blink;
         line-height: 1.5em;
    .page-container .main .main-content .column1-unit p strong v {
         color: #900;
         font-weight: bolder;
         text-decoration: blink;
         font-size: 120%;
         line-height: 1.5em;
    .page-container .main .main-content .column1-unit p v1 {
         color: #F00;
         font-size: 120%;
         line-height: 1.5em;
         font-weight: bold;
         text-decoration: blink;
    .page-container .main .main-content .column1-unit v2 {
         font-size: 130%;
         line-height: 1.5em;
         font-weight: bolder;
         color: #900;
    .page-container .main .main-content .column1-unit p img {
         float: left;
    label {
         display:table;

  • FTP clients/upload only changed pages

    I've been reading all the posts related to uploading sites created with iWeb to a non .Mac acccount using various FTP clients, and just want to make sure I am understanding this correctly. I use Fetch to upload my two sites to a godaddy.com account. No problems, everything works fine. My sites don't have a lot of pages right now, so I don't care that the whole thing is uploaded every time I make a small change or add a new page. But if my site increases in size & takes a long time to upload, I'd like there to be a way to only upload the changed or new pages. Am I correct in thinking that as of now, none of the FTP clients available are able to do that?

    Hi,
    you're right: none of the FTP clients is able to do that with iWeb.
    That's what I think why it is so (yet not 100% sure): FTP clients compare the file size and the date a file was edited. If they see it changed they upload that file. If not they kind of skip it.
    The "problem" now is that when you export an iweb-website to a folder the files are marked as "created the day and time" you exported it. And that's why (I repeat, I'm not 100% sure) the ftp client doesn't skip the files because the answer from the server is "the file on the computer is newer than the file I have".
    (To the pros who read that: please correct me if I'm wrong so that I can learn and don't make mistakes twice...)
    BUT WHAT YOU CAN DO is manually selct the files you want to be uploaded. Say you change something in the index file, you can go to your ftp client select the index file and then upload only the index file (I do that all the time with one or more files).
    If you add pages that do not appear in the nav bar, means that on a page you have links to that pages, in your ftp client you can select the pages you added and the page you inserted the links to those pages and upload only those.
    Now I'm not sure about adding a page that appears in the nav bar, I would try it but my page has a lot of pages and it takes forever to export to folder but you could try... (please tell me the outcome) But I think that it works with those pages too (I think the nav bar will be updated in the whole site even if not re-uploading them all)
    Reagrds,
    Cédric (please someone tell me what I didn't know yet, Thanks!)

Maybe you are looking for