Hello Anne!
I love this template but I'be been having some problems where my site is loading blank pages. I looked at the debug log and it says:
PHP Warning: Cannot modify header information - headers already sent by (output started at /home2/dabbersd/public_html/includes/languages/english/extra_definitions/sheffield_blue/headermenu.php:2) in /home2/dabbersd/public_html/includes/functions/functions_general.php on line 45
This is whats in my functions_general.php:
// clean up URL before executing it
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
while (strstr($url, '&&')) $url = str_replace('&&', '&', $url);
// header locates should not have the & in the address it breaks things
while (strstr($url, '&')) $url = str_replace('&', '&', $url);
if ($httpResponseCode == '') {
header('Location: ' . $url); [<- line 45]
session_write_close();
} else {
header('Location: ' . $url, TRUE, (int)$httpResponseCode);
session_write_close();
}
exit();
}
I don't really know anything about PHP so I don't know how to even approach fixing the problem. Any suggestions would be greatly appreciated.
Also here's some extra information in case it will help. My site is using both the Sheffield Blue template and the Ceon URI Mapping module. The blank pages only appear when using this specific template and URI mapping module at the same time, and only in subcategories that have only one product. Here is a link to the page that is having problems
http://www.dabbersdoodle.com/shop when you click on "original" it only displays a blank page
http://www.dabbersdoodle.com/shop/originals.
Thanks again,
Hadley
Bookmarks