I'm running Apache 2.0, php 4.2.2, projectbench 0.4. I untarred, set perms etc., then started install.php. When it got to step 3 I got errors about "can't send headers at line 1556; output already started at line 1043" (I believe that's the actual line number).
I ended up manually configuring config.php and then it worked.
-- Gary
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
i am also having this issue. but what settings did you modify? and i dont really have control over the server to enable output buffering, i am on a shared hosting plan :(
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm running Apache 2.0, php 4.2.2, projectbench 0.4. I untarred, set perms etc., then started install.php. When it got to step 3 I got errors about "can't send headers at line 1556; output already started at line 1043" (I believe that's the actual line number).
I ended up manually configuring config.php and then it worked.
-- Gary
you need to have output buffering enabled in your php settings.
next version will take care of this problem
thanks!!
Thank you!
i am also having this issue. but what settings did you modify? and i dont really have control over the server to enable output buffering, i am on a shared hosting plan :(
try adding:
ob_start();
as the first line of code in install.php (after the <? line, of course).
thanks.
Had the same problem, that fixed it for me, thanks!!!!!