Quote:
Originally Posted by dhudiburg
I thought this might be a common problem and someone in this forum might know the fix.
Thanks in advance for taking a look:
Warning: Cannot modify header information - headers already sent by (output started at /home/marketi3/public_html/data/member/const.inc:19) in /home/marketi3/public_html/admin/login.inc on line 19
|
Above means go to line 19 and stop it from writing, the headers haven't been sent yet but that piece of code is jumping the gun and outputing to the page too early.
Quote:
Template Error: loadfile: page is not a valid handle. Halted. Warning: Unknown: Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively. in Unknown on line 0
|
It can't find your template because global variables is off. If it were on you'd have a security problem but the variable naming the template would be correctly set.
Disabling the warning is darn silly. Enable globals in php.ini, if that fixes it see if your vendor has an update for loading a template when register globals is off. If so, turn off register globals and install that fix.