PDF downloading error

Hi,
I have a simple tabular report in APEX. When I am trying to download the report into PDF, the PDF file is saving, but the saved PDF file is not opening. I tried to open the PDF file in MS-Word, the following lines are displaying in the word document.
500 Internal Server Error
Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.
My report query as follows:
Select Loc,Round((Exp) / 100000, 1) TotExp
from Expense_tab
order by Loc;
Note: 1.The report is able to download in Excel.
2. Vesion: Application Express 3.1.1.00.09
Regards
Mohan

It is look like you have wrong Apex or BI Publisher configuration.
What is your Report Printing Settings (Instance Settings) in Apex Admin application?

Similar Messages

  • Error on opening a PDF download

    Please do not have your subject in all CAPITALS
    HI,
    i am geeting the below error message on trying to open the pdf download
    **"Adobe reader could not open file because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email and wasn't correctly decoded"**
    however on analysis i found the following
    no data on PDF because the  otf internal table is empty.
    actually i am converting a spool containg script into pdf download.
    i am working with  version 3.1i , so i dont use function module and use C function to convert spool to otf and then use convert_pdf to convert to pdf.
    when i debug my call function on the do loop executes once corrcetly  and on the second time of  execution immediately loaded with error message  'end of data' .... and so my otf conversion is not happening . ie otf_page intertal table gets empty without appending .
    sometimes i get error number 2048 ( illegal line length )
    i could not locate the error , as this application was working earlier good and recently got into trouble.
    pl guide if i need to check any settings.
    to my knowledge i found the program , layout and spool informations are okay.
    thanks in advance for your clue towards a progressive solution.
    Edited by: Matt on Mar 12, 2009 3:44 PM

    Please do not have your subject in all CAPITALS

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = L_SPOOLNO
          NO_DIALOG                = SPACE
          DST_DEVICE               = MSTR_PRINT_PARMS-PDEST
        IMPORTING
          PDF_BYTECOUNT            = MI_BYTECOUNT
        TABLES
          PDF                      = MTAB_PDF
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 9
    Thanks in advance
    Monika
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
    Transfer the 132-long strings to 255-long strings
    LOOP AT MTAB_PDF.
    TRANSLATE MTAB_PDF USING '~'.
    CONCATENATE WA_BUFFER MTAB_PDF INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    it_attach = WA_BUFFER.
    APPEND it_attach.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    ****GET THE FILE NAME TO STORE....................
    v_path = 'C:\PD Form\' .
    CONCATENATE v_path p_pernr-low '.pdf' into v_name.
        create object v_guiobj.
        call method v_guiobj->file_save_dialog
          EXPORTING
            default_extension = 'pdf'
            default_file_name = v_name
            file_filter       = v_filter
          CHANGING
            filename          = v_name
            path              = v_path
            fullpath          = v_fullpath
            user_action       = v_uact.
        if v_uact = v_guiobj->action_cancel.
          leave to current transaction.
        endif.
    ..................................DOWNLOAD AS FILE....................
        move v_fullpath to v_filename.
        call function 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = MI_BYTECOUNT
            filename                = v_filename
            filetype                = 'BIN'
          TABLES
            data_tab                = it_ATTACH
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6
            header_not_allowed      = 7
            separator_not_allowed   = 8
            filesize_not_allowed    = 9
            header_too_long         = 10
            dp_error_create         = 11
            dp_error_send           = 12
            dp_error_write          = 13
            unknown_dp_error        = 14
            access_denied           = 15
            dp_out_of_memory        = 16
            disk_full               = 17
            dp_timeout              = 18
            file_not_found          = 19
            dataprovider_exception  = 20
            control_flush_error     = 21
            others                  = 22.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

    My Generated Spool request is PDF Spool. It contains Adobe Forms data. To Download Adobe form
                 Spool (PDF Spool) into PDF format,
    First,
    A)     Read PDF Spool data by using u2018FPCOMP_CREATE_PDF_FROM_SPOOLu2019 Function module.
    B)     Assign the Output Data to XSTRING format
    C)     Convert that XSTRING data to Binary Format using 'SCMS_XSTRING_TO_BINARY' Function module.
    D)     Save File on Application server using OPEN DATASET , TRANSFER , CLOSE DATASET.You can see your
                          downloaded file in Transaction AL11 in specified directory.
    You can save your file on Presentation server also using GUI_DOWNLOAD.
    First three steps are necessary if your spool is PDF Spool.
    Basically we need this when we are downloading Adodbe forms ( which is not a SAPScript or smartforms)
    Example :
    DATA :
      e_pdf1 TYPE  fpcontent,
      e_renderpagecount1  TYPE i.
      CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
        EXPORTING
          i_spoolid               = l_spoolno
          i_partnum               = '1'
       IMPORTING
         e_pdf                   = e_pdf1
         e_renderpagecount       = e_renderpagecount1
    *   E_PDF_FILE              = E_PDF_FILE1
    * EXCEPTIONS
    *   ADS_ERROR               = 1
    *   USAGE_ERROR             = 2
    *   SYSTEM_ERROR            = 3
    *   INTERNAL_ERROR          = 4
    *   OTHERS                  = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DATA : buffer  TYPE  xstring,
      append_to_table  TYPE  c.
      DATA : output_length TYPE  i.
      TYPES : BEGIN OF ty_binary,
                binary_field(1000) TYPE c,
              END OF ty_binary.
      DATA : lt_binary TYPE TABLE OF ty_binary WITH HEADER LINE.
      DATA : lv_xstring TYPE xstring.
      lv_xstring = e_pdf1.
    * Convert xstring to binary.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer                = lv_xstring
         append_to_table       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          binary_tab            = lt_binary.
      DATA : wa_binary LIKE lt_binary.
      DATA: BEGIN OF itab OCCURS 0,
      field(256),
      END OF itab.
      DATA: dsn(50000) VALUE '/usr/sap/tmp/',
      length LIKE sy-tabix,
      lengthn LIKE sy-tabix.
      CONCATENATE '/usr/sap/tmp/' lv_pernr '.pdf' INTO dsn.
    ******* Save file on Application server
      OPEN DATASET dsn FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_binary.
        TRANSFER lt_binary-binary_field TO dsn.
      ENDLOOP.
      CLOSE DATASET dsn.
      CLEAR lt_binary.
      REFRESH lt_binary.
    cheers

  • Download error on PDFs--can't find helper--please help!

    Hi,
    I'm trying to use USPS.com to print labels. It used to work great for me until I downloaded the newest Firefox version and also installed the new CS3. I have Mac OS 10.5. When I go make a label at USPS (or try to download any PDF), I get an error like this and the document won't open, I can't print anything:
    Download Error
    /Users/heidinylnd/desktop/statement.pdf could not be opened, because the associated helper application does not exist. Change the association in your preferences
    I have Acrobat 8 Professional. I downloaded Acrobat Reader 8 to see if that would put the required "helper" back in place. No luck. I even made that the default program to open PDFs. I used to get "Preview" to open the PDFs, but that's not working now, either. Erg!
    Please help!
    Heidi

    I did! I had to fix it through Firefox. Apparently something doesn't install automatically with the new CS3 or 10.5--whichever is the culprit.
    Try this:
    Go to Firefox in your top menu options
    Scroll down to preferences
    When the "Main" screen comes up, click on "Content"
    Hit the last button on the page, "Manage"
    You'll then be able to see what program is linked to PDFs. On mine, no action was set once I installed the new programs and deleted my old version of Acrobat.
    I didn't fix this in Explorer, but I'll bet there's a similar process. I worked on finding the answer for 4 hours--finally getting help through firefox's volunteer forums! I even downloaded the new Acrobat reader and that didn't do anything before this.
    Hope it works for you, too!
    Heidi

  • Get a Download Error whenever I try to download a PDF with iMac OS X 10.6

    When I click to download a PDF with my iMac running 10.6 and Adobe reader 10.0.2 I get the message "/Users/brian/Downloads/Aperture_3_User_Manual.pdf could not be opened, because an unknown error occurred.
    Try saving to disk first and then opening the file."files download fine with Safari

    Update: Am now running FF7. Since original problem I switched to using Preview instead of Adobe Reader but that did NOT solve the problem. That seems to indicate FF may be the problem. I inadvertently circumvented the problem by installing PDF Download 3.0.0.2 just to check it out. This is a great Add-on! You can preview a PDF before downloading - which is a standard feature in Safari. I have not had the "Download error" problem since installing the add-on.

  • Download error when trying to download and save on Adobe XI

    Since Jan. 26th I have tried to download PDF files and save them and keep getting download error. I have removed and reinstalled Adobe XI several times still having "error" when downloading or saving. This has happened with previous Adobe.

    Basically, a business that I work with sent me an email.  I opened the email and it stated, "To open the artist names click here".  I clicked and the adobe xi came up with that message.  The reason that I know that it is in an excel form is because before I got Windows 7 in December, I had xp.  When I had XP I just clicked it and the artist name list would come up in excel with no problem. I have Adobe Flashplayer 16 Active x and Adobe Reader XI 11.0 .10.  So as far as what programs..unable to answer that.  I typically in other cases am able to open pdf files. I had problem opening one other file when I did it was also an excel file.

  • PDF Conversion Error in Email

    Hi Experts,
    my task is to convert a smartform into pdf & download & email. in two different programs
    download program i converted smartform using 'CONVERT_OTF_2_PDF' and its working fine with no problem.
    and in email program when tried the same one, I have a error as the PDF file is damaged and could not be repaired.
    So I used 'CONVERT_OTF', its working fine and can send emails to external systems with no errors.
    Now my problem is in the email, when i open the attachement, i getting a error in Pdf file.
    "Cannot extract the embedded font Arial. Some characters may not be display or print correctly".
    Please tell me how to close this error.
    Thanks & regards,
    Dileep .C

    hi,
          Report BCS_EXAMPLE_6
          Email documents using PDF based forms
    REPORT bcs_example_6.
    DATA: carr_id TYPE sbook-carrid.
    PARAMETER:      p_custid  TYPE scustom-id DEFAULT 12.
    SELECT-OPTIONS: s_carrid FOR carr_id     DEFAULT 'AA' TO 'ZZ'.
    PARAMETER:      p_email   TYPE adr6-smtp_addr OBLIGATORY.
    DATA: customer          TYPE scustom,
          bookings          TYPE ty_bookings,
          connections       TYPE ty_connections,
          fm_name           TYPE rs38l_fnam,
          fp_docparams      TYPE sfpdocparams,
          fp_outputparams   TYPE sfpoutputparams,
          error_string      TYPE string.
    DATA  ls_formoutput     TYPE fpformoutput.
    DATA  lx_fp_api         TYPE REF TO cx_fp_api.
    data  lp_form           TYPE tdsfname  value 'FP_TEST_03'.
    data  lp_langu          TYPE langu     value 'D'.
    data  lp_countr         TYPE land1     value 'DE'.
    BCS data
    DATA  send_request       TYPE REF TO cl_bcs.
    DATA  text               TYPE bcsy_text.
    DATA  document           TYPE REF TO cl_document_bcs.
    DATA  recipient          TYPE REF TO if_recipient_bcs.
    DATA: bcs_exception      TYPE REF TO cx_bcs.
    DATA  sent_to_all        TYPE os_boolean.
    DATA  pdf_content        TYPE solix_tab.
    DATA  lp_pdf_size        TYPE so_obj_len.
    get data
    SELECT SINGLE * FROM scustom INTO customer WHERE id = p_custid.
    CHECK sy-subrc = 0.
    SELECT * FROM sbook INTO TABLE bookings
             WHERE customid = p_custid
             AND   carrid   IN s_carrid
             ORDER BY PRIMARY KEY.
    SELECT * FROM spfli INTO TABLE connections
             FOR ALL ENTRIES IN bookings
             WHERE carrid = bookings-carrid
             AND   connid = bookings-connid
             ORDER BY PRIMARY KEY.
    Print data:
    First get name of the generated function module
    TRY.
        CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = lp_form
          IMPORTING
            e_funcname = fm_name.
      CATCH cx_fp_api INTO lx_fp_api.
      exception handling
        MESSAGE ID lx_fp_api->msgid TYPE lx_fp_api->msgty
          NUMBER lx_fp_api->msgno
            WITH lx_fp_api->msgv1 lx_fp_api->msgv2
                 lx_fp_api->msgv3 lx_fp_api->msgv4.
        EXIT.
    ENDTRY.
    Set output parameters and open spool job
    fp_outputparams-nodialog = 'X'.   " no print preview
    fp_outputparams-getpdf = 'X'.    " request PDF
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = fp_outputparams
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4
        OTHERS          = 5.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Set form language and country (->form locale)
    fp_docparams-langu   = lp_langu.
    fp_docparams-country = lp_countr.
    Now call the generated function module
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
        customer           = customer
        bookings           = bookings
        connections        = connections
      IMPORTING
        /1bcdwb/formoutput = ls_formoutput
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3
        OTHERS             = 4.
    IF sy-subrc <> 0.
      CALL FUNCTION 'FP_GET_LAST_ADS_ERRSTR'
        IMPORTING
          e_adserrstr = error_string.
      IF NOT error_string IS INITIAL.
        we received a detailed error description
        WRITE:/ error_string.
        EXIT.
      ELSE.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDIF.
    Close spool job
    CALL FUNCTION 'FP_JOB_CLOSE'
      IMPORTING
        E_RESULT             =
      EXCEPTIONS
        usage_error          = 1
        system_error         = 2
        internal_error       = 3
        OTHERS               = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ------------ Call BCS interface ----------------------------------
    TRY.
      ---------- create persistent send request ----------------------
        send_request = cl_bcs=>create_persistent( ).
      ---------- add document ----------------------------------------
      get PDF xstring and convert it to BCS format
        lp_pdf_size = XSTRLEN( ls_formoutput-pdf ).
        pdf_content = cl_document_bcs=>xstring_to_solix(
            ip_xstring = ls_formoutput-pdf ).
        document = cl_document_bcs=>create_document(
              i_type    = 'PDF'
              i_hex     = pdf_content
              i_length  = lp_pdf_size
              i_subject = 'test created by BCS_EXAMPLE_6' ). "#EC NOTEXT
      add document to send request
        send_request->set_document( document ).
      ---------- add recipient (e-mail address) ----------------------
        recipient = cl_cam_address_bcs=>create_internet_address(
            i_address_string = p_email ).
      add recipient to send request
        send_request->add_recipient( i_recipient = recipient ).
      ---------- send document ---------------------------------------
        sent_to_all = send_request->send(
            i_with_error_screen = 'X' ).
        IF sent_to_all = 'X'.
          message i022(so).
        ENDIF.
      ---------- explicit 'commit work' is mandatory! ----------------
        COMMIT WORK.
    *            exception handling
    * replace this very rudimentary exception handling
    * with your own one !!!
      CATCH cx_bcs INTO bcs_exception.
        WRITE: text-001.
        WRITE: text-002, bcs_exception->error_type.
        EXIT.
    ENDTRY.

  • PDF printing error in some reports

    Hi,
    I am using apache-tomcat-6.0.26 + cocoon-2.1.11 as my PDF print server for Apex. I tested the server and found out that, for simple reports with very limited parameters, PDF download worked find. However, for reports that have certain parameters, it said something like "Adobe Reader cannot open the file because it is either not a supported file type or file is damaged...".
    Also, how can I change the memory size to 512 of Tomcat on Windows?
    Any help?
    Thanks.
    Andy

    Hi Andy,
    Do the parameters that you enter into the report generate any result set?
    I don't really know what is causing the error you experiencing but I found that sometimes I would get a similar error when I attempted to print a report to PDF that contained no data (although I was using BI Publisher). Not sure if this has something to do with it...
    Alternatively, there could be characters within the word document, like brackets (), that could be causing the issue. I think it still causes an issue even if it is in the data itself.
    I would start off with a simple report and then add a little bit of functionality at a time, and then test, to work out which part of the report is causing you grief.
    Amanda.

  • Pdf download damaged

    the document A96670-01 PDF HTML Oracle Enterprise Manager Administrator's Guide in pdf format errors after downloading with file damaged cannot repair. It also will not open online even after waiting for several minutes. The html version appears to be fine.

    Hi Emmet,
    I tried this - http://download.oracle.com/docs/pdf/A96670_01.pdf - and it worked fine.
    It took a few moments to load, but then saved successfull, and without issue to my PC.
    Please confirm if you are still encountering this issue.
    Thanks and regards,
    Les

  • Adobe download (error)not recognized w/ my MAC since FF3.6.12 installed

    My Mac is 10.6.4 and I updated FireFox 3.6.12 in Oct. Since then, if I'm in a website (e.g.APS) to download my statement I used to get it downloaded into a PDF. Now I get a download error message saying it cannot open the .acx file extension. I get this same error message whether I'm in any website I need to download something. I can download fine if I'm using my Safari. I have uninstalled Reader 9.4 along with Flash Player and re-installed both w/o any luck in being able to download files in any website. The Unable to download or save files HELP didn't have anything that worked to correct the problem. Is this a bug w/ FireFox 3.6.12 with Macs? I did not have this download error problem before updating to 3.6.12.

    Has anything else changed?
    Does the problem persist across a system restart?
    You might try a restart in safe mode, then an ordinary restart - sometimes that cures weird failures.

  • Csv and pdf download not support

    Hello,
    When I try to download the following report to PDF output using the interactive report, I receive this error:
    "Acrobat Reader could not open 'Report[1].pdf because it is either not a supported file type or because the file has been damaged (for example, it was sent as a email attachment and wasn't correctly decoded)"
    And CSV output.. I cant get correct font Example
    The result I want get is: "Trung cấp nghề"
    The result I get in fact is :"Trung c¿p ngh¿"
    I write vietnamese(utf-8).
    Help me!!!
    Thanks

    I am not sure how you have set up your PDF printing but I received the same error and depending on the type of report, I had to assign column aliases in the SQL for the PDF to open properly. The thread I posted is:
    FOP PDF Printing error
    V/R
    Robert

  • Strange PDF Download problem

    We are having a difficult time getting a PDF download to work with the
              Struts framework on WLS 5.1.
              This works fine with a servlet we have in production today, but when using
              Struts, it fails every time.
              We are submitting a form that contains a date and a type, and then going to
              a back-end vendor to retrieve the PDF stream and re-stream it back to the
              user. The URL that should work is as follows:
              http://xxxx/action/viewStmt?period=mm/dd/yy&type=PDF
              When we execute this URL, the action is invoked, the correct arguments are
              obtained, the vendor is called, and the streaming is done. However, the
              browser then pops up a message saying...
              "You have chosen to download a file from this location:
              yy&type=PDF from xxxx"
              and the download fails.
              We are doing almost the exact same thing with a servlet, and no such error
              happens. I don't know if this is Struts-related or some configuration
              issue.
              Any ideas?
              Thanks,
              John
              

    it sounds like the browser wants to download a file who's ContentType
              isn't set.
              try the following:
              response.setContentType(<ENTER PROPER PDF CONTENT TYPE HERE>);
              it'll probably be something like "application/pdf" or "text/pdf"
              with Struts you'll probably have to extend the Action bean to handle
              that. just have that extended Action read the type parameter and
              interpret it.
              hope that helps
              e.j. fuhr
              "John Bauer" <[email protected]> wrote in message news:<[email protected]>...
              > We are having a difficult time getting a PDF download to work with the
              > Struts framework on WLS 5.1.
              > This works fine with a servlet we have in production today, but when using
              > Struts, it fails every time.
              >
              > We are submitting a form that contains a date and a type, and then going to
              > a back-end vendor to retrieve the PDF stream and re-stream it back to the
              > user. The URL that should work is as follows:
              >
              > http://xxxx/action/viewStmt?period=mm/dd/yy&type=PDF
              >
              > When we execute this URL, the action is invoked, the correct arguments are
              > obtained, the vendor is called, and the streaming is done. However, the
              > browser then pops up a message saying...
              >
              > "You have chosen to download a file from this location:
              >
              > yy&type=PDF from xxxx"
              >
              > and the download fails.
              >
              > We are doing almost the exact same thing with a servlet, and no such error
              > happens. I don't know if this is Struts-related or some configuration
              > issue.
              >
              > Any ideas?
              >
              > Thanks,
              > John
              

  • PDF decoding error then  data exceeds 99 pages

    Dear all,
    i'm facing a PDF decoding error when as an atachment in a Email.
    I figure that PDF attachment is opening when it HAS less the 100 pages but can not open
    below is the error message when open ADOBE, this happens only when pages are more  than 99.
    "Adobe Reader could not open 'NAME.PDF' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded) "
    can anyone help me please.

    For checking this
    First download using fm GUI_DOWNLOAD as bin (PDF) download to you desktop and open it. if its working then you may need to check settings in SCOT.

  • My add-on's aren't working since upgrading...are their pdf download and screengrab updates available anywhere?

    My 'pdf download' by Nitro and the Screengrab! 0.96.3 is incompatible with FireFox 7.0.1.
    Are there other add-on's that will perform these functions that are compatible with the updated version of FF, or will I need to uninstall the latest FF update in order to continue using these features?
    Also, Java Console is now disabled and nothing compatible for it either, updates are unavailable....etc.

    1.) Locate "C:/Windows/System32/Drivers/etc/hosts". Copy the "hosts" file onto your desktop as a backup if any errors may occur during the process.
    2.) As an administrator, open the "hosts" file inside "etc" folder with Notepad and erase the last lines related to gs-apple that looks like this:
    "#127.0.0.1 gs·apple·com"
    3.) Restart iTunes if opened and connect your device after it is in DFU mode.
    4.) Casually do a restore like normal, and you're done.
    5.) After restore is completed, replace the "hosts" file inside the "etc" folder with the backup you've copied onto your Desktop to prevent possible future errors. Hope this works!

  • P1505 Firmware Download Error

    I have recently begun purchasing P1505 printers to replace our 1018 and 1020 units which are having problems printing PDF documents.
    I now have two printers producing the same exact result.  Both computers are running Windows Vista Business x64.  Both units, produce the error, "Firmward Download Error" in a big dialog box that freaks out my users.  This error pops up when the user attempts to print.  The print job is always successful, but the error shows up and they are required to close the box.  At first I thought this was a problem with just one of the units since it appeared there first, but now that I'm having it on both units, I'm a little upset.
    What information do I need to supply in order to expedite the resolution of this problem?
    Thanks!

    Maybe this will help?
    The firware isn't listed under XP, but it is under XP-64bit
    File name:ljp1505n_FW_Update_20080505.exe, (1/1 , 2.02M)By downloading, you agree to the terms and conditions of the HP software licensing agreement» HP software licensing agreement.
    Released: 2009-09-18 Version: 20080505 Compatibility: Microsoft Windows 2000, Microsoft Windows XP, Microsoft Windows Vista, Microsoft Windows Vista (64-bit), Microsoft Windows Server 2003, Microsoft Windows Server 2003 64-Bit Edition, Microsoft Windows XP x64 
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloa​dIndex?softwareitem=bi-60556-3&lc=en&dlc=en&cc=us&​lang=en&os=2100&product=3435671 

