EthelHurt Posted June 19, 2009 Posted June 19, 2009 When I try to view a customer order I get this error message: Fatal error: Call to undefined function: tep_hide_session_id() in /mnt/w0002/d15/s18/b0114258/www/estore/catalog/admin/orders.php on line 350 Any help in fixing this would be greatly appreciated. Ethel
Gauravs Posted June 19, 2009 Posted June 19, 2009 Add following code to orders.php [in catalog\admin] require_once(DIR_WS_FUNCTIONS . 'html_output.php'); Save and test if that resolves the issue for you. Message indicates that you are asking for a function to generate output, however the function tep_hide_session_id() which is coded in html_output.php is not available in memory and thus undefined while processing orders.php page. Have you modified your application_top.php ever? By default html_output.php is defined in application_top.php (and is common for orders.php) Best Regards,Gaurav
Recommended Posts
Archived
This topic is now archived and is closed to further replies.