Guest Posted November 13, 2007 Posted November 13, 2007 I just installed MVS-V1.1 and now I have these two errors. In both programs, the function has already been declared in either database.php or application_top.php. Fatal error: Call to undefined function: tep_hide_session_id() in /home/angelmgr/public_html/catalog/admin/includes/classes/split_page_results.php on line 80 Fatal error: Call to undefined function: tep_hide_session_id() in /home/angelmgr/public_html/catalog/admin/customers.php on line 700 Any clues... Quote
Guest Posted November 14, 2007 Posted November 14, 2007 Fixed it myself... The function tep_hide_session_id() isn't being used anywhere, so I just commented them out, and all is fine. It shows up in three files from the original MVS V1.1 customer.php define_language.php file_manager.php Quote
pisces78 Posted November 24, 2007 Posted November 24, 2007 Fixed it myself... The function tep_hide_session_id() isn't being used anywhere, so I just commented them out, and all is fine. It shows up in three files from the original MVS V1.1 customer.php define_language.php file_manager.php Hi, I'm having the same problem as you. Can you explain in a little more detail on how you solved this problem? Kinda new at this kind of thing. Quote
Guest Posted November 25, 2007 Posted November 25, 2007 Hi, I'm having the same problem as you. Can you explain in a little more detail on how you solved this problem? Kinda new at this kind of thing. In admin/customers.php: Somewhere around line 700 you will see this line of code: <?php echo tep_hide_session_id(); ?></form></tr> Replace it with this line of code: <?php //echo tep_hide_session_id(); ?></form></tr> In admin/define_language.php: Somewhere around line 87 you will see this line of code: <?php echo tep_hide_session_id(); ?></form></tr> Replace it with this line of code: <?php //echo tep_hide_session_id(); ?></form></tr> In admin/file_manager.php: Somewhere around line 135 you will see this line of code: <?php echo tep_hide_session_id(); ?></form></tr> Replace it with this line of code: <?php //echo tep_hide_session_id(); ?></form></tr> That should do it for you. Quote
pisces78 Posted November 27, 2007 Posted November 27, 2007 In admin/customers.php: Somewhere around line 700 you will see this line of code: <?php echo tep_hide_session_id(); ?></form></tr> Replace it with this line of code: <?php //echo tep_hide_session_id(); ?></form></tr> In admin/define_language.php: Somewhere around line 87 you will see this line of code: <?php echo tep_hide_session_id(); ?></form></tr> Replace it with this line of code: <?php //echo tep_hide_session_id(); ?></form></tr> In admin/file_manager.php: Somewhere around line 135 you will see this line of code: <?php echo tep_hide_session_id(); ?></form></tr> Replace it with this line of code: <?php //echo tep_hide_session_id(); ?></form></tr> That should do it for you. Thanks man. Works like a charm. Saved me from having a headache. Quote
CYBERHAWKS Posted December 12, 2007 Posted December 12, 2007 Thank you, this was difficult to track down. May I ask how you figured it out? Only if you have time :) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.