Uploading with ftp client.

I am constantly updating my site on iweb but am wondering the best way to upload it. I use captain ftp and upload the whole site again everytime i update it. Is this right? Is it not using all my allocated data transfer limit.

Michael,
What you wrote is basically what I understood I had to do but I hoped there was a better way than uploading manually.
In fact, even if iWeb has the BAD habit to re-create your whole site (especially when you add a new page) thus making large sites very difficult to manage (my poor Mac takes two hours to do that with my 220 MB domain file...), at least iWeb DOES know what it actually has to upload on .Mac.
Whenever you apply a change, you see icons on the left panel going red.
Unfortunately, that doesn't work with FTP publishing so you have to:
- keep track of what you have done or
- FTP upload your whole site any time you make a change or
- keep your "sites" in different domain files and make full uploads shorter
I do hope this thing is going to be solved, sooner or later: I have a .Mac account but, just as James wrote, there are many good reasons to use a third party's hosting.
At least, I'd like to be able to turn off the "Publish to .Mac" feature in the preference panel in order not to upload by mistake to .Mac a site I only upload via FTP.

Similar Messages

  • Issue with Ftp Client / Server using Sockets

    I have developed a Ftp Client and a Ftp Server. The client Connects to the Ftp Server and sends files to the ftp server. It is a multi threaded server and can have multiple clients connecting to it.
    If a client goes down...the server waits till the client comes up
    Similarly the client waits if a server goes down and reconnects when the server is again up and running
    i am having a strange issue here. When two clients go down and reconnect to the server...They take a long time to connect and transferring of files takes a long time...
    Other wise in all other scenarios the duo work properly.
    Any feedback and suggestion about this strange issue from all you java gurus out there will be deeply appreciated.
    Here is the client code
    import java.net.*;
    import java.net.Socket;
    import java.net.InetAddress;
    import java.io.*;
    import java.io.File;
    import java.util.*;
    import java.lang.*;
    import java.lang.Object;
    import javax.crypto.*;
    import java.util.regex.*;
    import javax.crypto.spec.PBEKeySpec;
    import javax.crypto.spec.PBEParameterSpec;
    import java.security.spec.AlgorithmParameterSpec;
    import java.security.spec.KeySpec;
    import java.io.InputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.File.*;
    import java.nio.channels.FileLock;
    public class  FTPClient {
         public static void main(String[] args) throws Exception
              Timer timer = new Timer("Test Timer");
              timer.scheduleAtFixedRate(new TimerTask()
                   private int counter = 0;
                                            public void run() {
                                                                     try     {                                                                                
                                                                              System.out.println(counter++);
                                                                               Socket soc=new Socket("xxx.x.x.xx",5217);
                                                                               System.out.println("Socket Initialised.");          
                                                                               transferfileClient t=new transferfileClient(soc);
                                                                               t.SendFile();
                                                                               System.out.println("run complete.");                                                                           
                                                                          catch(Exception ex)
                                                           }, 10000, 40000);
         static class transferfileClient
         Socket ClientSoc;
         DataInputStream din;
         DataOutputStream dout;
         BufferedReader br;
         transferfileClient(Socket soc)
              try
                   ClientSoc=soc;
                   din=new DataInputStream(ClientSoc.getInputStream());
                   dout=new DataOutputStream(ClientSoc.getOutputStream());
                   br=new BufferedReader(new InputStreamReader(System.in));
              catch(Exception ex)
         //encrypto routine starts
    class DesEncrypter {
           Cipher ecipher;
            Cipher dcipher;   
            // 8-byte Salt
            byte[] salt = {
                (byte)0xA9, (byte)0x9B, (byte)0xC8, (byte)0x32,
                (byte)0x56, (byte)0x35, (byte)0xE3, (byte)0x03
            // Iteration count
            int iterationCount = 19;   
            DesEncrypter(String passPhrase) {
                try {
                             // Create the key
                             KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount);
                             SecretKey key = SecretKeyFactory.getInstance(
                             "PBEWithMD5AndDES").generateSecret(keySpec);
                             ecipher = Cipher.getInstance(key.getAlgorithm());
                             dcipher = Cipher.getInstance(key.getAlgorithm());   
                             // Prepare the parameter to the ciphers
                             AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);   
                             // Create the ciphers
                             ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                             dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
                } catch (java.security.InvalidAlgorithmParameterException e) {
                } catch (java.security.spec.InvalidKeySpecException e) {
                } catch (javax.crypto.NoSuchPaddingException e) {
                } catch (java.security.NoSuchAlgorithmException e) {
                } catch (java.security.InvalidKeyException e) {
            // Buffer used to transport the bytes from one stream to another
            byte[] buf = new byte[1024];   
            public void encrypt(InputStream in, OutputStream out) {
                try {
                    // Bytes written to out will be encrypted
                    out = new CipherOutputStream(out, ecipher);   
                    // Read in the cleartext bytes and write to out to encrypt
                    int numRead = 0;
                    while ((numRead = in.read(buf)) >= 0) {
                        out.write(buf, 0, numRead);
                    out.close();
                } catch (java.io.IOException e) {
            public void decrypt(InputStream in, OutputStream out) {
                try {
                    // Bytes read from in will be decrypted
                    in = new CipherInputStream(in, dcipher);   
                    // Read in the decrypted bytes and write the cleartext to out
                    int numRead = 0;
                    while ((numRead = in.read(buf)) >= 0) {
                        out.write(buf, 0, numRead);
                    out.close();
                } catch (java.io.IOException e) {
    }     //encryptor routine ends     
         void SendFile() throws Exception
                   try
                   String directoryName; 
                   // File object referring to the directory.
                   String[] files;        // Array of file names in the directory.        
                   //directory = new File ( "C:\\FTP\\" ) ; 
                   File directory1 = new File("C:\\FTP");
                        boolean successmk = directory1.mkdir();
                        if (!successmk) {
                             // Directory creation failed /Already Exists
                        File directory = new File("C:\\FTP\\ftpc");
                        boolean successmk1 = directory.mkdir();
                        if (!successmk1) {
                             // Directory creation failed /Already Exists
                   //directory = new File ( "E:\\FTP-encrypted" ) ;           
                if (directory.isDirectory() == false) {
                    if (directory.exists() == false)
                       System.out.println("There is no such directory!");
                    else
                      System.out.println("That file is not a directory.");
                else {
                    files = directory.list();
                    System.out.println("Files in directory \"" + directory + "\":");
                    for (int i = 0; i < files.length; i++)
                             String patternStr = "xml";
                             Pattern pattern = Pattern.compile(patternStr);
                             Matcher matcher = pattern.matcher(files);
                             boolean matchFound = matcher.find();
                                       if (matchFound) {                                   
                                       System.out.println(" " + files[i]);                                        
                                       String filename;
                                       filename=files[i];                                   
                                       File f=new File(directory,filename);
                                       FileLock lock = null;                                   
                                       FileOutputStream fos = new FileOutputStream(f, true);
                                       lock = fos.getChannel().tryLock();
                                                 if (lock == null) {
                                                 System.out.println(" Failed to get the file lock: means that the file is locked by other instance.");
                                                 fos.close();
                                                 else
                                                                     InetAddress addr = InetAddress.getLocalHost();                                                                      
                                                                               // Get IP Address
                                                                               //byte[] ipAddr = addr.getAddress();
                                                                               String ip= addr.toString();                                                                      
                                                                               // Get hostname
                                                                               //String hostname = addr.getHostName();
                                       System.out.println(" Lock Acquired.");
                                       lock.release();
                                       fos.close();
                                       dout.writeUTF("SEND");
                                            dout.writeUTF(ip);
                                       dout.writeUTF(filename);
              //String msgFromServer=din.readUTF();          
    DesEncrypter encrypter = new DesEncrypter("My Pass Phrase!");
    // Encrypt
              FileInputStream fino=new FileInputStream(f);
              encrypter.encrypt(fino,
    new FileOutputStream("ciphertext.txt"));               
              fino.close();
              FileInputStream fin=new FileInputStream("ciphertext.txt");          
              int ch;
              do
                   ch=fin.read();
                   dout.writeUTF(String.valueOf(ch));
              while(ch!=-1);
              fin.close();          
              String option;
                        option=din.readUTF();
                             if((option.compareTo("Delete")==0))     
                                  boolean success = (new File("ciphertext.txt")).delete();
                                  boolean success1 = f.delete();
                                  if (success) {
                                  System.out.println("File Sent ...");
                                  if (success1) {
                                  System.out.println("--File deleted from Client ...");
         for (int j = 0; j < 999999999; j++){}
                                       }//pattermatch loop ends here
    else
                             { //System.out.println("   " + "Not an XML file-------->" +files[i]);
    for (int jb = 0; jb < 111999999; jb++){}
              }// for loop ends here for files in directory
                   }//else loop ends for directory files listing               
         System.out.println("sendfile finished...");
         return;
         }               catch(Exception ex)          {ex.printStackTrace();}                    
         }//sendfile ends here     
         public void displayMenu() throws Exception
                   System.out.println(" Send File");                    
                        SendFile();
                        return;          
    And here is the server code...
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import java.util.Date;
    import java.text.SimpleDateFormat;
    import java.text.DateFormat;
    import java.text.Format;
    import java.lang.Object;
    import java.lang.*;
    import javax.crypto.*;
    import javax.crypto.spec.PBEKeySpec;
    import javax.crypto.spec.PBEParameterSpec;
    import java.security.spec.AlgorithmParameterSpec;
    import java.security.spec.KeySpec;
    public class FTPServer
    {     public static void main(String args[]) throws Exception
         {     ServerSocket soc=new ServerSocket(5217);
              System.out.println("FTP Server Started on Port Number 5217");
              while(true)
                   System.out.println("Waiting for Connection ...");
                   transferfile t=new transferfile(soc.accept());               
    class transferfile extends Thread
         Socket ClientSoc;
         DataInputStream din;
         DataOutputStream dout;     
         transferfile(Socket soc)
         {     try
              {     ClientSoc=soc;                              
                   din=new DataInputStream(ClientSoc.getInputStream());
                   dout=new DataOutputStream(ClientSoc.getOutputStream());
                   System.out.println("FTP Client Connected ...");
                   System.out.println("External IP of Client ..." + ClientSoc.getInetAddress());
                   //System.out.println("FTP Client Connected ..." + ClientSoc.getRemoteSocketAddress());
                   start();               
              catch(Exception ex)
    //encrypto routine starts
    class DesEncrypter {
            Cipher ecipher;
            Cipher dcipher;   
            // 8-byte Salt
            byte[] salt = {
                (byte)0xA9, (byte)0x9B, (byte)0xC8, (byte)0x32,
                (byte)0x56, (byte)0x35, (byte)0xE3, (byte)0x03 };   
            // Iteration count
            int iterationCount = 19;   
           DesEncrypter(String passPhrase) {
                try {
                    // Create the key
                    KeySpec keySpec = new PBEKeySpec(passPhrase.toCharArray(), salt, iterationCount);
                    SecretKey key = SecretKeyFactory.getInstance(
                        "PBEWithMD5AndDES").generateSecret(keySpec);
                    ecipher = Cipher.getInstance(key.getAlgorithm());
                    dcipher = Cipher.getInstance(key.getAlgorithm());   
                    // Prepare the parameter to the ciphers
                    AlgorithmParameterSpec paramSpec = new PBEParameterSpec(salt, iterationCount);   
                    // Create the ciphers
                    ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
                    dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
                } catch (java.security.InvalidAlgorithmParameterException e) {
                } catch (java.security.spec.InvalidKeySpecException e) {
                } catch (javax.crypto.NoSuchPaddingException e) {
                } catch (java.security.NoSuchAlgorithmException e) {
                } catch (java.security.InvalidKeyException e) {
            // Buffer used to transport the bytes from one stream to another
            byte[] buf = new byte[1024];   
            public void encrypt(InputStream in, OutputStream out) {
                try {
                    // Bytes written to out will be encrypted
                    out = new CipherOutputStream(out, ecipher);   
                    // Read in the cleartext bytes and write to out to encrypt
                    int numRead = 0;
                    while ((numRead = in.read(buf)) >= 0) {
                        out.write(buf, 0, numRead);
                    out.close();
                } catch (java.io.IOException e) {
            public void decrypt(InputStream in, OutputStream out) {
                try {
                    // Bytes read from in will be decrypted
                    in = new CipherInputStream(in, dcipher);   
                    // Read in the decrypted bytes and write the cleartext to out
                    int numRead = 0;
                    while ((numRead = in.read(buf)) >= 0) {
                        out.write(buf, 0, numRead);
                        //added later on
                        in.close();                    
                    out.close();
                } catch (java.io.IOException e) {
    }     //encryptor routine ends
    //not implemented right now as we arent using the ftp server to download stuff...can be activated later on if we want
         void SendFile() throws Exception
              String filename=din.readUTF();
              File f=new File(filename);
              if(!f.exists())
                   dout.writeUTF("File Not Found");
                   return;
              else
              {     dout.writeUTF("READY");
                   FileInputStream fin=new FileInputStream(f);
                   int ch;
                   do
                        ch=fin.read();
                        dout.writeUTF(String.valueOf(ch));
                   while(ch!=-1);     
                   fin.close();     
                   dout.writeUTF("File Received Successfully");                                   
         String Compare(String filename) throws Exception
                        ///dout.writeUTF("entering compare");
                        String dateTempString=new String();
                        Date dateValue=new Date();
                        SimpleDateFormat formatter = new SimpleDateFormat ("hhmmss");
                        dateTempString = formatter.format(dateValue);
                        File dir1 = new File("C:\\FTPnew");
                        boolean success2 = dir1.mkdir();
                        if (!success2) {
                             // Directory creation failed /Already Exists
                        File dir = new File("C:\\FTPnew\\server");
                        boolean success = dir.mkdir();
                        if (!success) {
                             // Directory creation failed /Already Exists
                        File ftemp=new File(dir,dateTempString + filename);
                        File fnewtemp=new File(dir,"new-enc-"+filename);
                        // Create encrypter/decrypter class
                        DesEncrypter encrypter = new DesEncrypter("My Pass Phrase!");
                        FileOutputStream fout=new FileOutputStream(fnewtemp);     
                        int ch;
                        String temp;
                        do
                        {     temp=din.readUTF();
                             ch=Integer.parseInt(temp);
                             if(ch!=-1)
                                  fout.write(ch);                         
                        }while(ch!=-1);
                        fout.close();
                        //dout.writeUTF("written temp en file");
                        // Decrypt
                    encrypter.decrypt(new FileInputStream(fnewtemp),
                    new FileOutputStream(ftemp));
                        //String Option;
                        dout.writeUTF("Delete");                    
                        System.out.println("File Upload Successfull--Duplicate file with timestamp Created");          
                        boolean success1 = fnewtemp.delete();                    
                        return "hello" ;
         void ReceiveFile() throws Exception
              String ip=din.readUTF();
              System.out.println("\tRequest Coming from Internal IP Address : "+ ip);
              String filename=din.readUTF();
              if(filename.compareTo("File not found")==0)
                   return;
              // Destination directory
       File dir11 = new File("C:\\FTPnew");
                        boolean success22 = dir11.mkdir();
                        if (!success22) {
                             // Directory creation failed /Already Exists
                        File dir = new File("C:\\FTPnew\\server");
                        boolean success21 = dir.mkdir();
                        if (!success21) {
                             // Directory creation failed /Already Exists
              File f=new File(dir ,"enc-"+filename);
              File fe=new File(dir,filename);
              String option;
              if(fe.exists())
                   //dout.writeUTF("File Already Exists");
                   String compvalue = Compare(filename);
                   //dout.writeUTF(compvalue);
                   if(compvalue.compareTo("hello")==0)
                        //dout.writeUTF("Transfer Completed");
                        return;
                   option=din.readUTF();
              else
                   //dout.writeUTF("SendFile");
                    option="Y";
                   if(option.compareTo("Y")==0)
                        // Generate a temporary key.       
            // Create encrypter/decrypter class
             DesEncrypter encrypter = new DesEncrypter("My Pass Phrase!");
                 FileOutputStream fout=new FileOutputStream(f);                    
                        int ch;
                        String temp;
                        do
                        {     temp=din.readUTF();
                             ch=Integer.parseInt(temp);
                             if(ch!=-1)
                                  fout.write(ch);                         
                        }while(ch!=-1);
                        fout.close();                    
                        // Decrypt
                    encrypter.decrypt(new FileInputStream(f),
                    new FileOutputStream(fe));          
                        boolean success2 = f.delete();
                        dout.writeUTF("Delete");
                        System.out.println("File Upload Successfull");                    
                   else
                        return;
         public void run()
              while(true)
                   try
                   String Command=din.readUTF();
                   if(Command.compareTo("SEND")==0)
                        System.out.println("\tSEND Command Received ...");     
                        ReceiveFile();
                        continue;
                   catch(Exception ex)
                        //System.out.println("\tClient Terminated Abnormally ...........");
                        continue;

    Please note that this is not an FTP client and server. FTP is defined by a standard IETF protocol and this isn't it.
    Then, move the following lines:
    din=new DataInputStream(ClientSoc.getInputStream());
    dout=new DataOutputStream(ClientSoc.getOutputStream());
    System.out.println("FTP Client Connected ...");
    System.out.println("External IP of Client ..." + ClientSoc.getInetAddress());
    //System.out.println("FTP Client Connected ..."+ClientSoc.getRemoteSocketAddress());from the constructor into the run() method. i.e. don't do anything with the socket in the thread which handles the accept().

  • Large file uploads  with jersey client

    Hello All,
    I am getting heap spcace iissue while uploading large files via jersey client , the jvm will run out memory
    Can any one help me in understanding how can i send large file about 300mb
    via jersy client.
    code that i have wriiten is:
    WebResource webResource = client.resource(url);
    MultiPart multiPart = new MultiPart();
    FileDataBodyPart filePart = new FileDataBodyPart("file", file,
    MediaType.APPLICATION_OCTET_STREAM_TYPE);
    multiPart.bodyPart(filePart);
    multiPart.bodyPart(new FormDataBodyPart("code", code));
    ClientResponse response = webResource.type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,
    multiPart);
    Thanks

    Thanks for ur reply but i have tried it by using
    client.setChunkedEncodingSize(10000);
    WebResource webResource = client.resource(url);
              // file to multi part Request
              MultiPart multiPart = new MultiPart();
              FileDataBodyPart filePart = new FileDataBodyPart("file", file,
                        MediaType.APPLICATION_OCTET_STREAM_TYPE);
              multiPart.bodyPart(filePart);
              multiPart.bodyPart(new FormDataBodyPart("code",code));
              ClientResponse response = null;
                   response = webResource.type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,
                             multiPart);
    Now the file are easily send in chunked but the problem is i am not able to receive value of code now..
    On the other server where i am sending this file along code is:
    public void upload(@RequestParam("file") MultipartFile uploadedFile,
                   @RequestParam("code") String code,
                   Writer responseWriter) throws IOException
    }

  • Uploading with FTP

    I am trying to use Go Daddy to host one of my sites. They
    have assigned me an IP address but when I try to connect with
    either WS FTP or FileZilla the IP address is different. I cannot
    connect at all.
    The answers I am getting from Go Daddy are lame at best and
    of no help whatsoever.
    What do I do to fix the problem?

    What is the IP address they have given you?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Bluzebra" <[email protected]> wrote in
    message
    news:f853k3$rp0$[email protected]..
    >I am trying to use Go Daddy to host one of my sites. They
    have assigned me
    >an
    > IP address but when I try to connect with either WS FTP
    or FileZilla the
    > IP
    > address is different. I cannot connect at all.
    >
    > The answers I am getting from Go Daddy are lame at best
    and of no help
    > whatsoever.
    >
    > What do I do to fix the problem?
    >

  • Time needed for uploading with FTP ?

    Is this procedure instant and painless, or is there an incubation time when you just wait ? I want to see how the site looks in the browsershot site - which seems to have a long waiting list- and feel I ought to be pressing onwards ( I'm trying to have the site up-and-running by Friday since there's a marvellous publicity chance this weekend - my site's offering services. ) Kay.

    Depending on the size of you site it should not take long to upload at all. It also depends on your internet connection too and what speed of broadband you have if you have it.
    If you use Cyberduck to upload, then you can see the site uploading before your eyes and can watch it. My 2.2 Mb site only took a matter of minutes to upload.

  • Publishing iWeb site with FTP

    My registered domain is www.peuterspeelzaalrisdam.nl/
    When I upload with FTP iWeb is adding 'file' to my domain, so www.peuterspeelzaalrisdam.nl/file
    So nobody will find the site because of this added 'file'
    What can I do to change that???? Anybody solutions?
    regards Hans de Lange - the Netherlands

    Publish to a folder and upload only the contents of the folder named "file" using a free ftp app like Cyberduck.

  • FTP client which supports NTLM through WSA

    We are looking into a FTP Client which supports NTLM in combination with
    our WSA proxy servers.
    With IE or Firefox browser it works fine.
    Currently i.am testing Filzilla version 3.3.4.1 "http://filezilla-project.org" but i can't
    seem to get it to work.
    On the internet there is not much information available.
    Anyone have expierence with FTP clients?

    Have contacted support and they gave me the following information:
    You should be able to use the Filezilla FTP client along with NTLM authentication. The settings for Filezilla would depend on
    the below factors & settings:
    Using Native FTP Proxy on IronPort
    1)      Check the Native FTP port and authentication mechanism configured on IronPort under:
    a.       GUI --> Security Services --> FTP proxy
    b.      Check the Port and authentication format
    2)      Based on the authentication format, you would need to configure settings as the below knowledge-base article:
    a.       http://tinyurl.com/nvbt5r
    Using FTP over HTTP CONNECT in Filezilla
    1)      You can configure this in Filezilla under:
    a.       'Edit' --> 'Settings' --> Generic Proxy --> HTTP 1.1 Using CONNECT method
    2)      In this section you can specify the NTLM credentials  in the below section:
    a.       Proxy Username (DOMAIN\username) and Proxy password 
    So i tried the native ftp option with
    Ironport ftp port 8021 with checkpoint auth.
    In filezilla under FTP Proxy,
    Proxy host %ipaddress%:8021
    Proxy user %domain%\%userid%
    Proxy pas  **********
    Then i get following in Filezilla log:
    Status: Using proxy IPADDRESS:8021
    Status: Connecting to IPADDRESS:8021...
    Status: Connection established, waiting for welcome message...
    Response: 220 FTP Server message!!!
    Command: USER anonymous@domain\[email protected]: 331 User name okay, need password.
    Response
    Command: PASS ***************************
    Response: 530 Login denied
    Error: Critical error
    Error: Could not connect to server
    So i think the following part goes wrong:
    Command: USER anonymous@domain\[email protected]
    If i have the correct solution i wil post it here!

  • Impossible Upload files with Filezilla FTP Client after upgrade win8 to win8.1

    Hi
    Things were working fine with win 8 but, after Upgrade to win 8.1 is not possible upload files with Filezilla  FTP Client.
    is there anyone facing same problem?
    thanks in advance for any answer to help me solve this issue 
    Regards 
    TC

    Hi,
    Please Change your transfer settings in site manager from either default or passive to active it to see what's going on.
    Also, check IE compatibility mode.
    In addition, I suggest you install all latest updates for Windows since these updates will improve and fix some known issues.
    Kate Li
    TechNet Community Support

  • I am running OS 10.7.5 on a Macbook. Problems with ftp upload

    I am running OS 10.7.5 on a Macbook. I am trying to upload to an ftp server. The connection is established with no problem but any attempt to upload files times out. This is an intermittent problem. I have been using fetch as an ftp client quuite successfully for a long time. The problem starts when there is trouble with the broadband connection. The ftp upload then falls over. I have managed to re-establish it in the past by setting up the connections from scratch. This has not worked this time. The same thing happens with two other clients that I have, so it is not specifically related to fetch. I can uplad files from PC's and by using my iphone's 3g connection as a personal hotspot. The problem seems to lie with the way the macs (the same thing happens on an older mac also running OSX) communicate with the router. I have tried with and without passive mode.
    Please can anyone help. It is driving me to distraction.
    Oh and I have just downloaded the latest security update.

    For anyone else with the same problem.
    My husband discovered the problem is with the MTU, maximum transmission unit . This article describes the problem and solution very clearly
    http://www.macgurulounge.com/manually-managing-mtu-size-in-mac-os-x/
    Our router was running at 1492 and the mac at 1500. I found that resetting to 1400 cured the problem.
    I hope this is helpful to other folk having the same problem

  • Uploading iWeb site to personal domain via FTP client (NOT .MAC)

    Hello,
    I want to upload my iweb created website to my personal domain, in other words I do not want my domain to point to my .mac address.
    I am downloading Cyberduck as my FTP client. Will I just send my whole "site" folder to my public folder at my personal domain? Will it be in the right order? How will I update each day? (Can I set up iWeb so that when I click "publish" it will update my personal domain?)
    I was planning on using some wordpress plugins to modify my site. Will this work? I am totally lost, I had no idea I needed so much background info to blog outside of .mac! I guess I just want to design with iweb, and be able to use all the tools of my AN Hosting and wordpress.
    Thanks for your help in advance!

    Will I just send my whole "site" folder to my public folder at my personal domain?
    You send the folder created by iWeb which has the same name as you gave your site inside the iWeb app, plus the index.html file which iWeb created alongside that folder.
    How will I update each day?
    By publishing again to a folder and uploading again via ftp.
    (Can I set up iWeb so that when I click "publish" it will update my personal domain?)
    No. If iWeb could do that you would not need an ftp program to start with.
    I was planning on using some wordpress plugins to modify my site.
    No idea, but generally speaking modifying iWeb to add stuff requires manual editing of the html after publishing and redoing it every time you republish.

  • Problems With FTP Upload in Leopard 10.5.3-4

    Hi, I experience a strange problem with ftp upload speed in 10.5.3-4. When I start upload a file to my trusted ftp server the upload speed starts to decrease from 300 kb/sec to 35 -40 kb/sec. It remains normal for 1-2 minutes (about 300 kb/sec) and then smoothly decreases to 35 -40 kb/sec. Pressing Stop and then Resume in Cyberduck makes speed normal for 1-2 minutes and then it starts to decrease again. It does not depend on ftp-client, it does not matter if I use either Cyberduck, Transmit or Fetch. It happens if I use either ethernet or airport connection. I have my old Powerbook with 10.4.11, it's connected to the same router with the same settings and the same time upload speed remains stable about 300 kb/sec.
    But when I transfer files from my Macbook to my old Powerbook via ftp everything is fine. And when I transfer files to ftp server of my local ISP it's also fine.
    Please, help me, I have to upload big 100 Mb files very often and it's significant difference for me 30 or 300 kb/sec
    Boris

    I'm afraid it's not just the Duck or FTP, Boris....It's many many Apps...and protocols... 10.5 appears to have ;broken',a number of file transfer protocols and Apps... (Wired and KDX are two that come to mind- precisely the same symptoms, AND some others) Apple's own 'built-in' FTP appears OK Mac-Mac, oddly enough.
    There's obviously some kind of weird Copy-Paste problem too.
    It's obviously 'fixable' or a workaround is available because several s/w mobs have released 'fixes for 10.5 file transfer Bug'
    The rest of us will just have to wait while another unannounced,unacknowledged, gaping hole in the Mac OS is quietly fixed and our expensive s/w sits unusable...
    Not really good enough, is it ?
    Like: Not being able to automatically detect a part file transfer on FTP and Auto-resume from whence you left off: something we thought was pretty cool- back in about 1984.... and absolutely essential in 86 or so.
    Boris:You will almost certainly find that it happens whatever the client-server server setup and applications or Medium... I've seen precisely what you describe happen with Airport, Cable, 10/100/1000' local' LAN...
    - and watching your throughput drop from 300K to 300 BYTES/Sec is NO FUN.
    I've spent a lot of time and money convincing potential 'Switchers' of the superiority of the Mac way over the last 20 years or so...
    I'm getting pretty tired at defending the indefensible: 'SkoolBoy Misstakes' in a 24 year old 'superior Computer.- Not Good enough, Apple.

  • The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the

    When i tried to login in inbrowserediting.adobe.com i see that:
    The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user.
    What does it mean? What is problem?

    Hi,
    I have just created my First website using Muse and Its all been uploaded to my FTP server but i cant access the in browser editing which was the whole reason why i re-done the website for my client using muse
    its saying the following
    "The FTP server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user. server configured for this site doesn't seem to match the URL you entered. Make sure that you use the Upload to FTP Host feature in Muse to publish the site directly to the final location and that you are logging on to In-Browser Editing with the same user."
    Yet i Can access my website fine "www.calmwood.com.au"
    My ftp server responds to either the IP Address or the DNS Address www.calmwood.com.au
    so i am not understanding how it thinks its different. when its fully referenced
    any help would be appreciated.
    thanks

  • IWeb's built in ftp client won't upload new files

    iWeb's built in ftp client is mad at me, refusing to upload new files. No doubt because last Sunday I asked GoDaddy to change my domain name (same site, name changed). They did. Immediately nothing would upload. GoDaddy said "Well some FTPs are picky." Problems continued so I said OK, please change the domain name back to its previous name, and all would be put right again. I thought.
    No so. iWeb's ftp client seems still offended for having been disturbed. I make a change. Save. Click Publish Site Changes. Get the window saying Content Rights. Click Continue. The blue line scrolls nicely, "Publishing will continue in the background" shows, then **"Your site has been published"**...
    ...but no changes or files have been uploaded. The old page is the same.
    Looks like I permanently po'd iWeb’s ftp. Should I give up and rebuild my site in a new folder? Try Fetch?
    I shouldn't have done that stupid thing last Sunday. Live and learn.
    Help?

    The root folder on the server is the top level one that you upload your files to.
    You publish your website files to a local folder on your Mac. This produces an index.html file and a folder with the same name as your site in iWeb.
    An FTP application transfers the files on your Mac to the root folder on the server using File Transfer Protocol.
    Unlike Cyberduck, most shareware FTP applications will show both the files on your Mac and those on the server in the same window so its just a question of browsing to the folder containing your website files on your Mac and dragging them across to the icon of the root folder on your server. The application will take care of the rest.
    The process really is just about as simple as dragging files from one folder on your Mac to another as long as you have the FTP application set up correctly.

  • Problem with using new Upload to FTP Host feature...

    I tried using the "Upload to FTP Host" feature to upload to GoDaddy.com. It worked fine the first time but now I get this message:
    Error:
    Error creating folder //images. Click Resume to try again. If this problem persists, try again later.
    I tried a few times and even waited two days but I am still getting the same message. So I tried to "Export as HTML" liked I used to do and now for some reason it will not create a CSS or Scripts folder. Only an images folder.
    Also, the first time the "Upload to FTP Host" worked for some reason not all the images were there and the transition box I have is not fading smoothly from one image to the next.
    Please help!!!
    Thanks,
    Melissa

    The issue looks like it might be related to a known issue with our FTP upload client. We currently incorrectly assume the server is configured to use / as the root direcotry. We have a fix for the issue, that will be released in an upcoming update (likely to be sooner rather than later). The workaround for it is actually pretty simple though. If you login to your FTP server, you should be able to see what directory you are at, and you can use the full path there to upload successfully.
    For example, if you login using a different FTP client, you might see something like /home/users/myuser/ in the address bar. In Muse, in the directory location, if you place /home/users/myuser you will upload to the correct directory. If you want to upload to a specific directory, simply add that to the end of the directory path.
    If you are unable to upload after following the above steps, as Abhishek says, it is likely a permissions error. Try exporting first and using a third party client to upload it and let us know if you are able to do so successfully from there.

  • Win8 clients can't write over FTPS to Win 2012 with FTP site hosted in IIS 8

    I've made an interesting discovery that is mentioned in part on other posts in other forums.  This involves IIS; however, I believe the issue rests with the Windows Server 2012 OS.
    Here's the scenario.
    Client:
    Windows 8
    almost any FTP client
    Server:
    Windows Server 2012
    FTP site hosted in IIS 8
    Problem:
    The client connects to the FTP site via FTPS (regular FTP works).  The connection is successful, and the client is able to list the directories and download content. However, the client cannot upload anything to the FTP site.
    Error: 550 The supplied message is incomplete. The signature was not verified.
    Any of the following modifications to the scenario will allow the client to upload content:
    changing the client OS to Windows 7
    changing the server OS to Windows 2008 or 2008 R2 (IIS7+)
    changing the FTP client to CoreFTP (I've tried FileZilla, the Microsoft FTP client, SmartFTP, and WinSCP)
    I found this post regarding FileZilla that states there is an SSL cipher ordering issue with Windows Server 2012 and IIS8 for FTP clients using explicit TLS:http://trac.filezilla-project.org/ticket/7910
    Their "solution" points to an MSDN blog post here:
    http://blogs.msdn.com/b/kaushal/archive/2011/10/03/taming-the-beast-browser-exploit-against-ssl-tls.aspx
    This states that you need to reorder the SSL ciphers with TLS_RSA_WITH_RC4_128_SHA as the highest priority; however, there is a limitation to the text file where you order the ciphers, 1023 characters, which is less than the total number of characters for
    all ciphers.  This means you must know which ciphers will be needed and in which order as to not break anything else.  That's not a viable workaround.
    Does anyone know if there is a patch coming down to fix this, or are there any more viable workarounds?  One would think a Windows 8 client should be able to connect via FTP with explicit TLS to an FTP hosted in IIS8 on Windows Server 2012 to upload
    content.

    Hi,
    As the MSDN blog mentioned, that currently we can only workaround the issue with provided settings. As FTP settings are now included in IIS, it is still recommended to post to IIS forum to see if there
    is any known suggestion regarding this.
    http://forums.iis.net/
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forum a great place.

Maybe you are looking for

  • Unity Express Integration with Office 365

    Hello, I have a customer that wants to purchase CME/CUE and they use office 365. Can I have integrated messaging in this scenario, as well as send their voice message as attachement to their inbox, enabling one office inbox for both mail and voice me

  • Signing a document with Reader XI

    I'm trying to sign a document with Reader XI; I can create the signature and then drag it to place it, but then it just disappears. Any ideas?

  • How to display Live Trace settings in CS3?

    I'm on CS3 - I remember before having a horizontal bar across the top showing the tool properties, but I can't figure out how to show that. Particularly for Live Trace - I want to have access to the different tool options - how do I show this at the

  • What are the limitation or drawbacks of ESB?

    Can any one let me know what are the limitation or drawbacks of ESB? Fred

  • Correcly rendering nbsp;  as default with cout tag

    I am using <c:out> to display values but if there is no value I need it to output a nbsp for formatting reasons. I can use the default property but I need to set the escapeXML property to false to render it properly however this means that if there i