Recent content by StormRider

  1. StormRider

    TaigaChat Pro - Realtime chat/shoutbox [Deleted]

    I had exactly the same problem both on default and custom styles. Here is the fix: taigachat.js replace var adjId = $(this).next().length > 0 ? $(this).next().attr("id") : ""; with var adjId = $(this.id).next().length > 0 ? $(this.id).next().attr("id") : ""; and var adjId =...
  2. StormRider

    XF 1.1 Varnish / LSWC for XenForo?

    Have anybody tried to use nginx-varnish-nginx sandwich with the first nginx as SSL terminator? Thanks to Arkshine, Varnish works perfect on HTTP layer. Varnish is configured on port 6081 and backend nginx on port 8080 and frontend nginx on port 5443. When opening http://mysite:6081/ everything...
  3. StormRider

    Facebook makes PHP 9x faster via virtual machine (HHVM?)

    In my case XF with a ton of addons runs with HHVM much faster than with PHP-FPM (2-3 times faster). These results were taken on hhvm 2.4, currently running 3.1 (nighty). The huge benefit from 3.0.1+ is mysqli support and no crash every half an hour. Can't make new tests as I currently have no...
  4. StormRider

    Facebook makes PHP 9x faster via virtual machine (HHVM?)

    :) It crashes periodically (once per 25-30 min) without logging. However, adding in cron service status checking and start in case of failure seems to be a workaround. This problem possibly is fixed in 2.4.1 (https://github.com/facebook/hhvm/issues/1845), but I am running 2.4.0.
  5. StormRider

    Facebook makes PHP 9x faster via virtual machine (HHVM?)

    Finally I managed to run HHVM in prod! applelife.ru (please do not consider as an ad). Keeping fingers crossed :)
  6. StormRider

    Facebook makes PHP 9x faster via virtual machine (HHVM?)

    Hi all! If you want to get your XenForo working with HHVM do the following: 1. (if using ElasticSearch) /library/XenES/Api.php and replace, line 35 replace $this->_httpClient = XenForo_Helper_Http::getClient($this->_server, array('keepalive' => true, 'timeout' => 45)); with $this->_httpClient...
  7. StormRider

    Facebook makes PHP 9x faster via virtual machine (HHVM?)

    I had 3 problems with HHVM: 1. Some plugins are not working(PDO problems) 2. You are not able to install new plugins (PDO problems) 3. ElasticSearch not working (PHP problems) Luke Foreman, have you tested that? Anyway, I believe that if developers will make a few changes in the xenforo code...
  8. StormRider

    Facebook makes PHP 9x faster via virtual machine (HHVM?)

    Right, PDO is not supported. And HHVM as well :) The worst thing is that elasticsearch do not work with hhvm. So, waiting for new releases!
  9. StormRider

    Facebook makes PHP 9x faster via virtual machine (HHVM?)

    It seems to work with PDO. Add $config['db']['adapter'] = 'pdo_mysql'; to the config.php However there are problems with some plugins (i.e. XenPorta) when using PDO.
Top Bottom