FTP upload issues (failing to upload files 64k)

When I first got my Mac I used to be able to FTP large files to one of the several servers I use. This is now failing with 'Broken Pipe' errors, always at 64K of upload.
I have tried using both Cyberduck and YummyFTP but I get the same result on each. Could I have made a change to my OSX config to cause this problem?
Thanks in advance.

Here's some more information. The UK FTP server which Cyberduck etc work fine with has problems on the Terminal. Here's the Terminal output:
230 OK. Current restricted directory is /
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> bin
200 TYPE is now 8-bit binary
ftp> lcd ~/Desktop/
Local directory now /Users/Lylo/Desktop
ftp> put TestFile.pdf
local: TestFile.pdf
remote: TestFile.pdf
229 Extended Passive mode OK (|||30552|)
150 Accepted data connection
75% |**************************************** | 127 KB 0.29 KB/s - stalled -
This just times out.
Now, if I issue the EPSV command to turn off Extended Passive Mode, I can upload the file:
230 OK. Current restricted directory is /
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> bin
200 TYPE is now 8-bit binary
ftp> lcd ~/Desktop/
Local directory now /Users/Lylo/Desktop
ftp> epsv
EPSV/EPRT on IPv4 off.
ftp> put TestFile.pdf
local: TestFile.pdf remote: TestFile.pdf
227 Entering Passive Mode (85,13,252,5,221,6)
150 Accepted data connection
100% |*******************************************************| 170 KB 60.18 KB/s 00:02
226-File successfully transferred
226 3.503 seconds (measured here), 48.70 Kbytes per second
174673 bytes sent in 00:03 (48.66 KB/s)
Oddly, P4HOST.com uses Extended Passive Mode by default but turning it off using EPSV makes no difference. It stalls regardless.
Any ideas?
15" MBP Core 2 Duo 2.33 Mac OS X (10.4.9)

