Jump to content

Michel_72

Clients
  • Posts

    280
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by Michel_72

  1. Where do you get the information Stripe is 'dumping' Bancontact and Ideal? In Belgium Bancontact has a 78% payment penetration and in The Netherlands Ideal has 55%.

    Stripe itself says they are NOT!

    I and many other customers rely on Ideal and Bancontact, so I would be extremely unpleasantly surprised if IPS decides to deprecate Ideal and Bancontact payments. 

  2. Yes, I am using Ideal, Bancontact and Sofort.

    Stripe is not removing support for those.

    Quote
    How to update your integration
     
     
     
     
    To update your integration, please follow the instructions in our migration docs, and then add Bancontact, iDEAL to your payment flow. If you use Stripe via a third-party integration, please contact the developer to download their latest version. For more information about third-party integrations, please refer to this support article.
     
     

     

     
     
    You can visit our migration tooling in the Stripe Dashboard to view your recent Sources payments and confirm that you have no remaining traffic on Sources once your migration is complete.
     
     
     
     
    If you have any questions or concerns, we have compiled answers to common questions on our support page. For more dedicated support, please submit this contact form, or chat directly with our developers on our Discord server.
     
     
     
     
    If you have already made the necessary changes, please disregard this message.
     
     
     
     
    — The Stripe team

     

    Support for Ideal and Bancontact is ESSENTIAL for the existence of our forums. So I sincerely hope that IPS is not remove those, especially without informing customers.

  3. Any clue as to why I still keep getting this email from stripe?

    I am on the latest self hosted version 4.7.16.

    Quote
     
    Hello,
     
     
     
     
    This is a final reminder that on 15 May 2024, the legacy Sources API in your current integration will be turned off for all non-card payment methods. After this date, any Sources API calls for non-card payment methods will not be supported.
     
     
     
     
    Please migrate your integration to the Payment Intents API to continue accepting Bancontact, iDEAL. For more time, you may request a one-off extension. If you do not plan to migrate, we recommend that you remove Bancontact, iDEAL from your checkout. If you do not take action to either update your integration or request an extension before 15 May 2024, your integration for Bancontact, iDEAL will break.
     
     

     

  4. Hi, I have set the:

    \define( 'NOTIFICATION_BACKGROUND_THRESHOLD', 0 );

    ...and I whitelisted my forum server subnet on the mailserver on the postscreen and whitelisted it for spam checking. Stil having issues that on some threads posting a reply, or sending a Private message to specific members takes ~5 seconds.

    Further investigation turned out that this ONLY happens when the member subscribed to the specific thread, or the member receiving this Personal Message, has a non existing/working email address in their profile. I found out as I was getting "Undelivered Mail Returned to Sender" messages right after sending this member a PM. 

    I then send a email message from my webmaster address (the same address as used on the forums) from my Apple mail client to this member and I almost  instantly received the "Undelivered Mail Returned to Sender" message via email.

    It seems to me that there is not much I can do about a member not having a working email address. Some members joined 20 years ago, but still regularly visit or post on the forums. As we have 36.000+ members there is no way I can personally force every member to have a working email address in their profile.

    It also seams to me that this should not effect the time needed to post a message on the forums. I am not putting the blame anywhere here, I am just trying to find a proper solution. 🙂

  5. I obviously meant that the speed of a post should not be depending on the speed (or anti-spam measures) of a mailserver or the speed of the connection to it.

    If the mail would neatly be queued within the application, this would not happen. It's unexpected behaviour.

    It took me ages to find out why posts where slow in the forums in specific cases. Nobody would think of an external  mailserver being the culprit.

  6. I have changed back this setting and whitelisted the webserver in postfix POSTSCREEN (../custom_postscreen_whitelist.cidr). This works around the issue by whitelisting the webserver for the postfix postscreen, but does not solve the issue that make the forums slow when replying to a followed topic when there is network congestion or a slow mailserver.

    As those are external factors, I still think this could/should be resolved on the Invision Community side.

    For me this is workable now. Thanks for the help!

  7. I have a support topic at mailcow (the well respected mail server I use) as well.

    Based on what I could find from previous questions:

    "That's just Postscreen waiting for impatient spam boxes. It is an anti-spam feature and wanted. It will whitelist sane senders for a while."

    As It seems to whitelists for a short while after the first attempt, This would explain the 5sec delay. Looking into the issue further, transaction delays on postfix seem to be best/good practice:

    https://tldp.org/HOWTO/Spam-Filtering-for-MX/smtpdelays.html

    https://www.linuxbabe.com/mail-server/block-email-spam-postfix

    https://www.postfix.org/POSTSCREEN_3_5_README.html

    It seems to me (but I am not an expert in any way) a reply on a forum-topic, should not be depending on the speed of an external mailserver or network as those are not a requirement for making a post and should be handled in the background.

    As soon as I have a response from the mailcow devs, I'll  post it here.

  8. Hi,

    On our forums we are experiencing extremely slow POST times (> 5sec) on our otherwise crazy fast server.

    It took me very long to find the culprit as behaviour varied from topic to topic / time to time.

    As I ruled out all possible server issues, I then focused on the actual differences in the topcis and then found out only topics that have followers took long. Most new topcis or topics I posted and then reply to myself did not.

    Then I looked into the email settings, tried PHP as mailer (I use normally use SMTP) and then all posts where practically instant.

    Turns out when posting messages, the forum software seems to wait for the email notifications being send. Seems to me this should be a separate (background) process or queue, as most SMTP servers have transaction delays due to spam prevention.

    Quote

     SMTP Transaction Delays

    As it turns out, one of the more effective ways of stopping spam is by imposing transaction delays during an inbound SMTP dialogue. This is a primitive form of teergrubing, see: http://www.iks-jena.de/mitarb/lutz/usenet/teergrube.en.html

    Most spam and nearly all e-mail borne virii are delivered directly to your server by way of specialized SMTP client software, optimized for sending out large amounts of mail in a very short time. Such clients are commonly known as Ratware.

    In order to accomplish this task, ratware authors commonly take a few shortcuts that, ahem, "diverge" a bit from the RFC 2821 specification. One of the intrinsic traits of ratware is that it is notoriously impatient, especially with slow-responding mail servers. They may issue the HELO or EHLO command before the server has presented the initial SMTP banner, and/or try to pipeline several SMTP commands before the server has advertised the PIPELINING capability.

    That makes SMTP unusable as a mailer.

    Could IPS please clarify why the design seems to work as outlined and there is no queue or separate proces? Are you open to change this?

  9. In the setting we are able to choose the login method username of email address, but the translation does not distinguish between those.

    That means users get confused and try to login using a username, though only email address has been set.

    Could contain: Text

     

    It would be nice if you could change that.

     

     

  10. 1 hour ago, Marc Stridgen said:

    Please disable 2 factor authentication, and we can then take a look for you

    Should be off now.

    1 hour ago, SeNioR- said:

    Try to restore the "warnHovercard" template.

    Not possible as the template is identical to the original theme. I have two active themes for admins. A freshly installed default theme and our only slightly modified theme.

    1 hour ago, SeNioR- said:

    If the topic was added by the "Guest", it is not possible to send him a alert, hence the empty field.

    Guests can not add topics on our forums.

  11. Invision Community v4.7.4

    Locking issue:

    Could contain: Page, Text, File, Webpage

    Reproduction: Go to topic > moderation tools > select lock.

    When pressing 'save'  nothing happens.

    I tried disabling all 3rd party addons/plugins/templates/langguages and clearing cache. Nothing helps, nothing in the admin panel logs.

     

    The Second issue might be related:

    Could contain: File, Person
     

    Exception::0
    Unknown or bad format (P-1Y11M23DT3M16S)
    
    #0 /var/www/sat4all.com/webroot/forums/uploads/template_33_e554b6dcaef0395bbd7d6d63ba187d0a_modcp.php(6271): DateInterval->__construct()
    #1 /var/www/sat4all.com/webroot/forums/system/Theme/SandboxedTemplate.php(61): IPS\Theme\Cache\class_core_front_modcp->warnHovercard()
    #2 /var/www/sat4all.com/webroot/forums/applications/core/modules/front/system/warnings.php(116): IPS\Theme\_SandboxedTemplate->__call()
    #3 /var/www/sat4all.com/webroot/forums/system/Dispatcher/Controller.php(107): IPS\core\modules\front\system\_warnings->view()
    #4 /var/www/sat4all.com/webroot/forums/system/Content/Controller.php(50): IPS\Dispatcher\_Controller->execute()
    #5 /var/www/sat4all.com/webroot/forums/applications/core/modules/front/system/warnings.php(42): IPS\Content\_Controller->execute()
    #6 /var/www/sat4all.com/webroot/forums/system/Dispatcher/Dispatcher.php(153): IPS\core\modules\front\system\_warnings->execute()
    #7 /var/www/sat4all.com/webroot/forums/index.php(13): IPS\_Dispatcher->run()
    #8 {main}

     

  12. 38 minutes ago, Michel_72 said:

    I can reproduce this easily. I click these URL's in the error log within the ACP, I am obviously logged in then so I create a new error in the error log using MY IP and login, which to me seems to be caused by one reason only, me clicking the link myself.

    There is loads of errors in the logs coming from different IP-addresses and "I presume" guests or different logins.

    Could you please help clarifying this as I feel we are on the wrong track here, or I am misunderstanding you completely here.... Some proof of better explanation would be nice 🙂

     

    54 minutes ago, Michel_72 said:

    I think the confusion comes from me clicking some of the error URL's in the logs. I'm quit sure my login has not been compromised 😉

     

     

     

    well.... 😉

  13. That conclusion still suggests my account has been used by hackers, which I have found absolutely no proof for whatsoever.

    Not in the invision community logs, not in the webserver logs. I only found attempts of me intentionally clicking some URL's in the logs which caused new errors in the logs. Something I can still successfully reproduce even now I have changed my account password to a new 32 character long password.

    Every single time my IP or account showed up in the logs, it was me clicking one of those URL's in the ACP to see what error they would generate.

    I appreciate you looking into this, but I still think you are wrongfully accusing me of having my account and or computer compromised, which does not seem to be the case at all.

  14. Ok, so 3 conclusions then?

    1. Someone is unsuccessfully trying to hack my website by forming invalid URL's?

    2. My invision community account or Mac has not been hacked, this was a mistake caused by me clicking the error urls?

    3. Judging the logs there is nothing to worry about, my invision community is working correctly?

  15. As far as I can see these errors all come from different IP's and not using my account:

    Could contain: Menu, Text

    It feels like you are jumping to conclusions here and you sort of scared me by making me think my Mac and/or forum account has been hacked which does not seem likely (but is certainly not impossible) due to all the security measures I take.

    One example of the IP's from above log:

    Could contain: Menu, Text

     

×
×
  • Create New...