Tell me more ×
Answers OnStartups is a question and answer site for entrepreneurs looking to start or run a new business. It's 100% free, no registration required.

Our website promotes a web-based application that's actually on another site (in the ebay.com apps center). When someone hits the "sign up" button on our website, it implements a redirect as it takes that visitor to eBay's apps center to actually sign up for the product. We do that so we can pass information to Google Analytics about the source of those individuals. So i can tell X people from SEM clicked over to the eBay Apps Center and Y people from a banner ad clicked over, etc. Otherwise all source information is stripped out as they go through ebay.com.

The question (finally) - this redirect takes 5 seconds which seems like an eternity. Is there any standard for doing this type of redirect implementation that perhaps we're not doing correctly?

Any help greatly appreciated, Chris

share|improve this question
By "redirect", what exactly is the URL on the button? Does it take you to another page that redirects you, or...? – David Apr 29 '11 at 19:50
Yes, it takes you to another page for 5 seconds then to the destination page. – Chris Apr 30 '11 at 2:22
6  
This should be on stackoverflow.com, sounds like a programming problem. – Ryan Doherty Aug 30 '11 at 5:55
I agree, this is a programming/logical problem. – RG-3 Nov 28 '11 at 18:09

3 Answers

Try event tracking in analytics if you are not already it may be quicker than your current method of tracking. And is the redirect happening client side or server side? I would use server side header redirect on click of the signup button. Or post the form with AJAX and redirect the visitor maybe the form loading is taking longer to complete?

share|improve this answer

If you're doing the redirect with Apache rewrite rules, then look at the "RewriteLog" settings. You can log apache redirects to a file, which you would then later parse to get details on the redirects you served up.

The redirects should be almost instant, I don't know why they are taking 5 seconds.

If the above isn't helpful, tell me how exactly you are doing the redirs and maybe I can think of something more specific to your application.

share|improve this answer

Bit.ly tracks link redirection analytics.

You can also try embedding your target site wrapped in an iFrame with the main HTML still retaining your tracking codes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.