Thumbnail preview is not working for pdf file in KM

Hi Experts,
I have upload one pdf file. I have changed profile of one KM content folder from System Default to Thumbnails(For that Click on context menu of folder-> settings-> presentation->click on Select Profile ->check on Thumbnails-> Click on OK) but it is not changed. Rest of other file format's(gif etc) icon is changing.
Regards,
Viraj Vashi

Hi Viraj,
You need to upload an image "pdf.gif" in \etc\public\mimes\images folder.
Also, you need to define the MIME Type for PDF documents in portal.
Navigate to System Administration -> System Configuration -> Knowledge Management -> Content Management -> Utilities -> MIME Types.
Check whether you already have a MIME Type for PDF or not. Else you can create a new Type "pdf" with MIME Type "application/pdf".
Regards,
Sudip

Similar Messages

  • Preview is not working for MEdia files

    Suddenly whenever I would like to have a quick look for any video file via (Space bottom) its not working, keep giving that "Loading preview" but never show the video.
    i am using quick time X.
    any help
    mohammad

    There are quite a few different settings that you can choose from when converting a RAW file to a DNG. Without knowing what settings you set up in LightRoom there's no way to tell why your images aren't importing properly.
    Roughly speaking, a linear DNG is one where the first part of the RAW conversion process (called debayerising or demosaicing) has already been done by Adobe.
    Ian

  • Iframe is not working for pdf files in iPad safari

    Hi,
    Pdf file is not displaying properly in iPad safari. I have faced below issue while using iframe
    Not displaying in full width and height
    Not able scroll other pages in pdf
    Thanks,
    Arun

    Hi Viraj,
    You need to upload an image "pdf.gif" in \etc\public\mimes\images folder.
    Also, you need to define the MIME Type for PDF documents in portal.
    Navigate to System Administration -> System Configuration -> Knowledge Management -> Content Management -> Utilities -> MIME Types.
    Check whether you already have a MIME Type for PDF or not. Else you can create a new Type "pdf" with MIME Type "application/pdf".
    Regards,
    Sudip

  • Live Preview is not working for me

    Live Preview is not working for me.  I've read many other forums and tried everything and I still get the same issue that everyone else has mentioned.  I'm on Chrome  Version 34.0.1847.116 m .  I have multiple user profiles with Chrome so not sure if that makes a difference.
    Adobe Edge team, for a lightweight browser that should be easy to use, this does not make it easy.  Hopefully you can implement a fix soon that works for all cases as I was really looking forward to trying this out and I'm unable to.

    I am having issues as well.
    Running through the intro tutorials - Just the basic HTML tutorial files. When initiating live preview, I restarted Chrome as prompted for debugging, After restart the preview page loads fine a single time, works for about 10 seconds or so and then disconnects. I cannot get it to reconnect without restarting the program, but the same thing happens.
    Live Preview Error: Unable to Load Development Page
    The live preview icon remains orange - as if connected, but no changes write to the preview window in HTML or CSS.
    Ive seen the other threads, but none of those items seem to fix my issue.
    Anything I can do here besides wait for update? Love the basic product - the editing features are awesome, but until live preview + reliable FTP is set, I'll probably stick with current coding solutions.
    Running an Imac OSX 10.9.2
    Chrome 34.0.1847.116

  • In the product/app Adobe Acrobat reader mobile.it would be good to have layer support working for pdf files.

    In the product/app Adobe Acrobat reader mobile.it would be good to have layer support working for pdf files.

    http://winsupersite.com/article/windows8/windows-8-tip-change-file-associations-144102

  • Security option is not working for PDF Report

    security option is not working for PDF Report , e.g password , bug??

    what version of SQL Developer are you using?

  • Quartz filters are not working (for PDF)

    It seems that quartz filters are not working for me under Mountin Lion. I have tried to export, print, etc everything in Preview, Automator, ColorSync. It simply won't apply the filters to my PDFs.
    Anyone experienced similar issues? Is it a known bug?

    I kinda have the same problem, except its only my custom filters that aren´t working in ColorSynch. The other filters get applied as usual, but I can not change any of the preformed filters within ColorSynch, and the "live update from filter inspector" doesn´t work if I try to apply changes or use my custom filters.
    The custom filters I have, were created prior to my upgrade from snow leopard to moutain lion.
    I´ve understood that there has been multiple problems with the filters in lion ++
    If there isn´t a quick fix to this, does anybody know of any programs I can use to apply filters without having to buy Adobe Pro, my use is not for simply decreasing file size, but mostly for editing colors prior to prinitng. And its  not sufficient to use the preformed filters unfortunately.

  • Full-Text search is not working with PDF files - SQL Server 2012 64 bit

    Hi,
    We are in the process of storing PDF files in SQL Server 2012 with Full-Text search capability.
    I followed the steps as below and it works fine with word document but not for PDF files. I tried with PDF ifiler 11 & 9 and both are unsuccessful.
    Server/DB Level Settings:
    1)
    Enable FileStream
    2)
    Install Full-Text
    then restart
    3)
    Use [specific db]
    alter
    database [db name]
    add
    filegroup Files
    contains filestream;
    alter
    database [db name]
    add
    file (
    name = N'Files',
    filename =
    N'D:\SQL\DATA') to
    filegroup [Files];
    3)
    Database level
    Settings:
    FileStream:
    FileStream
    Directory name:
    [Set the name]
    FileStream
    non-transacted
    Access: [set Appropriate]
    3a)
    Add a
    datafile to DB
    with filestreamdata
    filetype.
    4)
    Share D:\SQL\DATA
    directory and
    add specific accounts
    with read/write
    access
    5)
    Give bulkadmin
    access to those
    specific accounts
    at server
    level
    6)
    From the
    page (link)
    download and
    install the *.pdf
    IFilter for
    FTS. Link:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    7)
    To the
    PATH global system
    variable add
    path to the
    catalog,
    where you installed
    the plugin.
    Default for
    this version is:
    C:\Program
    Files\Adobe\Adobe
    PDF iFilter 9
    for 64-bit
    platforms\bin
    8)
    From the
    page (link)
    download a
    FilterPackx64.exe
    and install
    it. Link:
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=20109
    9)
    Now from
    SSMS execute the following
    procedures:
    -sp_fulltext_service
    'load_os_resources',1
    -sp_fulltext_service
    'verify_signature', 0
    EXEC
    sp_fulltext_service
    'update_languages';
    -- update language list
    EXEC
    sp_fulltext_service
    'restart_all_fdhosts';
    -- restart daemon
    reconfigure
    with override;
    10)
    Restart the
    server
    11)
    select document_type,
    path from
    sys.fulltext_document_types
    where document_type
    = '.pdf'
    -select
    document_type,
    path from sys.fulltext_document_types
    where document_type
    = '.docx'
    12) Results are OK.
    Following is my Table /Index/ catalog script:
    CREATE
    TABLE dbo.DocumentFilesTest
    DocumentId  INT
    IDENTITY(1,1)
    NOT NULL
    PRIMARY KEY,
    AddDate datetime
    NOT NULL,
    Name nvarchar(50)
    NOT NULL,
    Extension nvarchar(10)
    NOT NULL,
    Description nvarchar(1000)
    NULL,
    FileStream_Id UNIQUEIDENTIFIER
    ROWGUIDCOL NOT
    NULL UNIQUE DEFAULT
    NEWSEQUENTIALID(),
    FileSource varbinary(MAX)
    FILESTREAM DEFAULT(0x)
    go
    --Add default add date for document   
    ALTER
    TABLE dbo.DocumentFilesTest
    ADD CONSTRAINT
    DF_DocumentFilesTest_AddDate
    DEFAULT sysdatetime()
    FOR AddDate
    EXEC
    sp_fulltext_database
    'enable'
    GO
    IF
    NOT EXISTS
    (SELECT
    TOP 1 1 FROM sys.fulltext_catalogs
    WHERE name
    = 'Ducuments_Catalog_test')
    BEGIN
    EXEC sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'create',
    'D:\SQL\PDFBlob';
    END
    --EXEC sp_fulltext_catalog 'Ducuments_Catalog_test', 'drop'
    DECLARE
    @indexName nvarchar(255)
    = (SELECT
    Top 1 i.Name
    from sys.indexes
    i
    Join sys.tables
    t on 
    i.object_id
    = t.object_id
    WHERE t.Name
    = 'DocumentFilesTest'
    AND i.type_desc
    = 'CLUSTERED')
    PRINT @indexName
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'create',
    'Ducuments_Catalog_test', 
    @indexName
    EXEC
    sp_fulltext_column
    'DocumentFilesTest',
    'FileSource',
    'add', 0,
    'Extension'
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'activate'
    EXEC
    sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'start_full'
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    ENABLE
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    SET CHANGE_TRACKING
    = AUTO
    ALTER
    FULLTEXT CATALOG
    Ducuments_Catalog_test REBUILD
    WITH ACCENT_SENSITIVITY=OFF;
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'pdf'
    'BOL12006553.pdf'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\BOL12006553.pdf',
    SINGLE_BLOB)
    AS BLOB;
    GO
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'docx'
    'test.docx'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\test.docx',
    SINGLE_BLOB)
    AS Document;
    GO
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'BILL')
    Returns nothing. it should come from PDF file
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'TEST')
    Returns from word document as follows:
    2           2014-06-04 10:11:41.393            test.docx docx           
    NULL   [BINARY Value]  [Binary Value]
    Any help is appreciated. Its been a long wait.
    Thanks,
    Vel
    Vel Thavasi

    Hello,
    Did you check the fulltext log files for more details about the errors. If the filter isn’t working, there should be errors in the error log file.
    The following thread is about similar issue, please refer to:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/69535dbc-c7ef-402d-a347-d3d3e4860d72/sql-server-2008-64bit-fulltext-indexing-pdf-not-working-cant-find-ifilter
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Encode Video Files not working for avi files

    Hi,
    I've been trying to convert some .avi files to apple format using Lion's native 'Encode video files' function however keep getting a 'avconvert: source file not found for source file://fileparthhere avconvert: failed to create an export session. Check setup
    I can't work out why as this has worked before in Lion and works fine for other video formats. The only thing I've done is remove Final Cut Express HD and can't add it again as I don't own it anymore
    Suggestions? Is there a encoder to make this work or should it work anyway?
    Thanks

    If you click Yes the project file will be updated when you save it. That has nothing to do with the media.
    Are the Lesson and Media folders still in the Book Files folder (or whatever it's called)?
    Select one of the clips in the browser and use Edit>Item Properties. One of the first lines is Source. That gives you the file path for where your media is supposed to be located. What does it say? If nothing is there, use the File>Reconnect function and point the application to where the media is located.

  • Oracle text search not working for  WSDL files

    I have a table (resources) with blob data type column (xml_data) and I've created context type index on that column. I've XSD and WSDL files stored in that blob column.
    I can search XSD and XML files with a query with contains operator. But any search on the words from wsdl file returns zero results.I am not able to perform search on wsdl file.
    Please advise me whether oracle text can work for WSDL files also ?
    Query details
    ===========
    create index myIndex on resources (xml_data) indextype is ctxsys.context;
    select * from resources where contains(xml_data, 'searchword') > 0
    Thanks a lot,
    Santhi

    Even though it isn't listed specifically, I can't see why it wouldn't work. The WSDL file should be a simple XML file, so in theory it shouldn't be any different to Oracle Text than the XML file that you loaded and searched successfully. Did you get any errors during indexing, and what do your tokens look like in the DR$MYINDEX$I.TOKEN_TEXT column?
    Do you have a mini test case that didn't work for you? Perhaps we could play with it a bit.
    Long term you might want to consider using section groups so that you can search "within" tags.
    -Ron

  • Preview not working for .jfx files anymore

    Hi, I used to be able to look at jfx (efax) files using preview on my mac. Now I click open, preview starts but does nothing. I can still open images and pdf's.
    This is for more than 1 file, all jfx files I get cannot be opened (even ones I could earlier read). If I click on the file and right click get info, its associated with preview, and the preview pane of it shows the actual fax. It just will not open in preview.
    If I rename the file to .tif then it works fine.
    Is there an error log file for preview or any other way to debug this?
    thanks Joel

    I tested this on another 10.5.8 computer and same problem, more I thinking its a problem with Preview and not my computer...

  • Adobe thumbnail preview does not work in adobe acrobat 8.0

    Hi ,
    I have user login using his profile and suddenly his not able to view thumbnail preview of PDF file using navigation panel but the thumbnail preview
    work in administrator profile.
    Si, I guess some settings blocking in user profile to view thumbnail preview.
    I have checked the settings that I know but it still does not work.
    Please advise.
    It is adobe acrobat 8.0 professional using win XP SP3

    Thanks for answering my queries.
    Could you please let get me the following details as well:
    1. The version of Adobe Reader installed on your system.
    2. The default PDF viewing application on your system. You can find the same by double clicking on a PDF on your system and see which application is used to render the PDF.
    3. The value of the following registries:
    HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe
    HKEY_CLASSES_ROOT\AcroExch.Document.7\shell\Open\command
    HKEY_CLASSES_ROOT\AcroExch.Document.7\shell\Read\command
    Ankit

  • Icon Preview is not shown for mp3 files in finder

    Hi. Recently I noticed icons of mp3 files are no longer as used to be in finder. Previously I had a dark music note icon and when i hover my mouse there was a play button. Now I only see itunes icon in mp3 files. "Show Icon Preview" option is enabled, and i can preview image and pdf files in finder. But something happened to the mp3 files. It is very annoying. Please guide me to get back the good old icon preview for mp3 files.

    Displaying icons as previews of files
    In Finder windows and on the desktop, the icons for files can appear as thumbnail previews of the file contents. For example, instead of seeing a generic icon for a PDF file, you can see a miniature version of what’s in the PDF file. If you “hover” over the icon for a movie or sound file, you’ll see a Play button, which you can click to view the movie or hear the sound. (If you don’t see a Play button, enlarge the icon.)
    NOTE:If you’re using Cover Flow view, you’re already previewing files and don’t need to change any settings.
    To display icons as previews:
    To work with icons in a Finder window, click the Finder icon in the Dock.To work with icons on the desktop (the background area of your screen), click the desktop.
    If you’re working with icons in a Finder window, click one of the View buttons in the toolbar to select icon, list, or column view.
    Choose View > Show View Options.
    Select “Show icon preview.”
    If you’re working in a Finder window, you can also set the following options, depending on which view you’re using:
    In Icon view: Use the “Icon size” slider to adjust the size of the preview image.
    In List view: Click one of the two “Icon size” buttons.
    In Column view: To see a larger preview in the adjacent column, select “Show preview column.”
    NOTE:The Finder may not be able to show a preview for some files.
    Another way to get a quick preview is to select one or more images, and then click the Quick Look (eye) button in the Finder window toolbar, or press the Space bar.
    Related Topics
    Finder preferences
    Previewing files with Quick Look

  • How to make Preview the default reader for pdf files online?

    Hi everyone,
    Many product manufacturers put their product's broucher in pdf form online.  I've tried the screen shot capture method for saved pdf files but when the file won't even open online, how do I get to even capture a screen shot in the first place?  Is the problem in Safari 6?  Many thanks in advance.

    Hi Anthony,
    So, you're instincts were correct - it is Safari.....
    I use Firefox as my browser (I'm not a big fan of Safari or on Windows, of Explorer). When I clicked on your brochure in Firefox, it comes up with a little window asking me what I want to do with the file - and with the "Open With" Preview" button checked.
    When I do the same with Safari, it opens a new Safari window, displaying it online, but not downloading it.
    So, don't know if you want to download Firefox, but did want to let you know that's why it was working differently for me!
    Good luck with this - hope you are able to get it to work out for you!
    Cheers,
    GB

  • Hyperlinks from converted excel file are not working after pdf file is moved

    I have created a pdf file from an excel file that has hyperlinks in it. The hyperlinks work fine if the files are all kept in the same exact location as the time they were created. Once the files are moved (i.e. emailed to another user) the hyperlinks no longer work. An error message pops up that the file can not be found. Is there a setting or something that I'm missing in acrobat that allows for the files to be moved, so that the hyperlinks still function properly, after creation

    No settings adjustments.
    The issue is that links, once made, have a specific path (as shown when you view the link's text string).
    When you email the files the person who recieves the email and downloads the attachments would have to have the same layout of files/folders you have.
    Without that links are "broken"
    You email a zip file that, when extracted, would create the folders/files in the required layout to reflect what you have.
    Be well...

Maybe you are looking for

  • After a recovery reinstall of 10.8.5, using Safari 6.0.3, I get the message "Safari won't open because of a problem"

    After a recovery reinstall of 10.8.5 and using Safari 6.0.3, I get the message "Safari won't open because of a problem" I'm not sure if this Safari is compatible. I also have Safari 7.0.4 in my applications folder, which i downloaded as an attempt to

  • Problems with People Recognition in PSE 9 that were not in PSE 8.

    Hello, I recently downloaded PSE 9 Trial Version and imported a PSE 8 Backup into PSE 9.  It took quiet some time but it eventually converted the library to suit PSE 9.  I have noticed a couple of small things that I find very irritating and that see

  • Several ship-to parties within one sales order

    Dear All, The problem is that I created SOs, so ship-to and sold-to parties are defined at header level. Later I received information that we have to ship out the goods to several addresses. How can I set several ship-to parties for certain items? Th

  • How to create a round rect view ??

    I am displaying a view of width = 200 ,height= 200...I want my view to be displayed with curved edges like we have rounded rect UIButton. How can i achieve this ??

  • Firefox 3.6.16 will not open.

    Windows XP SP3. Firefox 3.6.16 has been running OK for a year or so. Then following messages received. 1. Updating 2. Cannot update as Firefox running. Closed down and restarted computer. Update bar appeared and completed with message "Firefox will s