We are currently having to change a client's web site from www.igbstore.com to www.ibdstore.org due to a corporate name change.
We have permission from Actinic to run both sites concurrently for a short period for testing as both sites are identical (except for the obvious site name changes in set up) and the owner is the same.
I've modified the site1 set up to reflect the new name and uploaded it to www.ibdstore.org and everything seems fine except for one thing (and that seems intermittent as well as I initially had no problems in placing an order)
When I add an item to the basket I get the standard screen showing the new content together with the message: Please wait etc ...or click here.
The "click here" link works fine & returns to the start page. However the "automatic" return takes me back to www.igbstore.com.
I've checked out cartmanager.pl and modified it to try to force a return to www.ibdstore.com by changing in sub ContinueShopping:
my $sURL = $::Session->GetLastShopPage();
to
# my $sURL = $::Session->GetLastShopPage();
my $sURL = "Index.html";
But it still returns to www.igbstore.com.
I confess that I've a nasty feeling that I once hard coded something (needless to say no records) to return to a known page (but I can't see why I should ever have used the full URL)
Any ideas of resolving this: where to start looking: or even the most elementary suggestions will be welcome.
We have permission from Actinic to run both sites concurrently for a short period for testing as both sites are identical (except for the obvious site name changes in set up) and the owner is the same.
I've modified the site1 set up to reflect the new name and uploaded it to www.ibdstore.org and everything seems fine except for one thing (and that seems intermittent as well as I initially had no problems in placing an order)
When I add an item to the basket I get the standard screen showing the new content together with the message: Please wait etc ...or click here.
The "click here" link works fine & returns to the start page. However the "automatic" return takes me back to www.igbstore.com.
I've checked out cartmanager.pl and modified it to try to force a return to www.ibdstore.com by changing in sub ContinueShopping:
my $sURL = $::Session->GetLastShopPage();
to
# my $sURL = $::Session->GetLastShopPage();
my $sURL = "Index.html";
But it still returns to www.igbstore.com.
I confess that I've a nasty feeling that I once hard coded something (needless to say no records) to return to a known page (but I can't see why I should ever have used the full URL)
Any ideas of resolving this: where to start looking: or even the most elementary suggestions will be welcome.
Comment