Hello
I use PrinceXML with PHP and I've got the problem, that I dind't get any automatically page-breaks. It works when i put them in the css, but this isn't what I want. I read that there are problems with positined and floated Elements, but I removed all such elements.
My PHP PrinceXML Call:
The $preResult is my HTML Document:
http://www.banklinth.ch/de/Ueber-uns/Bank-Linth/geschichte.php?viewmode=pdf&debug=true
This creates this PDF:
http://www.banklinth.ch/de/Ueber-uns/Bank-Linth/geschichte.php?viewmode=pdf
As you see, it has only one Page. Some content is missing.
Do you know, why does this happens?
I use PrinceXML with PHP and I've got the problem, that I dind't get any automatically page-breaks. It works when i put them in the css, but this isn't what I want. I read that there are problems with positined and floated Elements, but I removed all such elements.
My PHP PrinceXML Call:
include($_SERVER['DOCUMENT_ROOT'].'/global/wGlobal/scripts/prince.php');
$prince = new Prince('/var/local/bin/prince');
$prince->setLog($_SERVER['DOCUMENT_ROOT'].'/global/wGlobal/scripts/prince_log.txt');
$prince->setHttpUser('test'); //Changed to Post in Forum
$prince->setHttpPassword('test'); //Changed to Post in Forum
$prince->setHTML(true);
$prince->convert_string_to_passthru($preResult);
The $preResult is my HTML Document:
http://www.banklinth.ch/de/Ueber-uns/Bank-Linth/geschichte.php?viewmode=pdf&debug=true
This creates this PDF:
http://www.banklinth.ch/de/Ueber-uns/Bank-Linth/geschichte.php?viewmode=pdf
As you see, it has only one Page. Some content is missing.
Do you know, why does this happens?