Similar Messages

  • Flex file upload issue with large image files

         Hello, I have created a sample flex application to upload an image and also created java servlet to upload and save image and deployed in local tomcat server. I am testing the application in LAN. I am able to upload small as well as large image file(1Mb) from some PCs but in some other PCs I am getting IOError while uploading large image files however it is working fine for small images. Image uploading is hanging after 10%-20% and throwing IOError. *Surprizgly it is working Ok with XP systems and causeing issues with Windows7 systems*.
    Plz give me any idea to get a solution.
    In Tomcat server side it is giving following error:
    request: org.apache.catalina.connector.RequestFacade@c19694
    org.apache.commons.fileupload.FileUploadBase$IOFileUploadException: Processing of multipart/form-data request failed. Stream ended unexpectedly
            at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:371)
            at org.apache.commons.fileupload.servlet.ServletFileUpload.parseRequest(ServletFileUpload.ja va:126)
            at flex.servlets.UploadImage.doPost(UploadImage.java:47)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:877)
            at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProto col.java:594)
            at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1675)
            at java.lang.Thread.run(Thread.java:722)
    Caused by: org.apache.commons.fileupload.MultipartStream$MalformedStreamException: Stream ended unexpectedly
            at org.apache.commons.fileupload.MultipartStream$ItemInputStream.makeAvailable(MultipartStre am.java:982)
            at org.apache.commons.fileupload.MultipartStream$ItemInputStream.read(MultipartStream.java:8 86)
            at java.io.InputStream.read(InputStream.java:101)
            at org.apache.commons.fileupload.util.Streams.copy(Streams.java:96)
            at org.apache.commons.fileupload.util.Streams.copy(Streams.java:66)
            at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:366)
    UploadImage.java:
    package flex.servlets;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import java.text.*;
    import java.util.regex.*;
    import org.apache.commons.fileupload.servlet.ServletFileUpload;
    import org.apache.commons.fileupload.disk.DiskFileItemFactory;
    import org.apache.commons.fileupload.*;
    import sun.reflect.ReflectionFactory.GetReflectionFactoryAction;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class UploadImage extends HttpServlet{
             * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse
             *      response)
            protected void doGet(HttpServletRequest request,
                            HttpServletResponse response) throws ServletException, IOException {
                    // TODO Auto-generated method stub
                    doPost(request, response);
            public void doPost(HttpServletRequest request,
                            HttpServletResponse response)
            throws ServletException, IOException {
                    PrintWriter out = response.getWriter();
                    boolean isMultipart = ServletFileUpload.isMultipartContent(
                                    request);
                    System.out.println("request: "+request);
                    if (!isMultipart) {
                            System.out.println("File Not Uploaded");
                    } else {
                            FileItemFactory factory = new DiskFileItemFactory();
                            ServletFileUpload upload = new ServletFileUpload(factory);
                            List items = null;
                            try {
                                    items = upload.parseRequest(request);
                                    System.out.println("items: "+items);
                            } catch (FileUploadException e) {
                                    e.printStackTrace();
                            Iterator itr = items.iterator();
                            while (itr.hasNext()) {
                                    FileItem item = (FileItem) itr.next();
                                    if (item.isFormField()){
                                            String name = item.getFieldName();
                                            System.out.println("name: "+name);
                                            String value = item.getString();
                                            System.out.println("value: "+value);
                                    } else {
                                            try {
                                                    String itemName = item.getName();
                                                    Random generator = new Random();
                                                    int r = Math.abs(generator.nextInt());
                                                    String reg = "[.*]";
                                                    String replacingtext = "";
                                                    System.out.println("Text before replacing is:-" +
                                                                    itemName);
                                                    Pattern pattern = Pattern.compile(reg);
                                                    Matcher matcher = pattern.matcher(itemName);
                                                    StringBuffer buffer = new StringBuffer();
                                                    while (matcher.find()) {
                                                            matcher.appendReplacement(buffer, replacingtext);
                                                    int IndexOf = itemName.indexOf(".");
                                                    String domainName = itemName.substring(IndexOf);
                                                    System.out.println("domainName: "+domainName);
                                                    String finalimage = buffer.toString()+"_"+r+domainName;
                                                    System.out.println("Final Image==="+finalimage);
                                                    File savedFile = new File(getServletContext().getRealPath("assets/images/")+"/LowesFloorPlan.png");
                                                    //File savedFile = new File("D:/apache-tomcat-6.0.35/webapps/ROOT/example/"+"\\test.jpeg");
                                                    item.write(savedFile);
                                                    out.println("<html>");
                                                    out.println("<body>");
                                                    out.println("<table><tr><td>");
                                                    out.println("");
                                                    out.println("</td></tr></table>");
                                                    try {
                                                            out.println("image inserted successfully");
                                                            out.println("</body>");
                                                            out.println("</html>");  
                                                    } catch (Exception e) {
                                                            System.out.println(e.getMessage());
                                                    } finally {
                                            } catch (Exception e) {
                                                    e.printStackTrace();

    It is only coming in Windows 7 systems and the root of this problem is SSL certificate.
    Workaround for this:
    Open application in IE and click on certificate error link at address bar . Click install certificate and you are done..
    happy programming.
    Thanks
    DevSachin

  • File upload - issue with European .csv file format

    All,
    when uploading the .csv file for "Due List for Planned Receipts" in the File Transfer Upload center I receive an error.  It appears that it is due to the european .csv file format that is delimited by semicolon rather than comma. The only way I could solve this issue is to change Regional and Language options to English. However, I don't think this is a great solution as I can't ask all our suppliers to change their settings.  Has anyone come across this issue and another way of solving it?
    Thank you!
    Have a good day,
    Johanna

    Igor thank you for your suggestion. 
    I found this SAP note:
    +If you download a file, and the formatting of the CSV file is faulty, it is possible that your column separator does not match the standard settings of the SAP system. In the standard SAP system, the separator is ,.
    To ensure that the formatting is correct, set your global default for column separation in your system, so that it matches that of the SAP system you are using.+
    To do that Microsoft suggests to change the "List separator" in the Regional and Language Options Customize view. Though like you suggest that does not seem to do the trick. Am I missing something?
    However, if I change the whole setting from say German to English (UK) the .csv files are comma delimited and can be easily uploaded.  Was hoping there would be another way of solving this without need for custom development.

  • Video Sharing - Videos upload issue to Vimeo because files are now too large post iOS7.

    Videos taken prior to iOS7 update uploaded without issues to Vimeo.  Vidoes taken after iOS7 update will not upload because videos are too large.  I am videoing the same type of activities for the same duration post iOS7 as I was pre-iOS7.  What has changed with iOS7 that is causing my videos to be saved as larger files?  This is a HUGE issue for what I do!  HELP PLEASE!!

    You're going to have to edit them on a computer before uploading them, unless you can convince Vimeo to change their limits.

  • "The upload has failed. There was a problem running a virus scan for the file."  any ideas???

    "The upload has failed.
    There was a problem running a virus scan for the file. "
    This is the message i get when tryng to update
    any ideas?

    Error: "svr.VirusScanExecutionError"
    An intermittent problem with acrobat.com's underlying virus scan component causes this issue. This issue happens occasionally on a small number of server instances.
    The solution is to update the article again. Trying again typically routes you to a different host in the server array.

  • File upload onComplete failing

    I'm using the FileReference.browse method to allow users to
    uplodd an .mp3 to a script. I am using AS2, publishing to Flash8. I
    am looking for and logging events ... when I first created this the
    oncomplete returned success and the file uploaded fine. Somewhere
    along the line oncomplete started to fail, yet the file still
    uploads. However now the flash player continues to attempt to open
    the file it seems, as my CPU pegs with seconds and the browser
    hangs. I can't see that I changed any code in the browse method,
    which I grabbed directly from Flash Help. I had changed the
    oncomplete to onCompleteData but that's not working either. Any
    thoughts out there?
    Here is an example of what I mean (please have an mp3 ready
    to upload.
    Here's
    one if you need it.):
    http://www.pokerxfactor.com/swf/mp3uploadtest.html
    Thanks! any help would be appreciated
    Here is the code:

    I'm using the FileReference.browse method to allow users to
    uplodd an .mp3 to a script. I am using AS2, publishing to Flash8. I
    am looking for and logging events ... when I first created this the
    oncomplete returned success and the file uploaded fine. Somewhere
    along the line oncomplete started to fail, yet the file still
    uploads. However now the flash player continues to attempt to open
    the file it seems, as my CPU pegs with seconds and the browser
    hangs. I can't see that I changed any code in the browse method,
    which I grabbed directly from Flash Help. I had changed the
    oncomplete to onCompleteData but that's not working either. Any
    thoughts out there?
    Here is an example of what I mean (please have an mp3 ready
    to upload.
    Here's
    one if you need it.):
    http://www.pokerxfactor.com/swf/mp3uploadtest.html
    Thanks! any help would be appreciated
    Here is the code:

  • Getting "Warning: The file upload failed.No such file or directory." while trying to upload image using af:inputFile

    Hi,
    I have a <af:inputFile> component which will upload only image file and render  the corresponding image...
    It work with normal application deployed on weblogic server however when i use same taskflow as a part of human task in SOA BPM worklist...
    I get this warning message "Warning: The file upload failed.No such file or directory." for certain files where as it works for certain image files.
    And in BPM whenever i upload PNG file it throws this error.
    Please help.

    For some files like Images with .png extensions it gives following error :
    java.io.IOException: No such file or directory
      at java.io.UnixFileSystem.createFileExclusively(Native Method)
      at java.io.File.checkAndCreate(File.java:1705)
      at java.io.File.createTempFile0(File.java:1726)
      at java.io.File.createTempFile(File.java:1803)
      at org.apache.myfaces.trinidadinternal.config.upload.UploadedFileImpl._createOutputStream(UploadedFileImpl.java:284)
      at org.apache.myfaces.trinidadinternal.config.upload.UploadedFileImpl.loadFile(UploadedFileImpl.java:208)
      at org.apache.myfaces.trinidadinternal.config.upload.CompositeUploadedFileProcessorImpl._processFile(CompositeUploadedFileProcessorImpl.java:344)
      at org.apache.myfaces.trinidadinternal.config.upload.CompositeUploadedFileProcessorImpl.processFile(CompositeUploadedFileProcessorImpl.java:95)
      at org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl._doUploadFile(FileUploadConfiguratorImpl.java:329)
      at org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl.beginRequest(FileUploadConfiguratorImpl.java:162)
      at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:610)
      at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:216)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:155)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.bpel.services.workflow.client.worklist.util.WorkflowFilter.doFilter(WorkflowFilter.java:175)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.bpel.services.workflow.client.worklist.util.DisableUrlSessionFilter.doFilter(DisableUrlSessionFilter.java:70)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • Sync error: Uploading records failed: "client issue: request body too large"

    1328917629619 Sync.Engine.AdblockPlus DEBUG Uploading records failed: "client issue: request body too large"
    This happens from 2 Win 7 computer and 1 Win XP computer sync'd. Without the Add Block Plus being sync'd everything works.

    Hi!
    That's a problem with the Add Block Plus sync engine. It seems that they have issues on their servers.
    Try to ask the same question in their forum: https://adblockplus.org/forum/
    Good luck!

  • CF8.01 Large Files Upload issue

    We are having an issue with posting large files to the server
    through CFFile. Our server is running on Windows 2003 R2 SP2 with
    2GB of RAM. The average upload size is 800MB and we may run into
    multiple simultaneous uploads with the large file size. So, we have
    adjusted the "Maximum size of post data" to 2000 MB and "Request
    Throttle Memory" to 5000 MB in the ColdFusion admin setting to
    hopefully can allow up to 5 simultaneous uploads.
    However, when we tried to launch two 800MB uploads at the
    same time from different machines, only one upload can get through.
    The other one returned "Cannot connect to the server" error after a
    few minutes. No errors can be found in the W3C log and the
    ColdFusion logs (coldfusion-out.log and exception.log) but it is
    reported in the HTTPErr1.log with the following message:
    2008-04-18 08:16:11 204.13.x.x 3057 65.162.x.x 80 HTTP/1.1
    POST /testupload.cfm - 1899633270 Timer_EntityBody DefaultAppPool
    Can anyone shed some light of it? Thanks!

    quote:
    Originally posted by:
    Newsgroup User
    Don't forget that your web server (IIS, Apache, etc.) can
    have upload
    throttles as well.
    We did not throttle our IIS to limit the upload/download
    bandwidth.
    Is there a maximum limit for "Request Throttle Memory"
    setting? Can we set it over the available physical RAM size?

  • Issues Updating Articles - The upload has failed. Network failure.

    Not sure if the server is being unresponsive or if it is something my end but for the last couple of hours I've had problems updating my articles - it's very intermittent, sometimes working but more often than not I'm getting the error -
    The upload has failed.
    Network failure.
    Very frustrating...

    Was successfully re-linking indesign files to my dps producer dashboard.  Files had been converted to CC (from CS6)-- and was switching from v26 to v 28.    Everything was working just FINE, until about 6pm yesterday-- I had re-linked almost 3/4ths of my files, then  I began getting the NETWORK FAILURE notice. 
    This morning, I tried creating a new folio-- managed to upload ONE new file into the new folio, then got the same 'network failure' message on the next one I tried to upload.
    These files are from a successful app-- already in the app store, but it sure doesn't work right now!  IOS 7 ... #!#*?
    It is not about where your files are-- or how much memory -- Something else is going on. 
    I know you guys will figure it out...and will be standing by, anxious to fix my app!
    THANKS.
    nancy p

  • FTP as remote destination not uploading - why?

    Problem:
    I can't get the Remote FTP destination to work in Compressor 3.1 - anyone able to help?
    Details...
    If I submit a job with a FTP destination, the job creates the compressed file but does not upload to the FTP location. Each and every time when I view the Batch Monitor it shows 'error' and tells me...
    Status: Failed - Failed to upload to ftp://users:••••••@mydomain.com/home/mydomain/public_html/downloads/-29-10-2007. m4v, encoded file is in: /var/tmp/1E668CBD-50D2-4019-AAD1-1CB58C3CE0A7-local--29-10-2007.m4v
    I have tried entering the 'standard' path (usual root address) for the remote destination e.g. /downloads and also the full server path e.g. /home/mydomain/public_html/downloads and it doesn't work with either.
    I use the same settings in an FTP program and it works fine. Not with Compressor. *Anyone know why?*

    Yes, I have checked it. Its ok.
    And if I run this program in foreground it is working fine and posting a file in the FTP remote server.
    I would like to explain the logic which I have used here.
    I pick the data from my program logic and place the data in the application server.
    Now I will pick this file and send it to the remote FTP server.
    This process is working when i do it in foreground.
    But failing in background job.
    My file till application server is ok.
    Regards
    Sunil

  • ITunes Match fails to upload songs

    I am posting this as information for other hapless iTunes Match users with the same problem.
    When I first subscribed to iTunes Match it successfully completed Steps 1 and 2 but failed to complete Step 3, where it uploads songs and artwork not found in the iTunes Store. The failure mechanism is that the screen "dims" and the process starts all over again. Cycling like this indefintely and never uploading any songs. However, those songs that could be matched were, and made available in iCloud for my iOS devices and Apple TV.
    I have spent 4 weeks trading emails with an iTunes Senior Advisor, who reports that the engineers have told her that the issue is with Match and not my computer or songs (library). During this time my Match account was refunded so that I could try again, however, the results were the same and I have requested a second refund and will not use Match.
    One of the experiments that I conducted was to create a new, and clean, iTunes Library and populate it with only six albums (to reduce testing time). Three albums were iTunes Store purchases and three were known to not be in the Store, thus had to be uploaded. Match completed its process with only the purchased albums but failed, in the manner described above, with the ones to be uploaded. Deleting iTunes preference files and having iTunes rebuild its XML library file had no effect on the problem.
    Since Match obviously works for some people (but not for me) there must be an obscure issue with my libray or the Match servers, or both. Hopefully someone smarter than myself has some ideas.

    The -2114 error, typically occurs when trying to download / stream an uploaded Song file.  The error tends to be intermittant and may simply indicate a failing server in the Apple infrastructure.
    Local action, wait for a period and re-try - usually successful - once working, ensure you download and backup a secure local version - or simply restore a good version from existing local backup.

  • Flex Uploading Issue

    Hi,
    I am having great trouble with Flex and ColdFusion when it
    comes to
    uploading. I can upload fine to a server with no
    authentication set
    up but as soon as I start to upload using FileReference and
    UrlRequest to a server with authentication from cflogin
    problems
    occur. Basically it fails silently, it displays progress in
    the
    upload and that the upload was successful but my files is not
    there.
    I have check all my scripts and location for the file upload
    and it
    just aint happening. I have tested a simple cfm upload form
    and hit
    that fine, uploaded and can write to files also on the remote
    server
    so I know thats set up fine.
    So after much googling I have found that when using
    FileReference for
    uploading the upload will use a new browser session to upload
    the
    files and therefore remove all session variables!!! Arrrrggh!
    So my
    work around has involved grabbing the session.URLToken,
    sending that
    into my Flex app and then when I call the upload cfm script
    pass the
    session.URLToken variables in the url string like so:
    request = new URLRequest();
    chosenFile = fr.name;
    request.url = UPLOAD_URL+"?"+sessionVars;
    Problem is it still doesnt work?
    (a) I dont know if that is enough to satisfy cflogin criteria
    i.e. do
    I need to set anything in the upload.cfm page to say that
    these are
    the session variables.
    (b) another weird thing is that if it is starting a new
    browser
    session why am I not presented with my login panel as
    requested by my
    Application.cfc?
    Any one else suffered here or could make a suggestion please
    Simon
    P.S. I understand this is not an issue in IE only Firefox
    (and Safari I have discovered)!

    This is most peculiar cos I am definitely not hitting the
    server side script (which I thought was due to session clearing)
    but may not be then cos I get no error like you state and also my
    login window doesn't rear its ugly head. But I DO know for certain,
    the server script is not being hit, cos I run a simple write action
    to append a log file and that is not even running???
    And yeh uploading from a mac os x system. However, it fails
    in FireFox on the PC also.
    See:
    post
    91
    Check this:
    quote:
    Through Flash's FileReference and FileReferenceList classes,
    you can create a powerful file uploader that allows the user to
    upload multiple files with a single form element. But beware:
    unless the user happens to be using IE, the upload will use a new
    browser session to upload the files. This means that if you require
    that a user be authenticated before uploading something (and you
    better be), the upload won't work - the request will be forwarded
    to the login form, or to wherever your system forwards unauthorized
    requests. This is a maddening bug to track down, and there is
    nothing you can do to make Flash use the right session. The work
    around is to send the session cookie in the url and, on the server
    side, use that to override the new (and wrong) session cookie sent
    by Flash

  • Recurring issue with mobile upload

    Hi all,
    Using Lightroom 5.6, I am experiencing ongoing issues with synchronising  (uploading) LR to mobile devices. In brief, the upload will typically fail in mid-session with some collections partially or fully uploaded and some not started. (This may initially have been caused by going off-line during an upload),  It will not recover. Deleting all uploaded data to prompt a restart does not help - it does not restart either.
    Previously I have had to contact support and send the diagnostic report. Apparently there is a flag on the server end that needs resetting. Not the most satisfactory of solutions as it requires an action outwith the users control, but it does / did reset the file transfer interface. Apparently this bug was scheduled for fixing in the next up date. I understand I am on the latest (5.6) version , so does anyone know if this is still a bug?
    Meantime, can support please reset my connection?
    Regards .... Alastair

    Hi Alastair,
    I've contacted you privately.
    Thanks,
    Ignacio

  • LR 3.2 - Web upload issue/problem

    Good news is that I am not getting error message like other posts in my search. Bad news - it is not doing it right. NOTE: this is my first attempt using web upload, so there is some user tial and error.
    First attempt, didn't know if would create html page in process. Upload went fime, no errors, but when went to site, "page doesn't exist" error. Manually created a blank html page matching name used in LR, updated site, and reuploaded the web gallery from LR. Afterwards, went to site and same "page doesen't exist" error message.
    Went to Dreamhost and logged into my account, and further loggd in to FTP (and a graphic webFTP version). Didn't see anything anything resembling an upload on the text FTP. On the webFTP version I saw a third directory was created - named my LR file name - and inside the directory folder it had all the all the photos and other files from the LR upload plus the html page I created. I'm wondering what I am doing wrong as LR is successfully logging on and uploading, but placing where not readable.
    I have a similar question on the Dreamhost forum site, however, when a keyword search over there returned zero hits on "Lightroom" as a similar search over here returned zero hits on "Dreamhost." Figured it was best to ask in both places.

    RESOLVED...
    Now this is embarrasing as I found the solution through trial and error. I was doing everything right except for two words -"Case Sensitive." The uploaded file and directory the upload created was "Area43Contest" yet when typing out the file path to view after upload, I naturally type all lower case and received the page doesn't exist error.
    On the FTP viewer issue at my host: the text version appears to update overnight as the directory was not there yesterday but was there this AM. The "webFTP" version appears to be realtime which is why I could see on one and not the other yesterday.
    Understanding Lightroom web upload: Assuming that you keep the default "use subfolder" checked, it is self-contained in the directory that it creates so the typed path ends in the directory name rather than a file name. Thati s why it doesn't create a page outside the directory. It launches full screen as previewed in Lightroom absent the other parts of the web site, like headers - which is exactly what I wanted.  Essentially a hidden page where I can deliver a product by giving a link.This was an HTML template where recipients can rt click and download the photos rather than the available flash templates which have the advantage of self running slideshow rather than download. While not necessary 99% of the time, may want to create a custom template with at least "Home" link as the only obvious way to return to the web site is back out the address to .com.
    Hope others don't have to go through what I went through, but felt with the numbers that viewed this post in 24 hours and apparently stumped as no suggestions, that I had to let you know.

Maybe you are looking for