I am having an issue where the Wkhtml pdf rendering engine is choking when it encounters View Helpers. It winds up throwing an internal server error and doesn't let you know that that is the code causing the problem this simple snippet of code in a .ctp file is enough for this error to occur
echo $this->Html->link( .... );
The only View Helper function that seems to work actually is this one:
echo $this->Html->css( ... );
The Helpers being used in the view are defined in the $helpers array of the controller containing the action. The view file is in the pdf folder of that controller. Is there special setup that is required within Cakepdf to use helpers in your files? Is there special setup for Wkhtml for this? Any help or direction that I could be pointed in is greatly appreciated. The code I am working with while cake is proprietary so I can't really post it exactly as is but if you need more information I can provide examples.