Server side omniture page tracking









up vote
0
down vote

favorite












we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.



Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.



How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?










share|improve this question





















  • I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
    – Crayon Violent
    Nov 10 at 21:04










  • Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 3:16










  • I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
    – Crayon Violent
    Nov 11 at 3:35










  • Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 18:44










  • Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
    – Crayon Violent
    Nov 13 at 3:11















up vote
0
down vote

favorite












we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.



Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.



How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?










share|improve this question





















  • I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
    – Crayon Violent
    Nov 10 at 21:04










  • Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 3:16










  • I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
    – Crayon Violent
    Nov 11 at 3:35










  • Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 18:44










  • Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
    – Crayon Violent
    Nov 13 at 3:11













up vote
0
down vote

favorite









up vote
0
down vote

favorite











we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.



Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.



How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?










share|improve this question













we use omniture to track page visits in our site. It works well. However, we have a scenario where we have some redirect links that redirect to a different website over which we have no control.



Example, I am on page A and it has a link to a redirect page B (in the same domain). However, when user clicks on the link to page B, the page B redirects the user at the server side to a different website.



How can we track page visits for page B? I tried using s.tl method. However, is there a way to track redirect page B visit similar to a regular page in site site?







adobe-analytics






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 9 at 20:49









Nataraj Gandhi arunachalam

11




11











  • I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
    – Crayon Violent
    Nov 10 at 21:04










  • Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 3:16










  • I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
    – Crayon Violent
    Nov 11 at 3:35










  • Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 18:44










  • Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
    – Crayon Violent
    Nov 13 at 3:11

















  • I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
    – Crayon Violent
    Nov 10 at 21:04










  • Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 3:16










  • I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
    – Crayon Violent
    Nov 11 at 3:35










  • Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
    – Nataraj Gandhi arunachalam
    Nov 11 at 18:44










  • Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
    – Crayon Violent
    Nov 13 at 3:11
















I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04




I'm not entirely sure I understand your situation. If you do not have access to add client-side code to page B, then you likely do not have access to track page B with server-side code. The best you can do is on page A, track the click on the link that takes you to page B, onclick of the link (before the redirect happens)
– Crayon Violent
Nov 10 at 21:04












Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16




Hi Crayon, thank you for the reply. YesI am trying on the lines similar to your update. However we do have access to the sever side code as the page B is in our domain and we do the redirect during the processing of Page B.
– Nataraj Gandhi arunachalam
Nov 11 at 3:16












I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35




I admit I'm further confused.. you have server-side access to Page B, but can't output the regular javascript implementation?
– Crayon Violent
Nov 11 at 3:35












Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44




Hi Crayon, sorry if I am confusing. We have server side access during Page B load, but during the server side load of page B, it is redirected to the external site. So, basically, there is no HTML rendering for page B.
– Nataraj Gandhi arunachalam
Nov 11 at 18:44












Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11





Okay well my first suggestion would be for you to do client-side click tracking on the link before the redirect. The 2nd option (server-side) involves using the Data Insertion API which is a bit more complex and will require you to do some client-side coding on Page A anyways, to get some stuff (e.g. the visitor id)
– Crayon Violent
Nov 13 at 3:11


















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233070%2fserver-side-omniture-page-tracking%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53233070%2fserver-side-omniture-page-tracking%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20