Maybe you are looking for

  • Can you lock a pdf to print in Actual Size?

    I'm having an issues when others go to print out a document and don't make sure the document is set to print in actual size and we lose the scaling on the document. Is there a way to lock the print settings on a pdf so they are always correct?

  • Cannot sync my iPhone 5s, macbook usb is drawing too much power

    I have a macbook pro, 2.8 ghz intell core i7 and a new iphone 5s. Each time i try to sync using the apple usb cord, I get an error saying that a device is drawing too much power and the usb has been disabled. Help! I am trying to get my pcitures on m

  • Smartform printing problem across network printers

    Hi All! I am facing problem with printing a smartform. When I give LOCL as printer name I am getting an exact printout  but when I use any network printer name I am getting black portions printed over the areas where I have tables. Can anyone advise

  • Burning Purchased Movies onto a DVD

    If I purchase and download a movie from the iTunes store, can I burn that movie to a DVD the same way that a burn or back-up my music to a CD? Also, if I put the movie onto a DVD, will it play in a DVD player? Message was edited by: fortonr185

  • Best way to setup system!! Pls Help!

    I just bought a new iMac and I have about  0.7 Tb of movies, photos, and pics on an external 2 tb and 2 tb hard drive with raid 1. I also have another hard drive 2 tb I am using as a time capsule. I have two accounts and I am trying to keep it where