On Mon, Jun 6, 2011 at 5:50 PM, Brian Dunning <brian@xxxxxxxxxxxxxxxx> wrote: > Here's my code: > > error_reporting(E_ALL); > require_once('/var/www/mysite/includes/fpdi.php'); > require_once('/var/www/mysite/includes/fpdf.php'); try adding this too: ini_set('display_errors', 1); I've realized I've had to do that before on many systems because it's not enabled random note: you don't need parens on require / include stuff since they're not actually functions -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php