Jump to content

David N.

Clients
  • Posts

    1,261
  • Joined

  • Last visited

  • Days Won

    2

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Forums

Events

Store

Gallery

Posts posted by David N.

  1. Yes, I understand. I was just venting here (sorry) to see if I'm the only one with this issue or if everyone goes through this app review process. 

    I just received a new email from them saying that they were able to access the platform (same email as before). These seem like a bunch of semi-automated emails Let's hope this was just a glitch in their systems. 

  2. 6 minutes ago, Marc Stridgen said:

    The issue is they are banned from the site as mentioned. The only way in which to resolve that is to know what IP and email they are trying to use when registering. Without that, its impossible to track them down. Other users would not be having that issue, as they are not logging in using that same IP and email. 

    Unfortunately this is another case whereby facebook make it harder and harder to integrate with them

    No I mean I was able to give them a test user that is linked to a Facebook account and they emailed me to say "We were able to access the platform with the information you provided." 

    Then this morning I get a new email that my app is under review and I need to give them FB credentials again (even though I just did). 

  3. 1 minute ago, Marc Stridgen said:

    Glad to hear you managed to get that issue resolved. 

    Well not really... in the end they seem to be at it again. I just received a new email that my FB login app is under review (again) and that I need to provide them with login credentials. 

    This all feels very Kafkaesque. Is everyone who's using FB login going through that?  

  4. Facebook (a.k.a. Meta) reached out to alert me that an action was required for them to continue letting me using the app I created in order to allow for Facebook login on my Invision Community. 

    I detailed the purpose of the app (to offer the Facebook login to my community forum). 

    They replied with: 

    Quote

    While reviewing we were not able to login into the website using facebook as it is leading error " Not permitted to register a user account with this site" Hence we request you to fix this issue and let us know so that we will review the app accordingly.

    I have 3 days to comply or they're canceling my app. 

    What should I do? 

  5. 11 hours ago, Marc Stridgen said:

    This is not to say they wont force onto the new one once they remove GA3 however. 

    Yes indeed it looks like it would make sense. 

    I've been wondering about the impact of Google Analytics on page speed lately. I know there are some alternatives to Google Analytics (such as abralytics) that improve page speed. However I can't use those as my ad manager requires Google Analytics. 

    I'm still wondering if there's a difference between the UA and the GA4 scripts (I intend to test this soon and post my results here), and if data stream enhanced measurement settings (scrolls, outbound clicks, site search etc...) affect page speed (not sure how to test that). 

  6. 1 minute ago, Jim M said:

    Google Analytics Universal Analytics (UA) will soon be going away and you will need to convert to their GA4 scripts. Can read more from Google: https://support.google.com/analytics/answer/11583528?hl=en

    Oh yes I'm well aware, thanks. The UA property will stop processing data on July 1, 2023. However the UA script I'm using still works fine in creating a GA4 data stream, which is all the GA4 property requires to process data. 

    Maybe I'm overthinking this and it doesn't matter in the end. 

  7. A year or two ago I've set up my GA4 property in Google Analytics and it did not require changing my code snippet, so my website is still using the old UA code snippet for the GA4 data flow (which works fine - I see in GA4 that my data collection is active). 

    However I wonder if I should change the old snippet currently used on my site: 

    <!-- Global site tag (gtag.js) - Google Analytics -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXX-1"></script>
    <script>
    window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag('js', new Date());
    gtag('config', 'UA-XXXXXXXX-1');
    </script>

    And instead use the new one: 

    <!-- Google tag (gtag.js) --> 
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXX"></script> 
    <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-XXXXXXXX'); </script>

    Does that make a difference? 

×
×
  • Create New...