I have a problem . . .
On my home server I can get my script to work, but when I upload it to my webhost it doesn't function properly.
I'm assuming that it has something to do with the php.ini configuration, but I'm not sure.
I have a login script at http://chrislamson.com/hp/login.php, which if you try to login using the U/P of Angus/12345, it is supposed to go to a control panel screen, but all it does is crap out during the login processing, somewhere around my header() redirect to the control panel.
Is there are certain ini_set() I should use to configure php.ini so I can send header() even after page data has been sent ?
I tried using
ini_set(output_buffering, "102400");
but that didn't work.
Any suggestions out there ?