Active TopicsActive Topics  Display List of Forum MembersMemberlist  HelpHelp   RegisterRegister  LoginLogin
LinkFreeze support forum
 Helicon Tech : LinkFreeze support forum
Subject Topic: link freeze help*** so weired outcomes Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
jiemingu
Newbie
Newbie


Joined: 13 May 2007
Online Status: Offline
Posts: 3
Posted: 13 May 2007 at 2:38am | IP Logged Quote jiemingu

Hey, I've just purchased link freeze and also identified one little problem with my site.
pls have a look at the site:
http://www.everydaysale.co.uk/shop-merchant_id-36-discount-voucher-Argos.htm

when you click page 2, 3, 4,.. at the bottom of the page, the url shown in the status bar is not quite right.

I used the following code to get the current URL and modify the page number for page 2 3, 4,5...
 
url = request.ServerVariables("URL")
   
      if request.ServerVariables("QUERY_STRING") <> "" then
          url = url & "?" & request.ServerVariables("QUERY_STRING")
      end if
      if instr(url, "page=") > 0 then
          url = left(url, instr(url, "page=") - 1) & "page=" & cpage
      elseif instr(url, "?") > 0 then
          url = url & "&page=" & cpage
      else
          url = url & "?page=" & cpage
      end if
      getPageUrl = url

However you will find the page runs perfectly for another page from the same page
http://www.everydaysale.co.uk/shop-merchant_id-426-discount-voucher-Dorothy-Perkins.htm

I had spent quite a long time trying to figure out the problem by myself. but ended up with failure and i have to turn to you for help !

many thanks,

Jiemin Gu
Back to Top View jiemingu's Profile Search for other posts by jiemingu
 
Yaroslav
Moderator Group
Moderator Group


Joined: 15 August 2002
Online Status: Offline
Posts: 6466
Posted: 15 May 2007 at 7:07am | IP Logged Quote Yaroslav

I don't see anything wrong about 2,3,4... URL s on this page.

__________________
Yaroslav Govorunov,
Helicon Tech
Back to Top View Yaroslav's Profile Search for other posts by Yaroslav Visit Yaroslav's Homepage
 
jiemingu
Newbie
Newbie


Joined: 13 May 2007
Online Status: Offline
Posts: 3
Posted: 15 May 2007 at 7:23am | IP Logged Quote jiemingu

It is acutally when you click page 2, 3, 4, it is still on the page 1 . though the url is changed.

http://www.everydaysale.co.uk/shop-merchant_id-36-discount-voucher-Argos&page-2.htm

this Url is not quite right as the page=2 is not passed correctly.

 

many thanks

Back to Top View jiemingu's Profile Search for other posts by jiemingu
 
Yaroslav
Moderator Group
Moderator Group


Joined: 15 August 2002
Online Status: Offline
Posts: 6466
Posted: 15 May 2007 at 7:38am | IP Logged Quote Yaroslav

Now I see the problem. Are you generating this page links server side or client side? If you did it server side then there should not be any problems with LinkFreeze. I suggest you to generate all links on server, because search engines will not run your client script and will never reach next pages anyway (same is for clients with JScript disabled).

__________________
Yaroslav Govorunov,
Helicon Tech
Back to Top View Yaroslav's Profile Search for other posts by Yaroslav Visit Yaroslav's Homepage
 
jiemingu
Newbie
Newbie


Joined: 13 May 2007
Online Status: Offline
Posts: 3
Posted: 15 May 2007 at 7:45am | IP Logged Quote jiemingu

the original url before linkfreeze is like

shop.asp?merchant_id=36&discount-voucher=argos

in fact only the merchant_id is needed and for SEO purpose, I apply discount-voucher=argos

however linkfreezer works when the merchant name has 2 characters like this below

http://www.everydaysale.co.uk/shop-merchant_id-426-discount-voucher-Dorothy-Perkins.htm

Back to Top View jiemingu's Profile Search for other posts by jiemingu
 
Yaroslav
Moderator Group
Moderator Group


Joined: 15 August 2002
Online Status: Offline
Posts: 6466
Posted: 16 May 2007 at 5:54am | IP Logged Quote Yaroslav

If you have used "-" as a substitution character it is not possible to use this character in parameter names or it will break links. Rename discount-voucher to the discount_voucher (or better remove it as it is not importans for SEO).

__________________
Yaroslav Govorunov,
Helicon Tech
Back to Top View Yaroslav's Profile Search for other posts by Yaroslav Visit Yaroslav's Homepage
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum