Morgan Toal - 2004-07-07

Per http://sourceforge.net/forum/forum.php?thread_id=1036464&forum_id=245307

>By: Charles Phelan - cphelan
>Trying to get help 
>2004-03-08 19:10
>I noticed that there have been other messages and answers to postings since I posted last but I am >still trying to figure out the same problem:
>
>Downloaded and installed. keep getting the following error message. Anyone out there with any ideas:
>
>Warning: Cannot modify header information - headers already sent by (output started at >D:\hshome\cphelan\ncmalls.com\phpCodeGenie1.4\settings.php:40) in >D:\hshome\cphelan\ncmalls.com\phpCodeGenie1.4\libraries\ob.lib.php on line 53
>
>Could someone please help with this problem

I was having the same problem. I am running RH 7.3 Linux.

You need to edit your php.ini
(mine is in /etc, I don't know where they would put in a Windows installation of PHP/Apache)

Change it so that:

; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
short_open_tag = on

Additionally, you need to kill and restart your Apache httpd service so that php.ini settings
are re-read.

In Linux we do:
service httpd restart

Good luck,

Morgan Toal