Unable to Upload files

I am getting a number of different error messages. See below:
1. The upload has failed.
There was a problem running a virus scan for the file.
2. The upload has failed.
-metadata error
Then, occasionally it will upload, but when I go to the iPad to view I get this error message:
Error During Download
Please try your download again lagter.
Yesterday everything uploaded okay. Today, nothing. Please help.

http://status.adobedps.com/ has the current information on our service outage.
Neil

Similar Messages

  • Unable to upload files via Wi-Fi.

    My phone C3-00 is running on latest update v08.71. I'm unable to upload files on wi-fi. When I start any service like Facebook on opera mini or any browser (I'm also unable to use Mail & Communities via wi-fi) and try to upload file (pic. of max. size 500KB) it shows uploading two times then shows connection failed. I tried it several times but everytime it shows connection failed. But I can easily upload files via GPRS. The Mail & Communities app also runs fine on GPRS but not works on Wi-Fi. Please solve my problem.

    Read my previous post /t5/Phone-Applications/Nokia-apps-on-Wi-Fi/m-p/1305667#M25965

  • I am unable to upload files via web browser

    Good morning
    I have just upgraded to Mavericks (10.9.5), and I am running into a weird issue. I am unable to upload any files via the web browser. If I go to a website, and select an Upload File option, I am taken to Finder, where I am able to select the file, and press attach. The issue comes when I press upload on the website. It always either times out, or gives me an error that I was disconnected from the server. This happens on Safari, Firefox, and Chrome. I'm not sure what to do... I've repaired disk permissions and tried a lot of different security settings, but I am stumped.
    Thank you

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Unable to upload File to DMS (Document Managemt Sys) Via web Dynpro App

    Hi .
    I want add file to DMS i,e, SAP Document Management System .
    I first tried calling BAPI : BAPI_CREATE_DOCUMENT2 in Report and I was successfull.
    I am trying out same thing via Web Dynpro Application but I am getting error in Return of BAPI .Error is Error while checking in and storing: C:\Documents and Settings\Desktop\Hi.doc.
    I am pasting code I have written on click of Upload .
    method ONACTIONON_UPLOAD .
    implicitly available data objects
    wd_Context type ref to if_wd_context_node.
    wd_This type ref to if_FileUpload.
    DATA: gv_documento TYPE draw-doknr ,
    gv_clase TYPE draw-dokar VALUE 'Z99' ,
    gv_version TYPE draw-dokvr VALUE '00',
    gv_part TYPE draw-doktl VALUE '000',
    gv_descripcion TYPE drat-dktxt VALUE 'Description111',
    gv_return TYPE bapiret2,
    filename(60) type c ,
    lt_documentdata TYPE STANDARD TABLE OF bapi_doc_draw2,
    ls_documentdata LIKE LINE OF lt_documentdata,
    lt_characteristicvalues TYPE STANDARD TABLE OF bapi_characteristic_values ,
    lt_classallocations TYPE STANDARD TABLE OF bapi_class_allocation ,
    lt_documentfiles TYPE STANDARD TABLE OF bapi_doc_files2 ,
    ls_documentfiles LIKE LINE OF lt_documentfiles ,
    lv_content type xstring ,
    size type i.
    DATA lo_el_context TYPE REF TO if_wd_context_element.
    DATA ls_context TYPE wd_this->element_context.
    DATA lv_filename LIKE ls_context-filename.
    get element via lead selection
    lo_el_context = wd_context->get_element( ).
    get single attribute
    lo_el_context->get_attribute(
    EXPORTING
    name = `FILENAME`
    IMPORTING
    value = lv_filename ).
    ls_documentdata-documenttype = 'Z99'.
    ls_documentdata-documentversion = '000'.
    ls_documentdata-documentpart = '00'.
    ls_documentdata-description = 'Test Document Created Parag'.
    ls_documentdata-STATUSEXTERN = 'WR'.
    ls_documentdata-USERNAME = 'I046361'.
    ls_documentdata-WSAPPLICATION1 = 'DOC'.
    ls_documentdata-DOCFILE1 = lv_filename.
    ls_documentdata-DATACARRIER1 = 'DEFAULT'.
    ls_documentfiles-wsapplication = 'DOC'.
    ls_documentfiles-docfile = lv_filename.
    ls_documentfiles-storagecategory = 'DMS_C1_ST'.
    ls_documentfiles-checkedin = 'X'.
    APPEND ls_documentfiles to lt_documentfiles.
    CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
    EXPORTING
    documentdata = ls_documentdata
    pf_http_dest = 'SAPHTTP'
    IMPORTING
    return = gv_return
    TABLES
    documentfiles = lt_documentfiles.
    IF gv_return-type CA 'AE'.
    WRITE gv_return-message.
    ELSE.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    wait = 'X'.
    ENDIF .
    endmethod.
    Now Can anyone tell
    In case of Web Dynpro what Is this code right ?
    Do I need to change value of Parameters I have Set ?
    Do i need to some change as I am trying to Upload file Via WebApplication ?
    Do I have to change data Carrier ?
    Please let me know urgently .Points will be surely Given ...
    Regards ,
    Parag

    Hi ,
    Finally I was successfull in Uploading Docs.It seems I was not getting right Parameters ..anyways correct code is as follows ...
    method ONACTIONON_UPLOAD .
      implicitly available data objects
      wd_Context type ref to if_wd_context_node.
      wd_This    type ref to if_FileUpload.
    DATA:     gv_documento    TYPE draw-doknr            ,
              gv_clase        TYPE draw-dokar   VALUE 'Z99'  ,
              gv_version      TYPE draw-dokvr              VALUE '00',
              gv_part         TYPE draw-doktl VALUE '000',
              gv_descripcion  TYPE drat-dktxt VALUE 'Description111',
             gv_return       TYPE  BAPIRETURN ,
              gv_return       TYPE  BAPIRET2 ,
              gv_ruta         TYPE bapi_doc_files2-docfile VALUE 'C:\BAPI_DMS.doc' ,
              filename(60) type c ,
              lt_documentdata         TYPE STANDARD TABLE OF bapi_doc_draw2,
              ls_documentdata         LIKE LINE OF  lt_documentdata,
              lt_characteristicvalues TYPE STANDARD TABLE OF bapi_characteristic_values ,
              lt_classallocations     TYPE STANDARD TABLE OF bapi_class_allocation ,
              lt_documentfiles        TYPE STANDARD TABLE OF bapi_doc_files2 ,
              ls_documentfiles        LIKE LINE OF lt_documentfiles ,
              lv_content type xstring ,
              size type i ,
              lt_binary              TYPE TABLE OF sdokcntbin ,
              ls_binary              LIKE LINE OF lt_binary ,
              lv_size                TYPE I  ,
              ls_doc_status          TYPE  CVAPI_DOC_STATUS ,
              ls_API_ctrl            TYPE  CVAPI_API_CONTROL ,
              l_MSG                  TYPE  MESSAGES ,
              lt_files type STANDARD TABLE OF CVAPI_DOC_FILE  ,
              lt_drao  TYPE STANDARD TABLE OF DRAO  ,
              ls_drao  LIKE LINE OF lt_drao ,
              lv_documenttype      TYPE  DRAW-DOKAR ,
              lv_documentnumber TYPE  DRAW-DOKNR ,
              lv_documentversion TYPE  DRAW-DOKVR ,
              lv_documentpart  TYPE  DRAW-DOKTL ,
              lv_text          TYPE string .
          FIELD-SYMBOLS <fs> TYPE ANY.
      DATA lo_el_context TYPE REF TO if_wd_context_element.
      DATA ls_context TYPE wd_this->element_context.
      DATA lv_filename LIKE ls_context-filename   .
    get element via lead selection
      lo_el_context = wd_context->get_element(  ).
    get single attribute
      lo_el_context->get_attribute(     EXPORTING       name =  `FILENAME`     IMPORTING       value = lv_filename ).
      lo_el_context->get_attribute(     EXPORTING       name =  `FILECONTENT`     IMPORTING       value = lv_content ).
    CONCATENATE lv_text 'by' sy-uname 'cretaed at ' sy-uzeit INTO lv_text .
      ls_documentdata-documenttype    = 'Z99'.
      ls_documentdata-documentversion = '00'.
      ls_documentdata-documentpart    = '000'.
      ls_documentdata-description     = 'Test Document Created in Web Dynpro ABAP '.
      ls_documentdata-STATUSEXTERN    = 'WR'.
      ls_documentdata-USERNAME        = 'I046361'.
      ls_documentdata-WSAPPLICATION1 = 'DOC'.
      ls_documentdata-DOCFILE1        = lv_filename.
      ls_documentdata-DATACARRIER1    = 'DEFAULT'.
      ls_documentfiles-DOCUMENTTYPE       = 'Z99'.
      ls_documentfiles-WSAPPLICATION      = 'DOC'.
      ls_documentfiles-DOCUMENTVERSION    = '00'.
      ls_documentfiles-DOCUMENTPART       = '000'.
      ls_documentfiles-DOCFILE            = lv_filename.
      ls_documentfiles-description        = 'Test Document Created in Web Dynpro ABAP  '.
      ls_documentfiles-CREATED_BY         = sy-uname.
      ls_documentfiles-CHECKEDIN          = 'X'.
      ls_documentfiles-DOCFILE            = lv_filename.
      APPEND ls_documentfiles  to lt_documentfiles .
        CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
        EXPORTING
            documentdata    = ls_documentdata
            pf_http_dest    = 'SAPHTTPA'
        IMPORTING
            DOCUMENTNUMBER  = lv_DOCUMENTNUMBER
            return          = gv_return
        TABLES
          documentfiles = lt_documentfiles.
    IF gv_return-type CA 'AE'.
      WRITE gv_return-message.
    ELSE.
       CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING     wait = 'X'.
       get message manager
       data lo_api_controller     type ref to if_wd_controller.
       data lo_message_manager    type ref to if_wd_message_manager.
       lo_api_controller ?= wd_This->Wd_Get_Api( ).
       CALL METHOD lo_api_controller->GET_MESSAGE_MANAGER
         RECEIVING
           MESSAGE_MANAGER = lo_message_manager
    CLEAR lv_text .
    CONCATENATE 'Dcoument ' lv_filename 'Successfully stored with Document No. ' lv_DOCUMENTNUMBER INTO lv_text .
       report message
       CALL METHOD lo_message_manager->REPORT_SUCCESS
         EXPORTING
           MESSAGE_TEXT             = lv_text
          PARAMS                   =
          MSG_USER_DATA            =
          IS_PERMANENT             = ABAP_FALSE
          SCOPE_PERMANENT_MSG      = CO_MSG_SCOPE_CONTROLLER
          VIEW                     =
          SHOW_AS_POPUP            =
          CONTROLLER_PERMANENT_MSG =
          MSG_INDEX                =
          CANCEL_NAVIGATION        =
    ENDIF .
    endmethod.

  • Unable to upload files from local computer to remote server (Was: Dreamweaver)

    I have lost the connection between the remote location and the local location for files on my computer. Where to I correct this issues, since I cannot upload files from local to remote. Host server from server to my computer works fine, Running Dell computerr XP operating system with CS3 Dreamweaver. Need all the help I can get.

    I am now having a "ftp error - cannot make connection to host. Dreamweaver
    encoutered a netwoerk or file system error. I did as you suggested and I
    get to basic site definition, ( which looks o.k.), next screen ( no,I do
    not want to use a server technology) Next screen ( edit local copies on my
    machine ( file location looks o.k.), next screen (connect to remote
    server=ftp) address of web server is correct, ( no folder on server, or ftp
    login or ftp password) do not enable check in or check out
    summary: local
    Site name:midhba
    local root folder:midhba
    remote info:
    access; ftp
    FTP host: midhba.com
    check in.check out diabled
    testing server (set up later)

  • Unable to upload Files to child site collection using REST

    Dear All,
    I referred this article http://www.shillier.com/archive/2013/03/26/uploading-files-in-sharepoint-2013-using-csom-and-rest.aspx for uploading documents to SP Document Library and it works fine for any document library under the root site collection(
    for example "http://<server name>/Shared Documents" but when i upload the same document to one of the sub site collection created using Managed Path( the site collection path is "http://<server name>/files/Case" and the library
    name is "records") it fails and i get below error:
    The security validation for this page is invalid. Click Back in your
    Web browser, refresh the page, and try your operation again, Error Code -2130575251 Microsoft.SharePoint.SPException"
    Any help suggestion to resolve this? I've almost tried everything to resolve this issue but no luck.. appreciate any help
    for this..
    Regards,
    Vishal

    Hi,
    According to your post, my understanding is that you had an issue uploading files to subsite using REST.
    I had made a simple code demo below, it will upload a file to Document Library after you make your selection with the File control.
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    function uploadFile(){
    //alert(2);
    if (document.getElementById("file").files.length === 0) {
    alert('No file was selected');
    return;
    var parts = document.getElementById("file").value.split("\\");
    var filename = parts[parts.length - 1];
    var file = document.getElementById("file").files[0];
    uploadFileSync("http://YourSite", "Documents", filename, file);
    //Upload file synchronously
    function uploadFileSync(spWebUrl , library, filename, file)
    //alert(3);
    var reader = new FileReader();
    reader.onloadend = function(evt)
    if (evt.target.readyState == FileReader.DONE)
    var buffer = evt.target.result;
    var completeUrl = spWebUrl
    + "/_api/web/lists/getByTitle('"+ library +"')"
    + "/RootFolder/Files/add(url='"+ filename +"',overwrite='true')?"
    + "@TargetLibrary='"+library+"'&@TargetFileName='"+ filename +"'";
    $.ajax({
    url: completeUrl,
    type: "POST",
    data: buffer,
    async: false,
    processData: false,
    headers: {
    "accept": "application/json;odata=verbose",
    "X-RequestDigest": $("#__REQUESTDIGEST").val(),
    "content-length": buffer.byteLength
    complete: function (data) {
    //uploaded pic url
    console.log(data.responseJSON.d.ServerRelativeUrl);
    error: function (err) {
    alert('failed');
    reader.readAsArrayBuffer(file);
    </script>
    <input type="file" id='file' onchange="uploadFile()"/>
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Jason Guo
    TechNet Community Support

  • Unable to upload files to wiki service

    Hi, I tried today to enable the wiki service for the first time.  Everything seemed ok—it turns on, I can log in, I can create wikis and files.  However, when i attempt to upload a file the spinner continues forever and the file does not upload.  Looking at /Library/Server/Wiki/Logs/coreclient.log shows an error (sorry I have to key this in, not copy/paste):
    InvalidAuthenticityToken exception for request - CSRF token may be missing
    This is followed by a bunch of debug output from Ruby, and then this:
    ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
      app/controllers/application_controller.rb:685: in `handle_unverified_request'
    I didn't find any other references to these errors in some searches I did.  Does anyone have an idea what is going wrong?
    My server is 10.8.3, latest Server.app
    Thanks,
    Brian

    Hi,
    Firstly, please check Event Viewer and it should identify what's the reason cause IE crash.
    Secondly, have you tried other browser for test to upload file?
    Roger Lu
    TechNet Community Support

  • Unable to upload files using firefox, be it dropbox, gmail or any other websites where we need to attach files. It does not open up a new window to choose file.

    all of a sudden im unable to attach files in any of the websites. Im using firefox version 30 and when I click to attach file it does not open up a new window where we can choose the file from my computer. It happens almost in all websites that I use (gmail, dropbox, other websites).
    This was not the case before, seem some problem with firefox.. can somebody fix this at the earliest. thanks

    hello Balaatmozilla,
    please check if this problem appears as well when you try to download a file, does this happen again when you try to download a file?
    if so there must be a problem with your HDD controler, to solve this issue follow th steps:
    1.Right Click on My Computer, Select Properties
    2.Click on Device Manager in Top Left corner
    3.expand the IDA/ATI/ATAPI controllers
    4.right click on the one which is related to your HDD
    5.click on Uninstall
    6.Restart
    when you restart your windows the OS will try to install the drivers again, if this happens then restart again and check if the problem is solved, if no try to install the HDD drivers and related drivers manually and then restart your machine

  • Unable to upload files to server via Transmit (ftp client)

    Hi For some reason I am no longer able to upload files via Transmit to my website server. I have built several sites hosted on different servers and I cant access any of them, so it is obviously a problem at my end. The Message I get when I try to connect is .... 'Server said authentication failed'.
    I used to have no problems with access. The only thing that has physically changed in my setup is that I am now running my computer directly from the Modem (D-Link DSL 300T) through the Ethernet port as my airport express decided to blow up a couple of months ago. I have also done several apple software updates, so I dont know if this has affected it. My firewall is on, but I have ftp access ticked. Can anyone please help, I dont know what else to try.
    Many Thanks
    Rob

    How would I access the server security logs?
    That would depend on the OS and your level of access. If it's a Linux server you would want to check the ftp entries in /var/log/secure as that is where authentication failures are logged. If it's a web hosting account on a shared server you may need to ask your support contact where your ftp logs are located.
    You might try connecting manually using the ftp command in the terminal window. If you can log in that way, the problem is most likely with your Transport settings. If you can't log in that way, you may at least get a more detailed error message.

  • Unable to upload files to attach to my hotmail.

    I have been un-able to upload files to attach to my email for some time now.  I have un-installed and re-installed Internet explorer, disabled all add on's, re-set settings on internet explorer, completely shut down computer and re-stared several times.
    changed my security settings, nothing works! Once in a while it does work, but then I will try again, and the screen freezes and when I ctrl-alt-delete it says Internet Explorer has stopped working. I work from home, and need to send PDF files thru email daily
    for work.
    Please help me figure this out! We use Windows 7, and the newest version of Internet Explorer. Thank you!

    Hi,
    Firstly, please check Event Viewer and it should identify what's the reason cause IE crash.
    Secondly, have you tried other browser for test to upload file?
    Roger Lu
    TechNet Community Support

  • Unable to upload files via admin & FTP

    I've been trying to upload files to this site, but it keeps on bringing errors. It worked fine 20 minutes ago. Now the FTP doesn't upload and the Admin File Manager brings back errors on upload as well. Anyone know what's going on? The system status gives all green dots about all servers and doesn't say anything about disabled FTP or File Upload: http://status.businesscatalyst.com/

    There was scheduled maintenance today. But the status page doesn't have anything about what is going on. The last update was three hours ago saying hotpatch deployment was competed.

  • Unable to upload "files" to iTunes, help!

    I recently got a new iPhone and I was able to add 2 mp3s to it that I downloaded off a site I usually do. Now, when I went to upload any more mp3s by "File" "Add File" I am unable to do so. I have looked at other posts and other information is not working. Someone please help! SO FRUSTERATED

    You surely mean, iTunes is unable to accept them. That's a big difference.
    If files are just not accepted, iTunes won't tell you, but also not put them into the lib. So you need to check whether they're compatible MP3s.

  • Unable to upload files to D2L Dropbox -iBooks OSX 10.4

    I have an Instrcutor who uses D2L (version  10.2 SP8 ) as well as Mac iBooks operating Tiger OSX 10.4.11.  There are issues withuploading files to the Dropbox.
    Mac Book > intel code duo 10.6 Snow Leopard
    Firefox (newest) is supported web browser. "Your browser does not support dropping files from your device"
    Safari 5.1 is a supported browser but users receive an error "your browser doesn't support uploading a file "
    Google Chrome cannot be installed.
    Is there any suggestions that I can provide this Instructor as he likes to work with the ibooks because it has - iMovie HD (06) which has better effects then the (08).
    Currently the workaround would be to to put files on memory sticks and going to other school computers to upload.
    Any feedback would be appreciated.

    You are better off setting FTP File sharing, and using an FTP client like RBrowser or Cyberduck.

  • Unable to upload files using Dreamweaver Ultra Dev 4 (Was: Trying to upload files.)

    My service provider has recently updated and now I can no longer upload to my site using my antequated but easy to use Dreamweaver Ultra Dev 4.
    I am trialling the current Dreamweaver, but of course it is massively different!  I've just tried uploading a file, and although it seemed to go OK, no error
    messages etc - it's not made it onto my internet site. Any suggestions please?

    First define your site in DW.  Go to Site > New Site or Manage Sites.  See Screenshots.
    Servers:  Enter your remote server's log-in credentials.  Root Directory is whatever your hosting provider told you to use.  This varies by web host and could be public_html, htdocs, www or none at all.  If unsure, contact your host.
    Hit the Test button to see if you can connect to your server.  If not, click on More Options.
    Nancy O.

  • Unable to upload file more than 1 MB

    Hi,
    I am using the iPlanet web server for my web application.
    I am not able to upload a file of size greater than 1MB.
    Are there any settings on the iplanet server made that limit the file size for the uploading?
    Regards,
    Manasi

    Hi Mansi,
    It is not because of App server. It is due to the program/logic that you are using. There is one very good file upload application is available in open source where you can upload the attachments of 10mb within very less time.
    Download the jar from the following URL
    http://servlets.com/cos/
    Regards,
    Sandeep

Maybe you are looking for

  • How To Extend Adobe Audition CS5.5

    I've received a number of questions on how to extend Adobe Audition with questions similar to: How do I import file format X? How do I import a project from application Y? Will there be an SDK available? How do I add plug-ins to Audition? I had made

  • Why is it we only can buy 2nd generation ipod nano acessories and none 1st

    hi uhm yea i dont like it how u only can buy acessories for the new ipod nano's and now nothing for the original ipod acessories and just to let u know apple ur cord to hook up the ipod to the computer are way over price i can get one for $5.00 and u

  • Can't open PDF from single source sender

    I am on a Mac platform and have no trouble opening PDF documents with the exception of those that come through email from a particular sender.   The error I receive when I try to open the documents from the original sender is Adobe Reader could not o

  • Payment terms to the PA.

    Hi I need to bring the characteristic : Payment terms to the PA. How should I do it (step by step please...)

  • Recurring Instances not scheduling on its own after the SP4 installation

    Hi, We have installed the BO XI R2  SP4 2 days ago. Some of the recurring instances are not scheduling on its own. Environment : Clustered - 3 servers with CMS running on 2 servers. We did not do the install live. We disabled/stopped all the services