I am having trouble with my direct links for customers who have loggin in losing the login status
I am using for example http://www.somethingspecialforyou.co...html&NOLOGIN=1 to link to a cufflinks page which works fine except the customer is no longer logged in.
I have tried making the adjustments to the actinic.pm which appears to have worked for some ( mine now looks like this
with the original line commented out and the new two lines inseted. Can anyone else see the problem
I am using for example http://www.somethingspecialforyou.co...html&NOLOGIN=1 to link to a cufflinks page which works fine except the customer is no longer logged in.
I have tried making the adjustments to the actinic.pm which appears to have worked for some ( mine now looks like this
Code:
if ($nDelay >= 0) # only try to auto bounce if the delay is a positive number
{
my $sMetaTag;
my $sReferrer = ACTINIC::GetReferrer();
if (!IsStaticPage($sRefPage) &&
$sRefPage !~ /ACTINIC_REFERRER/) # we don't want to add one more referrer if one already exists
{
my $sReferrer2 = ACTINIC::EncodeText2(ACTINIC::GetReferrer(), $::FALSE);
$sRefPage =~ s/\?/\?ACTINIC_REFERRER=$sReferrer2\&/;
# $sRefPage .= "&ACTINIC_REFERRER=" . ACTINIC::EncodeText2($sReferrer,$::FALSE);
}
if ($bClearFrames) # use JavaScript to clear frames on the auto-bounce
{
my $sTarget = $$::g_pSetupBlob{CLEAR_ALL_FRAMES} ? "top" : "parent";
$sMetaTag =
"<SCRIPT LANGUAGE=\"JAVASCRIPT\">\n" .
"<!-- hide from older browsers\n" .
"setTimeout(\"ForwardPage()\", " . 1000 * $nDelay . ");\n" .
"function ForwardPage()\n" .
" {\n" .
" var sURL = '$sRefPage';\n" .
" $sTarget.location.replace(sURL);\n" .
" }\n" .
"// -->\n" .
"</SCRIPT>\n";
Comment