rmyles Posted January 29, 2003 Share Posted January 29, 2003 Hi everyone, I've just (almost) successfully installed ver 2.2 but there is a bunch of stuff at the top of the page and I don't know how to get rid of it. Any help would be appreciated http://www.talespinners.ca/catalog/default.php Thanks in advance! Link to comment Share on other sites More sharing options...
rseigel Posted January 30, 2003 Share Posted January 30, 2003 Have you tried doing a global search for that snippet? Once you know where it is it'll be easy enough to figure out what the problem is. Somewhere you've added/deleted something that's mucked it up. :wink: Link to comment Share on other sites More sharing options...
Ramesh Posted January 30, 2003 Share Posted January 30, 2003 check your application_top.php and header.php files in your /catalog folder. Could be a missing ; at the end of one of yor lines I think anyone else's thoughts ? Special Effects / 3d + Flash Link to comment Share on other sites More sharing options...
Mark Russell Posted January 30, 2003 Share Posted January 30, 2003 I did a global directory search on that string appearing at the top of your page. It comes from catalog/includes/functions/html_output.php. Here's the function. I bolded the text in question. function tep_get_country_list($name, $selected = '', $parameters = '') { $countries_array = array(array('id' => '', 'text' => PULL_DOWN_DEFAULT)); $countries = tep_get_countries(); for ($i=0; $i<sizeof($countries); $i++) { $countries_array[] = array('id' => $countries[$i]['countries_id'], 'text' => $countries[$i]['countries_name']); } return tep_draw_pull_down_menu($name, $countries_array, $selected, $parameters); } ?> Why it's there. I don't know. Maybe someone else has an idea. Mark Link to comment Share on other sites More sharing options...
Guest Posted January 30, 2003 Share Posted January 30, 2003 Since I accidentally managed to create a similar mishap last night, although on a much more grand scale, try looking for a missing <?php somewhere in any file you have changed. In my own case when I copied and pasted a file I missed the opening <?php statement and it created quite a mess until I figured out which file it was. Can't say that the same is true for your particular problem, but it looks similar. Good luck. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.