View Full Version : Frequent problem encountered by Google users
pharry
21-Aug-2003, 11:49 AM
I get frequent emails from customers telling me that any link they click on my site takes them back to the Google search page. I'm looking for the easiest way to tell them to fix the problem. Do they need to delete the actinic cookie(s)?
Thanks!
Pat
Owen Drumm
21-Aug-2003, 03:06 PM
Take a look at this thread in Developers
http://community.actinic.com/showthread.php?s=&threadid=2359&highlight=google
chrisbrown
21-Aug-2003, 03:24 PM
Pat won't be able to access it unless they are a Developer.
chrisbrown
21-Aug-2003, 03:25 PM
Ok, then try the following. Open ACTINIC.pm in a plain text editor and locate the lines
code:--------------------------------------------------------------------------------
if( $fnam !~ /\./) # Check if it looks like a file name
{
$sURL .= '/';
} --------------------------------------------------------------------------------
in sub GetReferrer and change this to have
code:--------------------------------------------------------------------------------
if( $fnam !~ /\./) # Check if it looks like a file name
{
if ($fnam =~ /\?/ || $fnam =~ /&/)
{
$sURL = '';
}
else
{
$sURL .= '/';
}
}
--------------------------------------------------------------------------------
I hope this crues your problem. But please note that such a script customisation is not supported by Actinic so you should do this at your own risk.
Regards,
__________________
Zoltan
Actinic Software
pharry
21-Aug-2003, 03:28 PM
Okay, I don't have a developer license, so I'm going to have to do this myself. I have an IT background, but I'm more dangerous than anything! Could you tell me in words what this is doing, so I can at least understand the concept behind the problem and the fix.
Thanks!
chrisbrown
21-Aug-2003, 03:43 PM
Can't say that I completely understand it myself... :o
But it has to do with where Actinic thinks the refering page is located
Some cases (e.g. for Google references) the Catalog scripts believe that the referencing (Google) page is a static page which belongs to the shop.
But now that I have read the thread completely I see that it should be fixed in V6.1.3 anyway. If you are not on that version I suggest that you upgrade.
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.