Announcement

Collapse
No announcement yet.

Direct Links and Loggin In Customers

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Direct Links and Loggin In Customers

    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

    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";
    with the original line commented out and the new two lines inseted. Can anyone else see the problem

    #2
    Hi Nick,

    I am quite surprised because the link you have given should not logout a customer. It should still retain the running of the bb script. You would not need to edit the session file.

    Can you set up a test username and password for us to check on your site

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment

    Working...
    X