I ran the debugging utility, I didn't get a chance to before LOL and it gave me three log files:
1.
Code:
[07-Jan-2009 16:24:21] PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/christon/public_html/store/includes/auto_loaders/config.freeProduct.php:9) in /home/christon/public_html/store/includes/functions/sessions.php on line 108
[07-Jan-2009 16:24:21] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/christon/public_html/store/includes/auto_loaders/config.freeProduct.php:9) in /home/christon/public_html/store/includes/init_includes/init_templates.php on line 78
[07-Jan-2009 16:24:21] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/christon/public_html/store/includes/auto_loaders/config.freeProduct.php:9) in /home/christon/public_html/store/includes/functions/functions_general.php on line 44
2.
Code:
[07-Jan-2009 16:24:14] PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/christon/public_html/store/includes/auto_loaders/config.freeProduct.php:9) in /home/christon/public_html/store/includes/functions/sessions.php on line 108
[07-Jan-2009 16:24:14] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/christon/public_html/store/includes/auto_loaders/config.freeProduct.php:9) in /home/christon/public_html/store/includes/init_includes/init_templates.php on line 78
3.
Code:
[07-Jan-2009 16:24:25] PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/christon/public_html/store/includes/auto_loaders/config.freeProduct.php:9) in /home/christon/public_html/store/includes/functions/sessions.php on line 108
[07-Jan-2009 16:24:25] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/christon/public_html/store/includes/auto_loaders/config.freeProduct.php:9) in /home/christon/public_html/store/includes/init_includes/init_templates.php on line 78
Line 44 of functions_general.php:
PHP Code:
header('Location: ' . $url);
Line 78 of init_templates.php:
PHP Code:
header("Content-Type: text/html; charset=" . CHARSET);
Lines 108-110 of sessions.php:
PHP Code:
$temp = session_start();
if (!isset($_SESSION['securityToken'])) {
$_SESSION['securityToken'] = md5(uniqid(rand(), true));
}
If anyone can point me in the right direction to what these mean and how to fix I would be very grateful lol