All print admin pages work except for the pdf tab. When trying to access: /admin/config/user-interface/print/pdf I consistently get a page not found error. I have uninstalled and reinstalled the module fresh multiple times.

The following modules are enabled:

dompdf library handler
PDF version
Printer-friendly pages

Comments

jmomandown’s picture

Version: 7.x-2.0-beta2 » 7.x-2.x-dev

The problem persists after upgrading to the latest dev version

jmomandown’s picture

using the second menu item declared we get the proper display: admin/config/user-interface/print/pdf/options

but any handlers still don't work either, for example: admin/config/user-interface/print/pdf/dompdf

jcnventura’s picture

Status: Active » Closed (cannot reproduce)

Seems like a typical case of "Keep calm and flush all caches.."

jmomandown’s picture

I wish that were the case jcnventura. However, the problem still persists to this day. It is obvious there is a conflict and it is most likely specific to our setup, although I have been unable to find it. There are no corrupted or incorrect tables in the database and the module is up to date.

edemicity’s picture

I am facing the same problem and i wish someone has figured out the solution on how to fixed this.

jmomandown’s picture

@edemicity : I had to force the page to load with a trailing slash so "pdf/" or "common/"

jcnventura’s picture

You can see the code here: http://drupalcode.org/project/print.git/blob/refs/heads/7.x-2.x:/print_p...

The slash should not be needed.. If clearing the cache is not the answer, but it gets fixed by appending a slash, I'd take a look at your web server configuration.. Maybe it assumes that anything ending in pdf is static and doesn't need to be handled by PHP. If that's the case, simply changing that rule to something like '*.pdf' instead of '*pdf' should fix it.

In any case, nothing I can do from this side.