Edit report at https://bugs.php.net/bug.php?id=21260&edit=1

 ID:                 21260
 Updated by:         ras...@php.net
 Reported by:        bretriofolinonp at gmail dot com
 Summary:            phpBB fails to work with GD turned on
-Status:             
+Status:             No Feedback
 Type:               Bug
-Package:            *General Issues
+Package:            GD related
 Operating System:   Linux
 PHP Version:        4.3.0
 Block user comment: N
 Private report:     N



Previous Comments:
------------------------------------------------------------------------
[2003-01-13 18:18:54] sni...@php.net

No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.



------------------------------------------------------------------------
[2002-12-28 22:35:24] poll...@php.net

Please run the following test on your system:

1) Create a file named "testgd.php" in the document root of your webserver with 
the following content:

<?php
  $img = imagecreate(100,100);

  $black = imagecolorallocate($img,0,0,0);
  $white = imagecolorallocate($img,255,255,255);

  imagefilledrectangle($img,0,0,99,99,$white);
  imagerectangle($img,0,0,99,99,$black);

  header("Content-type: image/png");

  imagePNG($img);
?>

2) Browse the URL for that page (i.e.: http://myserver.com/testgd.php )

3) Tell us if a white square with a black frame appears.


If the image shows properly then the problem is likely with PHPBB and there's 
nothing anyone here can do.  If not, then there may be a problem with your GD 
build.

------------------------------------------------------------------------
[2002-12-28 21:56:17] bretriofolinonp at gmail dot com

I use PHPbb on my web site(I have also already reported this problem to them) 
when I install PHP without the new GD support in 4.3.0 turned on everything 
works fine, however if I turn the GD support on the PHPbb fails to load and all 
I get is a blank page...no errors no anything....

The following are my configure lines....

PHPbb works....
./configure --with-mysql=/mysql --with-apxs 

PHPbb doesn't work...
./configure --with-mysql=/mysql --with-apxs --with-gd 
--with-zlib-dir=/usr/include

I should mention that I also use phpMyAdmin...and that works fine either way....

------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=21260&edit=1

Reply via email to