php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #21260 phpBB fails to work with GD turned on
Submitted: 2002-12-28 21:56 UTC Modified: 2012-05-15 10:52 UTC
Votes:2
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: cmsaspopup at mail dot ru Assigned:
Status: No Feedback Package: *General Issues
PHP Version: 4.3.0 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
18 - 12 = ?
Subscribe to this entry?
Further comment on this bug is unnecessary.
 
 [2002-12-28 21:56 UTC] cmsaspopup at mail dot ru
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....

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-12-28 22:35 UTC] pollita@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.
 [2003-01-13 18:18 UTC] sniper@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.


 [2012-05-14 14:45 UTC] rasmus@php.net
-Status: +Status: No Feedback -Package: *General Issues +Package: GD related
 [2012-05-15 10:05 UTC] cmsaspopup at mail dot ru
-: bretriofolinonp@gmail.com +: cmsaspopup at mail dot ru -Package: GD related +Package: *General Issues
 [2012-05-15 10:48 UTC] pajoye@php.net
-Status: +Status: Open
 [2012-05-15 10:52 UTC] pajoye@php.net
-Status: Open +Status: No Feedback
 [2012-05-15 10:52 UTC] pajoye@php.net
-Block user comment: No +Block user comment: Yes
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 14:01:31 2024 UTC