Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

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...

Posted

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

  • 2 weeks later...
Posted
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.

Posted
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.

Posted
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.

  • 3 weeks later...

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...