Password protected PDF document not opened with E7...

Dear all,
Password protected PDF document not opened with nokia E7-00. Previously I used nokia N79, that time I was able to open Password protected PDF file such as bank email statement etc. Now I can't.
It is quite disappointing with this phone !

hi mateys,
you may want to search under "PDF" in the Nokia Store, as some solutions such as Picsel Smart Office exist, where they do open password-protected PDF's.

Similar Messages

  • Password protected PDF files not opening in Android

    Hi
    I was trying to open my credit card statement on my Android Galaxy S2 I9100 phone. Although it looks like that the Adobe reader 10.0.2 version (Build 40862) is capable of opening  Password protected files but I got an error "The document cannot be  opened because it is corrupted or damaged."
    I tried downloading it multiple times but faced the same issue. I googled and found that the similar issue has been reported by other users as well.
    Is this a known issue? Or am I doing something wrong? Please help.
    Thanks,
    Anuj Aggarwal

    Hi Anuj,
    Normally this error message comes when the pdf content is corrupt.
    Can you provide us with few more details to help us narrow down the cause.
    1. Are you able to open it on Desktop Adobe Reader ?
    2. Are you not able to open any of your credit card statements ?
    3. If possible can you share the pdf with us, so that we can isolate the issue at our end(your data will be kept confidential). If not can you share the name of the bank on which your credit card is issued so that we can get hold of similar pdf ?
    Thanks in advance.
    -mayank
    Please mail me at mayaguptATadobeDOTcom

  • I cannot open password protected PDF document with attachments with Adobe Reader on OS X. Crashes.

    I cannot open password protected PDF document having attachments on my OS X (v 10.8.4) with Adobe Reader X nor XI. The reader crashes. The same document using the same password opens fine on the laptop and Windows systems wheni it is fetched from a secure mail server. Why?

    Moved to Adobe Reader

  • Using 10.6.8, internet pdf documents not opening using Adobe Reader; how is this corrected?

    Using 10.6.8, internet pdf documents not opening using Adobe Reader; how is this corrected?  I've tried changing "sharing and permissions" to "read and write" as suggested on other help sites, but this did not correct the problem.

    I had the same problem---contacted Adobe and their service rep helped me by
    A.   Deleting  Adobe Reader from my iMac's Applications in Finder
    B.   Downloading Google Chrome browser and then
    C.   Downloading the latest Adobe Reader for Mac 10.6.8 in Google Chrome--it works
    Adobe acknowledges problem with the latest Snow Leopard update 10.6.8 and with this work around, I can open PDF's using the Google Chrome Browser.
    Is this the ideal solution---NO.  Safari is my main browser. I now have to use a separate browser for PDF's.
    Am I happy to be able to open PDF's---YES
    You can't believe the time I spent to solve this problem before calling Adobe for help. My Apple Care policy expired a month ago . As I use Photoshop Elements, I was not charged by Adobe for their help on the telephone.

  • Password protecting pdf documents

    Need to know what the minimum Adobe software I need to purchase to password protect pdf documents that I need to email.

    You need to purchase Adobe Acrobat for this.

  • Any way to password protect pdf document when emailing?

    Is there any way to password protect an adobe document when emailing like you would a word document?

    Hi bcanino,
    You can apply security to a PDF using Acrobat (apply an Open Document password, a Document Permissions password, or both). For more information, see PDF passwords, protected PDF, file permissions | Adobe Acrobat XI
    I hope that helps.
    Best,
    Sara

  • Weblinks pdfs will not open with recent install of Version X1?

    Weblink pdfs will not open using the newly installed Adobe X1 version. How to fix?
    Gives message suggesting problem with reader and ends with 103:103

    Hi Gordon,
    Can you please try opening the following PDF: http://samplepdf.com/sample.pdf.
    Do try to open it in browser by clicking the abobe link and in Adobe Reader itself by Right-Click on link->"Save link as".
    If you still getting these error, uninstall Reader using http://labs.adobe.com/downloads/acrobatcleaner.html and reinstall Reader from http://get.adobe.com/reader.

  • Why is my CD with documents not opening with my MacBook Pro?

    Why is my CD with documents not opening on my MacBook Pro?  I have inserted the CD and keep saying that it is not apple apps.

    I think I'm running iTunes 11.1.2.
    Also, my computer isn't even recognising it - its just saying my USB ports are power surging.
    (Thanks for your help! )

  • Generating password protected pdf document  usuing as_pdf_mini package

    Actually i want to implement password protected pdf file which is generated using as_pdf_mini.
    so i want help on that.....

    - Read the specs on PDF 1.3
    - take as_pdf3
    - the next is some code I used to check several steps of the encryption
    declare
      t_encryption_padding raw(32) := hextoraw( '28BF4E5E4E758A4164004E56FFFA01082E2E00B6D0683E802F0CA9FE6453697A' );
      p_owner_password varchar2(32) := '';
      p_user_password varchar2(32) := 'abc';
      t_tmp raw(32);
      t_tmp_u raw(32);
      t_o raw(320);
      t_u raw(320);
    begin
      t_tmp_u := utl_raw.substr( utl_raw.concat( utl_raw.cast_to_raw( p_user_password ), t_encryption_padding), 1, 32 );
      if p_owner_password is null
      then
        t_tmp := t_tmp_u;
      else
        t_tmp := utl_raw.substr( utl_raw.concat( utl_raw.cast_to_raw( p_owner_password ), t_encryption_padding), 1, 32 );
      end if;
      t_tmp := dbms_crypto.hash( t_tmp, dbms_crypto.hash_md5 );
      t_o := dbms_crypto.encrypt( t_tmp_u, dbms_crypto.encrypt_rc4, utl_raw.substr( t_tmp, 1, 5 ) );
    --dbms_output.put_line( t_o );
      t_tmp := dbms_crypto.hash( utl_raw.concat( t_tmp_u
                                               , t_o
                                               , utl_raw.cast_from_binary_integer( -4, utl_raw.little_endian )  -- waarde van /P
                                               , hextoraw( 'fb3642e78f13a14ef522287f16d63195' ) -- waarde van /ID
                               , dbms_crypto.hash_md5
      t_u := dbms_crypto.encrypt( t_encryption_padding, dbms_crypto.encrypt_rc4,  utl_raw.substr( t_tmp, 1, 5 ) );
    --dbms_output.put_line( t_u );
      t_tmp := utl_raw.concat( utl_raw.substr( t_tmp, 1, 5 )
                             , utl_raw.substr( utl_raw.cast_from_binary_integer( 8, utl_raw.little_endian ), 1, 3 ) -- object nr
                             , utl_raw.substr( utl_raw.cast_from_binary_integer( 0, utl_raw.little_endian ), 1, 2 ) -- generation nr
      t_tmp := dbms_crypto.hash( t_tmp, dbms_crypto.hash_md5 );
      dbms_output.put_line( dbms_crypto.encrypt( 'FEFF', dbms_crypto.encrypt_rc4,  utl_raw.substr( t_tmp, 1, 10 ) ) );
      dbms_output.put_line( dbms_crypto.encrypt( utl_raw.cast_to_raw( 'AS-PDF 0.3.0 by Anton Scheffer' ), dbms_crypto.encrypt_rc4,  utl_raw.substr( t_tmp, 1, 10 ) ) );
    end;Anton

  • Generating password protected pdf document -PLSQL

    Experts,
    Can please anyone to share the code how to do password protect the pdf which is located in unix directory.

    Google gave me below links :
    http://technology.amis.nl/2012/04/11/generating-a-pdf-document-with-some-plsql-as_pdf_mini-as_pdf3/
    PL/PDF generate and manipulate PDF with Oracle PL/SQL
    https://community.oracle.com/thread/2419241?tstart=0
    Regards
    Girish Sharma

  • PDF document not open and SAP logon closed by CV04N,

    Hello,
    When I try to open the PDF document by transaction CV03N/CV04N, it's  crash the SAP login.
    Please give anybody solution for this issue to fix
    Thank
    Surya

    Hi Surya,
    is it the same with CV03 as well?
    Is it the same crash using Display Document WebUI? (if you have EhP5+)
    You can uninstall your Adobe Reader from your computer and download the latest version from here:
    https://get.adobe.com/hu/reader/
    Which SAP Logon version do you have? You may have to upgrade it too.
    Best regards
    Tamas

  • PDF documents not opening in Mozilla at all, PDF option is not there under the options tab applications

    Hi,
    Firefox has automatically been "asking me" if I want to save the pdf document instead of showing them in the browser. I have update 22. I have tried to look for the pdf options under the options>applications settings and it doesn't even show up! Is this because I updated? I updated on July 4th and didn't need a pdf until now and this problem showed up. Before, I did not have this problem. PDFs were opening on the browser and I had that pdf option under the application's list.
    So I don't know what to do since I don't even have that option on here. What should I do?

    Hi thank you for taking the time to reply.
    ''"You can change the action for Portable Document Format (PDF) from Preview in Firefox to use another application like the Adobe Reader"''
    Yes, I have Adobe Reader installed and that's my preffered option. I have recently and manually uninstalled Adobe reader,Reinstalled it again, restarted my computer, and I am still having the same problem. I cannot see the option to preview the pdfs in firefox using adobe. It either uses the the Firefox pdf reader Zeon? or the other option is to Always ask me to download it to my desktop.
    I have attached what I see, maybe you can help me based on that. It seems the plugins work well (Figure 2) but only the pdf plugin for adobe to be previewed in firefox is missing (Figure1).
    Also, I attempted to re-initialize the plugin database but it still gives me the same option as always.
    ''"You can set the pdfjs.disabled pref to true on the about:config page to disable the build-in PDF viewer." ''
    No, if I set it to "true" then the pdf option under applications disappears. So I have kept it as false. (Figure 3 shows that it goes missing, not the same as in Figure 1)

  • Why do some pdf files not open with Adobe Reader X, most open OK?

    On my wife's 64 bit WIN 7 computer, a some pdf files will not open, but most open OK.
    She uses Acrobat Reader X and MS Office 2010.
    The same problem files open with no problem on my very similar computer.
    Is the problem with some setting on the Acrobat Reader or something else?
    Sometimes there is this error message when the problem files do not open:
    Find Click2run64.msi file to install MS Office Click to Run.
    But MS Office Click to Run is already installed on her PC.  It is not on my PC.
    Thanks for your help.

    The latest Reader is 11.0.01, not 11.0.1.  It is named Adobe Reader XI.
    I did uninstall the Reader X and installed this latest one.
    But it did not solve the problem, still could not open the problem pdf's .
    I did find the problem was caused by the MS Office Click to Run error referred to in my original message.  As far as I know we have no use for that on my wife's computer. Not sure how it got there.   I uninstalled it and so far the problem pdf's open fine now.  Problem solved.
    Thanks for your help.
    Frank M.

  • PDF document not openeing on some PC's

    Hello,
    In my BSP application a PDF document opens on a button click. However, the PDF seems to work on some machines and not on others. This is mainly in production.
    Can you please provide any suggestion for why it is behaving as such?

    Hi,
    My initial thought would be that the pdf extension (I hope that you provide the pdf extension, MIE needs it) isn't linked to AR.
    Check http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/win_fcab_reg_filetype.mspx for this.
    If you have eg Mozilla, check this http://www.mozilla.org/docs/end-user/helper-applications.html
    If that's not the case, I would add this in your BSP page that generates the PDF:
            runtime->server->response->set_header_field( name = 'Content-Length'
                                                 value = contentsize ).
            runtime->server->response->delete_header_field( name = 'Cache-Control' ).
            runtime->server->response->delete_header_field( name = 'Expires' ).
            runtime->server->response->delete_header_field( name = 'Pragma' ).
            runtime->server->response->set_header_field( name = 'Content-Type'
                                                     value = 'application/pdf' ).
    Eddy

  • PDFs will not open with new download

    Anyone else having this problem?  Downloaded new adobe reader and will not open any pdfs. 

    Have you accepted the EULA as suggested in your other topic?

Maybe you are looking for

  • A table in a table... ?

    Let's say I have a table tab (x number, y number) All I want is this table to be the column of another table, which table will be the column of another table.... Thus we will have a table within a table, within a table, within a table (9 times). I do

  • Pages file doubles on export to .epub

    When I export a Pages document to .epub, the file size doubles. I have a lot of .png images, and I have compressed them, but it still goes from a 12MB Pages file to a 24MB .epub file. What is happening and how do I keep my file to under 20 MB?

  • Safe Output Rating for 240V USB adapter to charge my IPod Touch4.

    Is it safe to use a 240V USB adapter I have for my camera that has an Output rating of 4.4V  400mA to charge my new IPod Touch4?  I note that similar comercial (non Apple) products that claim to be compatible with the IPod Touch4 have a rating of 5V

  • New vs. Old Model of Time Capsule... Advantages?

    I'm about to buy a Time Capsule and see there is a close-out model, MB277LL/A and a new model, MB765LL/A. But I'm not seeing any real comparisons of the two. Are there enough new features in the new model to go that way, versus save $150 or so and go

  • When i plug my Iphone into my Asus Laptop it gives me Blue screen of death

    When i plug my Iphone 4s into my Asus Laptop (k53s) it gives me Blue screen of death instantly :/