Issue with Adobe PDF Ifilter Extension version 11

Dear Friends
Come across few issues while determining correct version of Adobe PDF Ifilter Extension
In my local laptop I installed Ifilter extension 9.0 but unfortunately this version is no longer available for further download.
Latest version is 11.0 and I downloaded from below link.
http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows
Just for verification, I uninstalled old version(9.0) and installed the above version(11.0) but going forth PDF indexing stopped working.
I have a requirement of PDF file content search and using Lucene.Net for this purpose. Lucene indexer that I have written is reading PDF content using PDF filter extension.
I noticed above code stopped working for any site hosted on IIS. However console,desktop and IIS express applications are working fine.
For further verification, I installed the same component in another laptop also but ended with same experience.
Please provide some input.
Regards Paul

Hi Bibhas,
Please configure iFilter as mentioned in the doc: http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/Acrobat_Reader_IFilter_config uration.pdf
Regards,
Rave

Similar Messages

  • Issue with Adobe PDF IFilter 64 bit

    Hi All,
    I am facing issue while using Adobe IFilter for 64 bit, the section of code mentioned below is used to load IFilter for PDF IFilter 64 bit using IPersist interface.
    LibHndl = LoadLibrary(strDLLName.c_str());
    if(LibHndl)
                     FnPtr_DllGetClassObject fnDLCO = NULL;
                     // Add to the load list.
                     fnDLCO = (FnPtr_DllGetClassObject)GetProcAddress(LibHndl, "DllGetClassObject");
                     if(NULL != fnDLCO)
                         IClassFactory* pICF = NULL;
                         hrslt = fnDLCO(objChachedIFilterNode.m_iidFilterPersistance, IID_IClassFactory, (LPVOID *)&pICF);
                         if( ( S_OK == hrslt ) && (NULL != pICF) )
                             IFilter *pobjIfilter = NULL;
                              hrslt = pICF->CreateInstance(pUnkOuter, IID_IFilter, (void**)&(pObjIfiter));
                             if( ( S_OK == hrslt ) && (NULL != pObjIfiter) )
                                 IPersistStream* persistStream = NULL;
                                 hrslt = pObjIfiter->QueryInterface(IID_IPersistStream, (void**)&persistStream);
    with this pointers to IFilter and IPersistStream for Adobe PDF filter 64 bit have been obtained then the code section below is used to load the IFilter
            size_t dwReadSize = 0;
             pFile = fopen(pszFileName, "rb"); //pszFileName: complete path of pdf file
             if(NULL != pFile)
                 if(0 == fseek(pFile, 0L, SEEK_END))
                     dwSize = ftell(pFile);
                     dwFileSize = dwSize;
                     fseek(pFile, 0L, SEEK_SET);
                       m_pbyDataBuffer  = (unsigned char  *)GlobalAlloc(GPTR, dwSize);
                        bool bolReadFile = false;
                 if(NULL != m_pbyDataBuffer)
                     dwReadSize = fread(m_pbyDataBuffer, 1, dwSize, pFile);
                 hStreamResult = CreateStreamOnHGlobal(NULL, TRUE, &m_pIStreamBuffer);                   //m_pIStreamBuffer: is pointer to IStream
                 if(NULL != m_pIStreamBuffer)
                     LARGE_INTEGER iLarge = {0};
                     m_pIStreamBuffer->Seek(iLarge, STREAM_SEEK_SET, NULL);
                     ULARGE_INTEGER uInt = {0};
                     ULONG dwBytesWritten = 0;
                     m_pIStreamBuffer->SetSize(uInt);
                     if(NULL != m_pbySecDataBuffer)
                         hStreamResult = m_pIStreamBuffer->Write((void const*)m_pbySecDataBuffer, (ULONG)dwSize, &dwBytesWritten);
                     else
                         hStreamResult = m_pIStreamBuffer->Write((void const*)m_pbyDataBuffer, (ULONG)dwSize, &dwBytesWritten);
                 fclose(pFile);
                 pFile = NULL;
             if(S_OK == hStreamResult)
                 if((NULL != objCIFilterExNode.m_pObjIfiter) &&\
                     (NULL != objCIFilterExNode.m_pObjIPersistStream))
                     m_pGenericFilter = objCIFilterExNode.m_pObjIfiter;
                     m_pPersistStream = objCIFilterExNode.m_pObjIPersistStream;
                     if(NULL != m_pIStreamBuffer)
                         hReturnValue = m_pPersistStream->Load(m_pIStreamBuffer);
    this entire piece of code is working completely fine in debug mode where as in release mode the same thing is causing hang once the control reaches to hReturnValue = m_pPersistStream->Load(m_pIStreamBuffer); statement i.e. execution of this statement is causing the hang in application in release mode and this is happening only in case of pdf files while for all the other extensions files everything is working fine in both debug as well as release mode i.e. loading of all other IFilters is working fine.
    kindly help to resolve this problem for pdf files.
    Thanks
    Sheela Gusain

    Hi Bibhas,
    Please configure iFilter as mentioned in the doc: http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/Acrobat_Reader_IFilter_config uration.pdf
    Regards,
    Rave

  • Memory Problems with Adobe PDF iFilter for 64-bit

    In preparation to rebuild my Windows Search Index, I installed the Adobe PDF iFilter for 64-bit on my system (Vista Business 64).  When I finally rebuilt the index, I wasn't too surprised by what I saw happen, namely, the SearchFilter.exe process would kick in whenever I wasn't using the system and just eat RAM.  One time I turned it on and it had allocated over 4,000 MB (and my system only has 4,030 MB available) so of course it was forcing all the other processes to hard fault (ie. everything was moving like molasses--for example, it took 20 minutes to put the thing to sleep).  But I just let it do it's work, figuring that perhaps this was to be expected relative to the small library of PDF's that I've accumulated on my computer, ranging from LaTeX generated text files, to containers for hi-res scans.  So, after a day and a half of basically not using my laptop, everything finally calmed down and I enjoyed the benefits of searching the content of my library from the Windows Start menu--for a short while.
    However, to my dismay I've encountered the problem that this freezing of my computer would now occur after everytime I download a new PDF (in this particular case they were Google Books scans) and then left the computer to idle.  Again, the SearchFilter.exe would allocate all of my RAM for itself and just push everything else onto the Virtual RAM, which means the SLOWEST possibly fetching you can get.  I had to uninstall as this was making my computer unusable for 15-30 minutes after each idle. Everything is back in working order without the iFilter, but I would like to know if anyone has reported such problems on x64 systems.  Obviously, I will also report the problem to Microsoft, since the search engine should certainly have the precaution to handle such memory problems.   However, it is a problem that is created by the Adobe PDF iFilter interacting with the Windows Search engine.

    Hello,
    We believe we have figured this out.  It looks like it has to do with the length of the default folder location for the Adobe iFilter.
    I was able to reproduce the issue and the following resolved it for me.  See if this resolves it for you all as well.
    Here is how to get Adobe Version 11 PDF filter to work.
     1 . If you haven’t already, run the following in SQL Server:
    Sp_fulltext_service ‘Load_os_resources’, 1
    Go
    --you might also need to run: 
    sp_fulltext_service ‘Verify_signature’,0  --This is used to validate trusted iFilters. 0 disables it. So use with caution.
    --go
    2. Stop SQL Server.  (Make sure FDHost.exe stops)
    3.  
    Uninstall the Adobe ifilter (because it defaulted to having spaces or the folder name is too long).
    4.  
    Reinstall the Adobe iFilter and when it prompts for where to install it, change it to: C:\Program Files\Adobe\PDFiFilter
    5.  Once the installation finishes, go the computer’s Environment variables. Add the following to the PATH.
    C:\Program Files\Adobe\PDFiFilter\BIN
    NOTE: it must include the BIN folder
    NOTE: If you had the OLD location that included spaces, remove it from the path environment variable.
    6. Start SQL Server
    7.  IF you had an existing Full-text index on PDFs, drop the full-text index and recreate it.
    8. You should now get results when you run sys.dm_fts_index_keywords('db','tblname')  --Note: Change db to be the actual database name and tblname to be the actual table name.
     Give this a try and see if this fixes yours. 
    Sincerely,
    Rob Beene, MSFT

  • Print issue with Adobe PDF reader print in IE9

    We are unable to print Brava PDF documents with Adobe PDF reader activeX enabled in IE9. The same runs fine in Chrome with  Adobe PDF reader activeX enabled.
    I noticed Chrome uses
    C:\Program Files\Adobe\Reader 10.0\Reader\AIR\nppdf32.dll, whereas IE9 uses-C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroPDF.dll. 
    Has anyone faced this issue?

    Can you print other pdf files from within IE9? Can you download the files and print them directly from Reader on you computer? Please list the steps you are using to print the pdf from IE9.

  • Issue with Adobe Acrobat Pro XI Version 11.1.10

    Using Adobe Acrobat Pro XI version  11.1.10 when I try to delete a page I get an error message, "one or more pages are in use and cannot be deleted". I would like to delete the pages?

    Hi Frank,
    This type of error usually occurs when two or more than two programs are accessing the same file at a point of time.
    Does this issue occur with that specific pdf or with other pdfs too?
    How about if you make a copy of that pdf and then try deleting pages from that copied pdf? Do let me know if that works.
    If possible...Can you mail me that pdf file at [email protected] so that i can check this issue at my end?
    Regards,
    Rahul

  • Adobe PDF iFilter 9 for 64-bit platforms does not index my PDF files with Digital Sign

    Adobe PDF iFilter 9 for 64-bit platforms does not index my PDF files with Digital Sign, why?

    hi  Phillip
    i am not sure what you mean
    I downloaded the ifilter and installed it
    then configured everything as shown in the pdf file
    I tried indexing from scratch exactly as i did successfully in the other computer
    and got some errors in the log file
    i checked the sql server log and the event viewer logs and got :
    Error '0x80004005' occurred during full-text index population for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'), full-text key value 0x0000027A. Attempt will be made to reindex it.    
    The component 'PDFFilter.dll' reported error while indexing. Component path 'C:\Program Files\Adobe\Adobe PDF iFilter 9 for 64-bit platforms\bin\PDFFilter.dll'.   
    Informational: Full-text retry pass of Full population completed for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'). Number of retry documents processed: 1. Number of documents failed: 1.
    Changing the status to MERGE for full-text catalog "Pirsumim_ext_catalog_ck" (5) in database "Pirsumim_ext_ck" (14). This is an informational message only. No user action is required.
    Informational: Full-text Auto population initialized for table or indexed view '[Pirsumim_ext_ck].[dbo].[T_PUBLICATIONS]' (table or indexed view ID '2073058421', database ID '14'). Population sub-tasks: 1
    the same dll worked fine in another computer...
    how can i see more details what is wrong with this dll  ?
    meidad

  • Issue: installed Adobe Reader XI, Norwegian version, existing pdf will not open or appear empty

    I have uninstalled and reinstalled a number of times, but I still have the same issue. Adobe automatically gives me the Norwegian version as I live in Norway. When I open existing pdf files they appear empty, and automatically close themselves after a few seconds.
    Any idea how I can solve this problem?
    Your input is highly appreciated!
    Thank you.
    R

    Thank you so much for your swift response, Pat! The first step – accepting the Eula license agreement solved my problem ☺ ☺ ☺
    Wish you a great day – you just helped making mine a lot better!
    Randi
    Fra: Pat Willener [email protected]
    Sendt: 27. august 2013 09:09
    Til: Randi Hognestad
    Emne: Issue: installed Adobe Reader XI, Norwegian version, existing pdf will not open or appear empty
    Re: Issue: installed Adobe Reader XI, Norwegian version, existing pdf will not open or appear empty
    created by Pat Willener<http://forums.adobe.com/people/pwillener> in Adobe Reader - View the full discussion<http://forums.adobe.com/message/5629375#5629375

  • Adobe PDF iFilter SQL Server 2008 R2 Full Text not working

    Unable to get the SQL Server 2008 R2 to index PDF files for full-text searching.
    Environment: Windows 7 SP1 Enterprise 64-bit, SQL Server 2008 R2 Express SP3 64-bit, Adobe Reader 11.x
    Installed PDF iFilter 64 (11.0.01) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    Added its folder (C:\Program Files\Adobe\Adobe PDF iFilter 11 for 64-bit platforms\bin\;) to the PC system Path variable. Rebooted PC.
    Confirmed SQL Server sees the Adobe PDF iFilter ..... SELECT * from sys.fulltext_document_types where document_type = '.pdf' 
    Inserted PDF files to my table (see below for CREATE statement).
    The SQLFT log says  ... Warning: No appropriate filter was found during full-text index population for table or indexed view '[TestDB].[dbo].[pdfifiltertable]' (table or indexed view ID '2105058535', database ID '7'), full-text key value '1'.
    Some columns of the row were not indexed.
    Installed other filters for Office. Added files of type DOC, XPS. Confirmed the search query works for those file types. So as such SQL Full-Text is enabled and working.
    Below my T-SQL commands:
    Exec sp_fulltext_service 'load_os_resources', 1
    Exec sp_fulltext_service 'verify_signature', 0
    Exec sp_fulltext_database 'enable'
    CREATE TABLE pdfifiltertable(
    PdfID INT IDENTITY NOT NULL,
    PdfFileName VARCHAR(MAX),
    Ext VARCHAR(10) ,
    PdfText VARBINARY(MAX),
    CONSTRAINT PK_PdfID PRIMARY KEY (PdfID)
    GO
    CREATE FULLTEXT CATALOG pdfCatalog AS DEFAULT
    GO
    CREATE FULLTEXT INDEX ON pdfifiltertable([PdfText] Type column [Ext]
    ) KEY INDEX PK_PdfID with change_tracking auto
    GO
    SELECT pdfFileName FROM pdfifiltertable WHERE CONTAINS(pdftext, 'payment')

    What edition are you using? Like is it SQL-Express or SQL-Standard etc.
    Adding files using C# desktop application.
    Tested in another PC SQL-Server Express 2008 with Windows 7 64-bit. Same issue.
    C# source code ... add a button called uploadPDF and a datagridview called datagridview to the form.
    using System;
    using System.IO;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    namespace UploadPDF
    public partial class Form1 : Form
    #region Properties
    protected static string ConnectionString {
    get {return "Integrated Security=SSPI;database=Testdb;Data Source=localhost\\SQLEXPRESS;Workstation ID=localhost;";}
    protected static SqlConnection Connection {
    get {return new SqlConnection(ConnectionString);}
    protected DataTable pdfDataTable;
    #endregion
    public Form1()
    InitializeComponent();
    populateDataGrid();
    protected void populateDataGrid()
    SqlConnection con = Connection;
    con.Open();
    try
    pdfDataTable = new DataTable();
    SqlCommand cmd = new SqlCommand( "select * from pdfifiltertable", con);
    SqlDataAdapter adapter = new SqlDataAdapter(cmd);
    adapter.Fill(pdfDataTable);
    dataGridView.DataSource = pdfDataTable;
    dataGridView.Columns[3].Visible = false;
    finally {
    con.Close();
    private void uploadPDF_Click(object sender, EventArgs e) {
    if (DialogResult.Cancel == fileOpenDialog.ShowDialog()) return;
    try {
    byte[] content = FileToByteArray(fileOpenDialog.FileName);
    uploadPDFBlob2DataBase(fileOpenDialog.FileName,content);
    populateDataGrid();
    } catch (Exception ex) {
    MessageBox.Show(ex.Message, "PDFiFilter11", MessageBoxButtons.OK, MessageBoxIcon.Error);
    public byte[] FileToByteArray(string _FileName) {
    byte[] pdfBuffer = null;
    try {
    System.IO.FileStream _FileStream = new System.IO.FileStream(_FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
    System.IO.BinaryReader _BinaryReader = new System.IO.BinaryReader(_FileStream);
    long TotalNumberOfBytes = new System.IO.FileInfo(_FileName).Length;
    pdfBuffer = _BinaryReader.ReadBytes((Int32)TotalNumberOfBytes);
    _FileStream.Close();
    _FileStream.Dispose();
    _BinaryReader.Close();
    } catch (Exception _Exception) {
    Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
    return pdfBuffer;
    public void uploadPDFBlob2DataBase(String fName, byte[] content) {
    SqlConnection con = Connection;
    con.Open();
    String ext,filename;
    ext = Path.GetExtension(fName);
    filename = Path.GetFileName(fName);
    try {
    SqlCommand insert = new SqlCommand( "insert into pdfifiltertable ([PdfFileName],[Ext],[PdfText]) values ((@pdfFileName),(@extension),(@pdfcontent))", con);
    SqlParameter pdffilenameParameter = insert.Parameters.Add("@pdfFileName", SqlDbType.NText);
    pdffilenameParameter.Value = filename;
    pdffilenameParameter.Size = filename.Length;
    SqlParameter extParam = insert.Parameters.Add("@extension", SqlDbType.NVarChar);
    extParam.Value = ext;
    extParam.Size = ext.Length;
    SqlParameter pdfcontentParameter = insert.Parameters.Add("@pdfcontent", SqlDbType.Binary);
    pdfcontentParameter.Value = content;
    pdfcontentParameter.Size = content.Length;
    insert.ExecuteNonQuery();
    } finally {
    con.Close();
    } //class
    } //namespace

  • Adobe PDF IFilter for document searches does not work

    I am new to full text indexing of documents but I know enough to get the files into the database and apply indexing and searches because I got it to work for Word (.doc) files.  
    I'm trying to get Adobe's Ifilter version 11 to work in Windows 7 x64.  I'm using Sql Server 2012 Express with Advanced Services sp1. I have included the full path to the /bin folder for the PDF dll in my PATH environment variable per the instructions.
    Register ifilters (after install)
    EXEC sys.sp_fulltext_service 'load_os_resources', 1;
    Verify that the .pdf filter is installed:
    EXEC sys.sp_help_fulltext_system_components 'filter';
    This is the row I get for PDF which I delimited with ';'. The underline portion is what I have in PATH env variable.
    filter; .pdf; E8978DA6-047F-4E3D-9C78-CDBE46041603; C:\Program Files\Adobe\Adobe PDF iFilter 11 for 64-bit platforms\bin\PDFFilter.dll; 11.0.1.36;  Adobe Systems, Inc.
    The file content column is
    content VARBINARY(MAX) NOT NULL
    I insert the file with
    INSERT INTO dbo.Documents (filename, doctype, content)
    SELECT
     N'MyFile',
     N'pdf',
     bulkcolumn
    FROM OPENROWSET(BULK 'C:\MyFile.pdf', SINGLE_BLOB) AS doc;
    I reboot the machine and rebuild the Full Text Catalog after installing the PDF iFilter.
    Then I search with one of these.  There are Word and PDF files that contain 'apple'.
     SELECT id, filename, doctype FROM dbo.Documents WHERE FREETEXT(content, N'apple');
     SELECT id, filename, doctype FROM dbo.Documents WHERE CONTAINS(content, N'apple');
    Now this all works well for .doc files but .PDF files never show up in searches.  I have tried both version 9 and version 11 to no avail.
        

    Hello,
    We believe we have figured this out.  It looks like it has to do with the length of the default folder location for the Adobe iFilter.
    I was able to reproduce the issue and the following resolved it for me.  See if this resolves it for you all as well.
    Here is how to get Adobe Version 11 PDF filter to work.
     1 . If you haven’t already, run the following in SQL Server:
    Sp_fulltext_service ‘Load_os_resources’, 1
    Go
    --you might also need to run: 
    sp_fulltext_service ‘Verify_signature’,0  --This is used to validate trusted iFilters. 0 disables it. So use with caution.
    --go
    2. Stop SQL Server.  (Make sure FDHost.exe stops)
    3.  
    Uninstall the Adobe ifilter (because it defaulted to having spaces or the folder name is too long).
    4.  
    Reinstall the Adobe iFilter and when it prompts for where to install it, change it to: C:\Program Files\Adobe\PDFiFilter
    5.  Once the installation finishes, go the computer’s Environment variables. Add the following to the PATH.
    C:\Program Files\Adobe\PDFiFilter\BIN
    NOTE: it must include the BIN folder
    NOTE: If you had the OLD location that included spaces, remove it from the path environment variable.
    6. Start SQL Server
    7.  IF you had an existing Full-text index on PDFs, drop the full-text index and recreate it.
    8. You should now get results when you run sys.dm_fts_index_keywords('db','tblname')  --Note: Change db to be the actual database name and tblname to be the actual table name.
     Give this a try and see if this fixes yours. 
    Sincerely,
    Rob Beene, MSFT

  • Issues with Adobe Professional 9

    Hi
    We are facing some issues with Adobe Professional 9,
    The problems are as follows while converting the DOC file to PDF using Adobe Proff 9.
    1) Bullets are missing
    2) Crossreferences are not working
    3) adding junk characters in header.
    Can you please help me on this.
    We need to understand the issue.
    Manohar S S

    Just some stray thoughts on the topic:
    Use Adobe PDFMaker to create the PDF from the MS Word file.
    When a MS Word cross-reference is inserted, ensure that "Insert as hyperlink" is ticked in the Cross-reference dialog.
    In the configuration of Adobe PDFMaker's Preferences, ensure "Add Links" is ticked (under the Settings tab).
    Ensure that the installed Acrobat (and associated Adobe PDFMaker) is working with a compatible version of Office.
    See: http://kb2.adobe.com/cps/333/333504.html
    For all characters used in the source MS Word file; ensure that the characters used provide proper mapping to Unicode.
    Do not use characters that rely upon a restricted character value.
    When using Word Headings/Styles that incorporate the bullet character, ensure you work from those that are "built-in" to MS Word.
    If you are working out of Windows 7 / Office 2010 you need to move up to Acrobat X.
    Be well...

  • Issue with Adobe maybe?

    Hi,
    So I am having issues with adobe reader.  I work as tech support and someone called in with issues.  His issue is:
    Cannot open forms and enter information then save them back using his program.  The webprogram he is using is JIDS.  JIDS requires that the pdf be opened in the webbrowser.  This is so it can be saved back to their database or whatever. 
    The issue is when he tries to open the document in ie it opens it on his local adobe program not in the browser.  I checked the addons and adobe will not appear there. (in any of the catagories plz do not reply im in the wrong view or whatever)  If I open a force ie to open a pdf nothing appears (makes sense because it says there is no addon).  I have uninstalled and reinstalled adobe multiple times from adobe.com (it is up-to-date) every time says installed successfully.  This is a new computer and does not have older versions on it.  I have removed it using the adobe cleaner then reinstalled no change.  I tried reapplying the acropdf.dll using regsvr32 both in the 32bit and 64 bit locations (\windows\system32\ and \windows\sysWOW64\) and I keep getting an error that says loaded but dllregisterserver error 0x80070005.  which is permissions error, but he is the only admin on the pc(local admin) and has full access, uac is shut off and i was using the cmd in run as administrator mode.
    Since i couldnt find anything else on this I dicided to use firefox since ie and FF are only browsers allowed by JIDS.  I downloaded newest FF and FF does say adobe reader addon is installed, but when i open the pdf in the JIDS program the fields are not editable and it has a popup ontop of the browser saying something about compatability issue and asks me to open with different program (clicking it opens the pdf in the adobe reader program and it is then editable but will not save back to the website, no supprise there).
    He is using windows 7 64bit logging onto a domain.  Using IE9 and updated adobe reader (11.0.03) and newest version of Firefox
    Windows is fully up to date.
    His computer is the exact same model as the one next to it that works perfectly fine and he hasnt done anything that could have messed up the system files (he knows he is bad with computers and doesnt do anything without asking someone else first).  Mostly only uses the webbrowser and another program thats installed on there for him already.
    I plan on installing adobe reader X or possibly older version of IE/FF to see if these might help.  I also will be checking/disabling what he has for AV (i think its just windows security essentials but im not sure will doublecheck). 
    Any other suggestions on things to try?  What is could be causing these issues?

    Probable issue with the Firefox is that in the documentation it is poorly worded poorly,  JIDS only support FF 17.
    What is the issue with IE if that does fix the FF issue?

  • Viewing issue with Adobe Reader

    Hi there,
    I'm having an issue with Adobe reader, which appears to be not related to platform or version. To cut a long story short. I've created an A4 design in Photoshop. Part of this design includes some boxes, that have been given an outline (border) effect. Also bare in mind that the Photoshop files are being created at 350dpi.
    When I put my design into Illustrator/ InDesign and then generate a PDF file. I then go and look at the pdf file and when the zoom is at 100%, the edges of the boxes are not straight, you'll get a slight offset half way along for example. However, when I zoom in to 400% the problem disapears and the lines (edges) look perfectly as they should.
    Does anyone know about this issue? I'm worried that when I print from the PDF, this issue will be in the print-out - or will it be OK when I print it seeming as it dissapears at 400% zoom.
    Any prompt answers or help would be appreciated.
    Kind regards,
    Luke

    Can you open Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].

  • Issue with opening .PDF files after recalling from Symantec Enterprise Vault

    Good Morning,
    I am having issues with opening PDF files that have been recalled from Symantec Enterprise Vault and some of the files are anywhere from 3-4 years old.  Some files open, while others return the error: Adobe Reader could not open filename.pdf because it is not a supported file type or might have been damaged.  It is inconsistent as to which files it occurs with.  I am not ready to believe that I have that many corrupt files out there.  I am opening them on a Windows 7 Enterprise SP1 x64 desktop. Adobe 10.1.7. I have already configured the registry setting for bValidateBytesBeforeHeader that I found in another article to no avail.
    The files are on a network share, but I also tried copying them to my local desktop and still received the error.
    I have seen other posts regarding this error, but do not see a definitive solution and am hoping that in recent days someone has come up with a solution.
    Thank You
    Brian Dougherty

    Not supported file type can (but not always) mean the PDF was created with an old enough version of Acrobat, that it isn't comaptible with reader X or XI.
    Might have been damaged is pretty cut and dried in its meaning and interpretation.
    There's a known issue with Mac OS and Safari Browser "breaking" PDFs as they download, but it's not so common for Windows. Since these are files you already had, it would be even less applicable.
    You can try downloading an older version of Reader to check if it's a compatibility issue, but you'd have to uninstall the latest to do it and it'd be a lot of bother if they still don't open. It would also mean they are "broken" and cannot be repaired, that I know of.

  • Issues with Adobe Reader with Windows 7

    I'm having big issues with Adobe Reader. It won't open/display PDF files and closes on it's own!

    Not sure if it can help you but I believe you have NVIDIA driver on your machine. Which version it is?
    Many tumes issue is seen with NVidia drivers on the machine. Not only Reader but other major apps also crash due to issues in this module.
    Please update the NVIDIA graphics card drivers. More information is provided in the below links
    http://windows.microsoft.com/en-us/windows/update-driver-hardware-isnt-working-properly#up date-driver-hardware-isnt-working-properly=windows-7
    Please let us know if you still face this issue.

  • I got some issues with Adobe Reader.

    Hello!
    I got some issues with Adobe Reader. When I read a document in the Firefox
    I have to click in the Adobe window all the time to reactivate keyboard shortcuts
    to tale effect in the document.
    Like when I scroll up and down the document with the arrow keys, this doesn't
    work after changing to an other windows or tab and coming back to the previous
    window.
    Was there a clue to this behavior? Like a check box or what I did not see until
    now?
    Thank You Very Much.
    Sincerely,
    Steve

    Does this occur with all pdf documents or only one specific document? What version of the Mac operating system are you using? What version of Acrobat reader?

Maybe you are looking for