Hi, I am trying to set up a project using phpjasper to create pdf documents.I loaded geekcom/phpjasper as composer package.In row custom action event I put this code:
// The first step works, I can compile hello_world.jrxml to hello_world.jasper.
$input = './vendor/geekcom/phpjasper/examples/hello_world.jasper';
$output = './vendor/geekcom/phpjasper/examples';
$options = [ 'format' => ['pdf'] ];
$jasper = new \PHPJasper\PHPJasper;
$jasper->process($input,$output,$options)->execute();
bet get this error:
\vendor\geekcom\phpjasper\src\PHPJasper.php(250): Your report has an error and couldn 't be processed!\ Try to output the command using the function output(); and run it manually in the console.I did use the output() function in the console with this result:
[3456:1206/100718.163:ERROR:display_layout.cc(562)] PlacementList must be sorted by first 8 bits of display_idHow can I proceed to resolve this issue? thanks in advance