The first upload takes ages! even after connected

Hi all,
I have noticed a little issue I have when uploading a single file to the remote server via SFTP, The first upload will take ages about 30 secs before completing. The activity icon will stop on one quarter for this time and then complete when ready. I have no issues with uploading after the first file has been done. This happens each time i connect to a new FTP account. I'm not too concerned about the time delay, I just hope that the connection is not being interceptered by a third party or somthing.
Could it just be that DW is communicating with the server to secure it the first time around or am i paranoid?
Using the lastest DW CC
Win 7 Home Premium, updated!
Thanks in advance.

Yes, this problem is pretty irritating to say the least.
FTP is the simplest of operations and the most fundemental. But ever since Adobe tookover Macromedia its just gone to pot.
Already I cant use the ftp for anything with more than 50 files and have to use a REAL ftp tool like fo;eZilla to who I dont pay a huge amount each month for professional software.
But waiting upto a minute for a 5kb file to upload is ridiculous. I might as well multitask with a third party tool. Nice one Adobe. I hope your shares are doing well.

Similar Messages

  • Wifi keeps scanning and dropping even after connected to home network.  Never had this issue until the update, and now my phone runs slow and terrible.  Horrible update!!  Any ideas on a fix?

    Wifi keeps scanning and dropping even after connected to home network.  Never had this issue until the update, and now my phone runs slow and terrible.  Horrible update!!  Any ideas on a fix?

    It's important that you have a steady WiFi connection, ZealousEdge. What phone do you have? Is your phone unable to connect to any WiFi network? If you can, please try deleting the saved WiFi network and re-adding it.
    AndreaS_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the "Correct Answer" button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Hi! I bought a song on itunes, and now it won't play on my computer or iPod. Itunes on my computer keeps telling me that I'm not authorized to play the song on my computer, even after reauthorizing it. Is there anything I can do to play the song?

    Hi! I bought a song on itunes, and now it won't play on my computer or iPod. Itunes on my computer keeps telling me that I'm not authorized to play the song on my computer, even after reauthorizing it. Is there anything I can do to play the song?

    Hello
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases
    http://support.apple.com/kb/ts1389
    Best of luck,
    Mario

  • How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?

    How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?
    I myself think that (for instance) "A tribe called Quest" should be sorted under "A", not "T".
    Now I can edit the sort options manually per track and/or per selection, but I would really like to just kill this "iTunes-knows-how-you-should-sort"-feature in iTunes.
    Anyone any suggestion on how to do that?
    Thanks

    Here is a modified version of one of Doug's Scripts. My modification was to add Sort Name to the list of tags that could be changed. I tried it on a single track and it worked. I recommend backing up your library first. Select the tracks you want to change (or all tracks) and run the script from the Applescript Editor.  If it works as intended, save it so you can apply it to newly imported tracks.  And, yes, I know this isn't the exact answer to your question, you want to change a preference setting in iTunes (if there is such a setting).
    Original script can be forund at http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag
    Modified script is below. Start up Applescript Editor, paste it into a new window.  Start up iTunes and select the tracks to modify.  Click Run in the Applescript Editor.  Follow the instructions.
    (* Put This In That
    v2.0 april 22 2008
    - runs as universal binary
    - adds "Show" tag
    - consolidated code
    - saved as script bundle
    v1.7 October 3, 2006
    - adds "Album Artist" as option
    v1.6 October 28, 2004
    - works around iTunes 4.7 selection bug
    v1.5 ('04/1)-- adds "grouping" tag
    Get more free AppleScripts and info on writing your own
    at Doug's AppleScripts for iTunes
    http://dougscripts.com/itunes/
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    Get a copy of the GNU General Public License by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    or visit http://www.gnu.org/copyleft/gpl.html
    -- CONSTANTS
    property allOptions : {"Song Name", "Artist", "Album", "Album Artist", "Composer", "Genre", "Comments", "Show", "Grouping", "Sort Name"}
    property my_title : "Put This In That"
    global thisTag, thatTag, theNewTags, theOriginalTags, yn
    tell application "iTunes"
              if selection is not {} then -- if tracks are selected...
                        set sel to selection
                        set numTracks to (length of sel)
                        set s to "s"
                        if numTracks is 1 then set s to ""
                        display dialog "The data from one tag REPLACES the data in another tag in all the selected tracks, with option to delete data in first tag." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title my_title giving up after 30
                        if gave up of result is true then return
                        my choose_this_tag()
                        my choose_that_tag()
                        set yn to (button returned of (display dialog "Delete data in " & thisTag & " afterwards?" buttons {"Yes", "No"} default button 2 with title my_title giving up after 45) is "Yes")
                        set oldfi to fixed indexing
                        set fixed indexing to true
                        repeat with t from 1 to numTracks
                                  tell contents of item t of sel
                                            set theOriginalTags to {get name, get artist, get album, get album artist, get composer, get genre, get comment, get show, get grouping, get sort name}
                                            set theNewTags to theOriginalTags
                                            my do_put()
                                            set {name, artist, album, album artist, composer, genre, comment, show, grouping, sort name} to theNewTags
                                  end tell
                        end repeat
                        set fixed indexing to oldfi
              else
      display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
              end if -- no selection
    end tell
    to choose_this_tag()
              tell application "iTunes"
                        set n to (choose from list allOptions with prompt ("Select a tag to get data from:") with title my_title)
                        if n is false then error number -128
                        set thisTag to (n as text)
              end tell
    end choose_this_tag
    to choose_that_tag()
              set o to {}
              repeat with t in allOptions
                        if (t as text) is not thisTag then copy t to end of o
              end repeat
              tell application "iTunes"
                        set n to choose from list o with prompt ("Use data from the " & thisTag & " tag to REPLACE data in...") with title my_title
                        if n is false then error number -128
                        set thatTag to n as text
              end tell
    end choose_that_tag
    to do_put()
              try
                        repeat with i from 1 to (length of allOptions)
                                  if thisTag is (item i of allOptions) then
                                            set thisTag_sto to (item i of theOriginalTags)
                                            exit repeat
                                  end if
                        end repeat
                        repeat with i from 1 to (length of allOptions)
                                  if thatTag is (item i of allOptions) then
                                            set (item i of theNewTags) to thisTag_sto
                                            exit repeat
                                  end if
                        end repeat
                        if yn then
                                  repeat with i from 1 to (length of allOptions)
                                            if thisTag is (item i of allOptions) then
                                                      set (item i of theNewTags) to ""
                                                      exit repeat
                                            end if
                                  end repeat
                        end if
              end try
    end do_put

  • What is the first step of an abaper after getting the FDS

    what is the first step of an abaper after getting the Functional Document ?what we have to do? how to analyze it , and how to face such interview questions on FDS TDS . any resource available.

    Hi,
    After getting the FDS , first understand the functionality of the requirment or take the help of the functional consultant and then start preparing TS ( TEchnical Specification) and do coding  and get your doe reveirewed and prepare test cases and do testign in sand box and quality environment and after having got the confrimation that the requirment is met then port it to production.
    Regards,
    Irfan
    Note: Please award helpful answers.

  • Ipod nano (5th gen) plays music on speakers even after connecting earphones...how to stop that?

    ipod nano (5th gen) plays music on speakers even after connecting earphones...how to stop that?

    thanks for the reply....i tried that and it was not working...after that i have connected to itunes and ejected it...it started behaving normally....

  • HT5569 how can i surf in my iphone 4s, even after connecting to wifi also i am not able to access net?

    how can i surf in my iphone 4s, even after connecting to wifi also i am not able to access net?

    i dont knw hw do u cal dis type of connection, dis s university wifi , am under dat using , here the thing s if somone want to connect wifi means they just hav to put proxy. i hav given evrything it also connected wel. i can c wifi signal fan in status bar.
    Thousands of users from all over the world read these forums hoping to find English, their second third or fourth language.  They make an effort to communicate in English. Try to join them.

  • Not getting internet even after connecting to wifi

    i am not getting internet even after connecting to wifi. this occured after i tried to connect my i pad mini to a public wifi. i dont know weather it is a coincidence. any solutions??

    My problem is solved. Actually i visited the apple autherised service centre. They told it may be because there was too many programs open in the background.the solution was
    1. Swipe up with four or five fingers to multitasking and then close them one by one by swiping up with a single finger
    2.Reseting the i pad by pressing the sleep and home button simultaneously
    the problem was solved on restarting

  • I'm creating a book format in Pages. I want the page count to be 1 on the first page of chapter one after the title page, table of contents, etc.. How do I do that?

    I'm creating a book format in Pages. I want the page count to be 1 on the first page of chapter one after the title page, table of contents, etc.. How do I do that?

    That is not the issue.
    Pages/OSX does not save files with crop marks and bleeds.
    It also by default saves transparency, which is involved in a lot of Pages' better features, at a rubbishy 72 dpi resolution.
    It also makes it extremely difficult to maintain mono-color like black only text, has no spot color and makes color management opaque.
    It really is only meant for amateur publishing and printing to your desktop printer.
    A commercial printer who is willing to use and print from Pages may have better results but at the cost of considerable micro-management which defeats the point of this "cheap" solution.
    Peter

  • I am unable to get beyond the "sync with iTunes" splash page after connecting my iPhone; every tab is grey. What gives?

    I am unable to get beyond the "sync with iTunes" splash page after connecting my iPhone; every tab is grey. What gives?

    Is the computer the one the device normally syncs with?
    If not, sync with the computer it normally syncs with.
    If it is, place the device in DFU mode (google it) and restore.

  • I'm trying to install a cd application and I keep getting the message 'you do not have permission to use the application FSP OS X'  Even after selecting always allow and entering my login details it still won't accept it.  Help!!..

    I'm trying to install a cd application and I keep getting the message 'you do not have permission to use the application FSP OS X'  Even after selecting always allow and entering my login details it still won't accept it.  Help!!..

    Please repost in the Final Cut Pro forum. Have you considered upgrading your machine, if you are still running Leopard your machine may be as old as 5 years old. While this should not matter you probably won't get the performance you want out of a demanding app like FCP.
    Best of luck.

  • When I try to access my original wifi name, I can't.. So I had to create a second one. the first one is still there after resetting numerous times. Any suggestions

    when I try to access my original wifi name, I can't.. So I had to create a second one. the first one is still there after resetting numerous times. Any suggestions

    Hello Oddsbodkin,
    It looks like the creator of Netflix Desktop has a site for the project here:
    https://answers.launchpad.net/netflix-desktop/
    I would try posting your question there and see if anyone else has encountered this error and has a solution.
    Cheers, Patrick

  • I can't unlock my ipod nano 4th generation.  The screen is still working, I can sync to my computer and I can see when it is charging but it stays in the mode of being locked even after I unlock it at the top.

    I can't unlock my ipod nano 4th generation.  The screen is still working, I can sync to my computer and I can see when it is charging but it stays in the mode of being locked even after I unlock it at the top. What could be wrong?

    Hi Saint09,
    Thanks for visiting Apple Support Communities.
    I'd recommend the steps in our iPod troubleshooting assistant:
    http://www.apple.com/support/ipod/five_rs/nano4gen/
    Regards,
    Jeremy

  • TS1398 Can I still switch the color of my phone even after I bought it?

    Can I still switch the color of my phone even after I bought it?

    How long have you had the phone... Where did you buy it...
    Apples No questions asked return policy is 14 days.

  • Why ill the flash player not intialize even after disabling firewall and antivisurs software

    Why will the flash player not intialize even after disabling firewall and anitvirus software?

    Windows XP and internet exployer?  I can get the flash player to begin the
    download but stops at about 50% initalization
    Greenleaf Compaction, Inc.
    142 W. Main
    P.O. Box 265
    Hopkins, MI  49328
    Phone:  1-877-552-9369
    Fax:  (269) 793-7298
    New email address: [removed]

Maybe you are looking for

  • Connect iBook to LCD TV?

    Hi, Wonder if anyone can help...I am trying to connect my iBook G3 to my Phillips LCD TV. My problem is the cable. I am using the supplied DVI to VGA connector, however my TV has the same VGA connection on it. In other words two females and it theref

  • Updated iMovie on my brand new mac mini and lost "SPEED" function.

    Updated iMovie on my brand new Mac Mini and lost "SPEED" function.

  • How to display the comma separeated values in a row in the form of coulmns?

    Hi, I have a table as shown below. Table name: Projs Project_Id Associates_List proj1 2,3,4,5 proj2 2,5,1 We are looking at moving this data into a normalized format as shown below. Project_Id Associates_List proj1 2 proj1 3 proj1 4 proj1 5 proj2 2 p

  • Numpad 789 and 123 not working in Quick Apply[ctrl+enter] window.  [CC2014.1]

    Hi guys, We recently switched to CC2014 from CS5.5 and one of the feature we had been using a lot before was the Quick Apply window.  However when we want to use the Quick Apply feature in CC2014.1 with the numpad, the numbers 789 and 123 don't work,

  • No charger in the box

    so I get my nice shiny new ipod 80GB But Whats This? no charger in the box? (the last ipod I bought came with one?) so check the website and it's gonna be another £19 for the mains wall charger, ok I think, bit of a pain but I suppose I'll have to bu