Page 1 of 1

Tracking OUT after httpS switch

Posted: Tue Dec 05, 2017 4:58 pm
by youramat
Hello,

I'm having issues with traffic i send to external websites (out) after i switched to httpS.

For example, while my TE stats show about 3000 raw out and 2000 uniques out, the site receiving the traffic only counts about 600 uniques in according to google analytics.
I know google and TE might not synch at the same server time but i've tracked this for a couple of days and also checked traffic spread over 2 or 3 days but the difference is simply to big.

I already added <meta name=“referrer” content=“unsafe-url”> some while ago and also used

Code: Select all

?php
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on')
echo HTTPS is working';
else
echo 'HTTPS is missing';
with positive result (https is working)

I have not used the referrerpolicy=“unsafe-url” method since i'm not using html to sent traffic but straight urls like /te3/out.php?purl=http://www.google.com.

Is anyone else having this issue? It is a huge pain in the ass and messes up all my trades.

Re: Tracking OUT after httpS switch

Posted: Wed Apr 18, 2018 7:39 am
by youramat
This issue is still present.
I have tested this during a 30 day period. According to TE i have send over 50.000 clicks to SITE A.
SITE A Google analytics reports that only 10.000 visits was received during this period.

So we are missing 40.000 and i have no clue how this is possible and this is killing all my trades.

Image
Image

Re: Tracking OUT after httpS switch

Posted: Tue Jun 19, 2018 9:33 pm
by 8teenbay
What happens with HTTPS thing? I also have the same problem! Not all visits are counted by TE :(

Re: Tracking OUT after httpS switch

Posted: Wed Jun 20, 2018 8:02 am
by texpert
Hello, it's not a TE related problem but it's a problem between https and http protocol because the referrers get lost.

You can read few explanations here:
https://smerity.com/articles/2013/where ... rs_go.html
https://www.e-nor.com/blog/google-analy ... errer-loss




Best regards,
Alex

Re: Tracking OUT after httpS switch

Posted: Wed Jun 20, 2018 6:57 pm
by 8teenbay
texpert wrote:Hello, it's not a TE related problem but it's a problem between https and http protocol because the referrers get lost.

You can read few explanations here:
https://smerity.com/articles/2013/where ... rs_go.html
https://www.e-nor.com/blog/google-analy ... errer-loss




Best regards,
Alex
Very interesting articles. Thanks.

But any solution to our trades? I'm going crazy with this https thing. Traffic is decreasing everyday :(

Re: Tracking OUT after httpS switch

Posted: Thu Jun 21, 2018 6:35 am
by 8teenbay
What's the best option you recommend? Use metatag in header or for every individual link like you suggest in TE wiki?

Re: Tracking OUT after httpS switch

Posted: Fri Jun 22, 2018 6:43 am
by texpert
Hello, i recommend to use the <meta name=“referrer” content=“unsafe-url”> in the <head> section, but not all browsers support this here you can see which browsers support this:

https://caniuse.com/#feat=referrer-policy
https://notes.bughunters.club/referrer- ... 8bf3328ecd




Best regards,
Alex

Re: Tracking OUT after httpS switch

Posted: Fri Jun 22, 2018 8:55 am
by 8teenbay
texpert wrote:Hello, i recommend to use the <meta name=“referrer” content=“unsafe-url”> in the <head> section, but not all browsers support this here you can see which browsers support this:

https://caniuse.com/#feat=referrer-policy
https://notes.bughunters.club/referrer- ... 8bf3328ecd




Best regards,
Alex
Thanks,

I used that metatag in all mys sites and I don't see any changes in my trades nor GA. In fact, the trades between all my sites are: 0 in's - 1000 out's, but that outs are not reflected in other TE sites. Any idea?

Re: Tracking OUT after httpS switch

Posted: Sat Jun 23, 2018 3:51 am
by texpert
Can you try to disable HTTPS ?


Best regards,
Alex

Re: Tracking OUT after httpS switch

Posted: Sun Jun 24, 2018 10:30 am
by 8teenbay
texpert wrote:Can you try to disable HTTPS ?


Best regards,
Alex
Yes, was the solution ;)