wrkalot

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by wrkalot

  1. I am also having an issue with one of my sites. I have a reseller account and several sites. One site is Xenforo (latest version) and image uploads are triggering Imunify360. I have a ticket in on this Ticket ID: UNG-363-75293. Mod Security is disabled but it's still triggering. I have been told that I need to add "SecFilterEngine Off" and "SecFilterScanPOST Off" to my htaccess file to disable the imunify check. I don't think they can disable it on a domain basis. I have asked for that but have been given the above solution instead.

    My other sites on this account run phpbb3 and word press with no issues. The only site effected is the Xenforo site.

  2. On 3/29/2017 at 2:59 AM, Fowler said:

    Quick update.

    Using the memcached phpbb cache plugin and php7, I changed the add server line you quoted above to the following

     

    
    $this->memcached->addServer('/home/USERNAME_HERE/.hostdata/memcached.sock', 0);

     

    unix:// is not needed as explained here for memcached as it is memcache specific - http://php.net/manual/en/memcached.addserver.php

    That resulted in a constant wait for the page to load.  It was literally taking for ever and nothing loaded.  I then changed my username slightly by adding another letter to it and immediately the forum became online again although slower with nothing being cached obviously.  It looks like when the connection info is correct, it just loads forever and a day. When the config information is wrong, it loads the forum but caches nothing so the site is slower. It looks like when the config info is correct, something is blocking it from working somewhere.  I may try memcache and php 5.6 again and see if it get the same constant loading when the config is correct but slightly changing the username in the path results in the site being visible again. The memcached plugin for phpBB is alot newer where as the memcache plugin has been available for years so that may work better if the issue is with phpBB. 

    I can't really set up a ticket at the moment but not a major issue at the moment for me. Just was going to use it as it was available and thought it was going to be easy to use.

    Did you ever get this working?