Why do PNG files fail to preview in Nuxeo DM?

Hi All,

I've installed a fresh Nuxeo 5.6 DM server and I'm having difficulty previewing imported PNG files.

My platform is Nuxeo 5.6 running on OpenIndiana oi_151a8 with Oracle JDK 7u21. Secure LDAP authentication has been configured, and I'm using an external PostgreSQL 9.1 64bit database. ImageMagick has been installed and image tiling for previewing large images appears to work fine. I've also performed a data import (VCS datastore and PostgreSQL dump) from a Nuxeo 5.6 VM.

What I'm seeing is as follows. First, I drag and drop a PNG file from the local client into a Nuxeo DM workspace. Then when clicking on the PNG to view its properties (e.g. by clicking on its “Summary” tab), I don't get an image preview. The “More -> “Preview” option is also not available, so I also cannot annotate the image. The attached image should illustrate this.

This seems to happen to all imported PNG files. JPEGs on the other hand are fine.

The following error is consistently logged in the Nuxeo server log when I import a PNG via drag and drop:

2013-09-16 22:39:07,098 ERROR [org.nuxeo.ecm.webapp.context.NavigationContextBean] <resetCurrentPath> documentManager not initialized

Does anyone have any pointers as to what is happening here?

Cheers, Dave

alt text

0 votes

4 answers

3245 views

ANSWER

If you switch to debug mode do you get any additional info in the logs?

Can you share one of your PNG files - I'm running 5.6 and can import and see PNGs in DM and DAM.

09/17/2013



Long overdue update to this thread for completeness – using Nuxeo 5.8 LTS installed on the rapid development branch of OpenIndiana, I no longer see this issue. PNGs can be previewed without problems. The primary difference aside from a more recent Nuxeo version is a later build of ImageMagick (6.8.3.5). I'll posit that this was likely the problem to begin with, as Bruce suggested.

Cheers, Dave

1 votes



Good to hear it's finally resolved - even if it was only solved by the passage of time :-)
08/26/2014


There is a possibility this is ImageMagick and memory related. Is there sufficient available memory allocated to/available for ImageMagick? Can you convert the PNG in question using ImageMagick on the command line?

0 votes



Hi Bruce - thanks again for replying, and good suggestion. It certainly has the feel of some external dependency not being quite right. I'll give this a shot and get right back to you.
10/03/2013


Almost appears as though the PNG mime type is being processed by the wrong FileManagerService plugin. If you're comfortable with XML you could try creating an override for the PNG mimetype with a low order (high priority) to see if this resolves the issue with PNG files. Something like…

<?xml version="1.0"?>
<component name="com.concena.grip.dam.core.filemanager.plugins">
    <require>org.nuxeo.ecm.platform.filemanager.service.FileManagerService.Plugins</require>
    <require>org.nuxeo.ecm.platform.picture.filemanager.contrib</require>

    <extension target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService" point="plugins">
        <plugin name="Imageplugin" class="com.nuxeo.ecm.platform.picture.extension.ImagePlugin" order="5">
            <filter>image/png</filter>
        </plugin> ....

I know you said it was a fresh install, but do you have any customizations on top of your Nuxeo install?

0 votes



Hi Bruce,

Thanks for this - I'm not terribly au fait with XML but will certainly give this a crack. I can confirm that the only customisation I've performed on this install is to configure external PostgreSQL connectivity, secure LDAP authentication, and importing both database and VCS data from an alternate Nuxeo 5.6 install. Everything else is stock, but I wonder if the database and data import has some relation to this - to rule this out I'll reinstall 5.6, (if that doesn't work, I'll try 5.7.2) and see if I can reproduce this.

Cheers, Dave

09/22/2013

Update - no change in behaviour with a reinstall of Nuxeo 5.6 using the embedded database and default authentication methods.
09/24/2013


This is really weird :) Could you do an XML export of your document? It would be helpful to know its type and the detected mime type of the image.

Thanks, Laurent

0 votes



Hi Laurent, Bruce,

Thanks for replying - the following ZIP contains two sample files (one PNG, one JPG), a small screencast so you can see the issue in action (comparing the PNG against the JPG), and an XML export of the Nuxeo DM workspace containing the two files.

http://ubuntuone.com/6Ey71sOKa1JT74nK7g1EIs

I'll run it again tomorrow and collect debug output.

Cheers,

09/18/2013

I've just tested with DM and DAM 5.6 HF-20 and can't reproduce your issue. I took a look at the XML and it looks fine. And I don't have the NavigationContextBean error. So I guess we'll have to wait for the debug log.
09/18/2013

Hi Laurent,

Here we are:

http://ubuntuone.com/0oGa3nZGdxKTZxx4kQUyFV

The procedure involved:

  • Logged into Nuxeo and navigated to my test workspace
  • Dragged and droppped the "gimpflames.png" file into the workspace
  • Clicked on the image link to attempt to view its properties
  • Stopped Nuxeo using the nuxeoctl app

The action seems to happen from the "2013-09-19 12:42:22" timestamp onwards.

There also seems to be some additional detail around the "documentManager not initialized" error, for example:

2013-09-19 12:42:25,243 DEBUG [org.nuxeo.ecm.webapp.pagination.ResultsProvidersCacheBean] Initializing… 2013-09-19 12:42:25,243 DEBUG [org.nuxeo.ecm.webapp.pagination.ResultsProvidersCacheBean] Constructing a new, empty cache 2013-09-19 12:42:25,243 DEBUG [org.nuxeo.ecm.webapp.pagination.ResultsProvidersCacheBean] Invalidating provider 'CURRENT_DOC_DELETED_CHILDREN' 2013-09-19 12:42:25,245 DEBUG [org.nuxeo.ecm.webapp.tree.TreeActionsBean] Could not initialize the navigation tree: no parent found for current document 2013-09-19 12:42:25,247 ERROR [org.nuxeo.ecm.webapp.context.NavigationContextBean] <resetCurrentPath> documentManager not initialized

Hopefully this sheds some light on things :)

Cheers, Dave

09/19/2013