Comments on How to Install WordPress with HHVM and Nginx on OpenSUSE Leap 42.1

In this tutorial, I will show you how to install WordPress (a well known CMS based on PHP) with HHVM and Nginx as our web server. I will use OpenSUSE Leap 42.1 as the operating system, so basic knowledge of OpenSUSE is required. HHVM (HipHop Virtual Machine) is an open source virtual machine developed by Facebook, it is a JIT (just-in-time) compiler to execute programs written in PHP 5 (and some features of PHP 7) and Hack language.

3 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: Nils Inge Lilleheie

 I tried your recipy for installing WordPress on OpenSuSE Leap and everything worked well until I should start the installation by entering the domain name (www hakasenano co).  The virtual host was not activated. And yes, I'm pretty sure I executed all steps in the recipe. Any idea?

By: Juan Carlos

Hello I follow the guide step by step but I have this problem: Permission denied opening socket at /run/hhvm/server.sock Unable to start page server Shutting down due to failure (s) to bind in HttpServer :: runAndExitProcess

By: Martin de Boer

Hi Juan Carlos,

 

I had the same problem with the permissions for /run/hhvm/server.sock and /run/hhvm/server.pid. What solved it for me was to change the owner to nginx. And to change the rights to 770.

chown nginx:nginx /run/hhvm/server.sock

chown nginx:nginx /run/hhvm/server.pid

chmod 770 /run/hhvm/server.sock

chmod 770 /run/hhvm/server.pid