Draka

Members
  • Posts

    28
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Thanks
    Draka got a reaction from Ozgeek in Using Let's encrypt with Cloudflare?   
    1. Set SSL to full (strict). Working perfect here.
    2. I use litespeed plugin together with cloudflare. I also have the official cloudflare plugin.
  2. Like
    Draka got a reaction from mountain90 in Can't post after change server   
    I dont speak transformers language
    But maybe there was something missing during the migration? Something in the database is missing?
    Updated to the newest wordpress?
  3. Thanks
    Draka reacted to Brian in Railgun enabled?   
    Railgun is completely free and is available in our Washington DC, Dallas TX, Los Angeles CA, Singapore, and Amsterdam datacenters!
  4. Thanks
    Draka reacted to Tony in Memcached with Wordpress using W3Totalcache - No port mentioned in Cpanel Memcached interface   
    We switched from utilizing randomized ports for users to using a unix socket on user accounts.  Any application that supports Memcached should allow for unix sockets the same way it can use ports.  You'd use the address:
    unix://(socket location we give you)
    We'll have someone from our team update the image to reflect the unix socket change.  We missed that while updating the blog post to mention it's handled using sockets.
  5. Thanks
    Draka reacted to Tony in phpBB3 with Memcached   
    The reason we do not offer a traditional IP/port is because anyone on the same server as you could read your memcached data.  This would be a security risk which is why it's a socket that exists only inside your own accounts Cage meaning only you can access it.
    I want to clarify one thing the recommended extension is memcached and not the memcache extension.  The memcached extension is actively developed:
    https://pecl.php.net/package/memcached
    The memcache extension is not:
    https://pecl.php.net/package/memcache
    The last release is almost four years ago.
    Looking at their code directly I believe we can make this work with sockets.  What you can do is use the following:
    unix:///path/to/memcached.sock
    The reason I'm coming to this conclusion is
    $this->memcached->addServer(trim($parts[0]), trim($parts[1])); They are calling the PHP extension and the documentation for addServer is here: http://php.net/manual/en/memcache.addserver.php  and it accepts sockets on the host and you set the port to 0.
    That should make everything work when you utilize the Memcache extension in PHP 5.6.  Unfortunately looking through the phpbb forums there is no support for the memcached extension meaning you cannot utilize PHP 7.