Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Cannot find the answer Please help


ravereview

Recommended Posts

Posted

Hello,

 

I am getting the error 97 which is a time stamp error I go that part figured out. Using version 2.2 RC2.

 

I know I have to change the following:

------------------------------------------------------------------------

Perl

In the SimLib.pm file, replace the following line:

my $tstamp = time;

with this:

my $tstamp = time - (time difference in seconds); or my $tstamp = time + (time difference in seconds);

 

ASP

In the simlib.asp file, replace the following line:

var tstamp = GetSecondsSince1970 ();

with this:

var tstamp = GetSecondsSince1970() - (time difference in seconds); or var tstamp = GetSecondsSince1970() + (time difference in seconds);

 

PHP

In the simlib.php file, replace the following line:

$tstamp = time ();

with this:

$tstamp = time () - (time difference in seconds); or $tstamp = time () + (time difference in seconds);

 

--------------------------------------------------------------------

 

My question is where to find these files to do the change I think I need to change the PHP file but I cannot locate it where is it located and if it has to be created how would I create it and where would I have to place it.

 

Thanks in advance

 

Andrew

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...