From:             [EMAIL PROTECTED]
Operating system: redhat 8
PHP version:      4.3.0
PHP Bug Type:     PDF related
Bug description:  Fatal error: Nesting level too deep - recursive dependency? in 
Unknown on line 

Fatal error: Nesting level too deep - recursive dependency? in Unknown on
line 0

Perhaps it does not deal with php? but i do get this error creating any
pdf document
Running the example from the documentation web site will produce the error
in 4.3 php

pdflib-4.0.3 is what i have installed -- it will still create the
document, and that is fine, but it gives this nasty error... no matter
what i have tried .. it spits it out when creating a pdf... 

<?php
$pdf = pdf_new();
pdf_open_file($pdf, "test.pdf");
pdf_set_info($pdf, "Author", "Uwe Steinmann");
pdf_set_info($pdf, "Title", "Test for PHP wrapper of PDFlib 2.0");
pdf_set_info($pdf, "Creator", "See Author");
pdf_set_info($pdf, "Subject", "Testing");
pdf_begin_page($pdf, 595, 842);
pdf_add_outline($pdf, "Page 1");
pdf_set_font($pdf, "Times-Roman", 30, "host");
pdf_set_value($pdf, "textrendering", 1);
pdf_show_xy($pdf, "Times Roman outlined", 50, 750);
pdf_moveto($pdf, 50, 740);
pdf_lineto($pdf, 330, 740);
pdf_stroke($pdf);
pdf_end_page($pdf);
pdf_close($pdf);
pdf_delete($pdf);
echo "<A HREF=getpdf.php>finished</A>";
?>

-- 
Edit bug report at http://bugs.php.net/?id=21559&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=21559&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=21559&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=21559&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=21559&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=21559&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=21559&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=21559&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=21559&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=21559&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=21559&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=21559&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=21559&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=21559&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=21559&r=gnused

Reply via email to