hhvm Questions
3
Solved
I am a strongly-typed language supporter but I am working on a big PHP project.
I have been using PhpStorm and I love the extra type hinting you can provide, with comments like these:
/** @var \P...
3
Any idea what does this message mean? I am using gcc 4.9 to compile squangle.
In file included from /home/ubuntu/Devel/hhvm/third-party/squangle/squangle/mysql_client/Row.cpp:10:0:
/home/ubuntu/De...
5
Solved
On my local machine, I have php v7.0.3. A project of mine has a dependency on php v5.5.
So as expected, a simple run of composer install crashes:
Your requirements could not be resolved to an ins...
Sarisarid asked 8/2, 2016 at 15:43
3
Solved
i am trying to set up a symfony2 project on a HHVM machine,
The HHVM is running on FastCGI as explained in the hhvm tutorial, thus running behind an apache2 server on Debian.
I have created every...
3
Solved
So I was excited to jump into some Hacklang and HHVM, and after finally managing to get it running on a CentOS 6 VM (tip: servergrove.com have a RPM from a repo of theirs, but it still needed MySQL...
2
Solved
At the end of my vagrant provisioning script I attempt to install composer using the following :
sudo curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer...
Etsukoetta asked 5/5, 2014 at 11:58
1
I am having a very weird issue uploading larges files over 6GB. My process works like this:
Files are uploaded via Ajax to an php script.
The PHP upload script takes the $_FILE and copies it over...
Foltz asked 5/6, 2017 at 14:49
1
Solved
Specs:
Ubunutu 16.04.1 Server
nginx 1.10
HHVM 3.17.0
I am attempting to gather a list of files, and run them through the hhvm compiler to utilize repo mode, with the following code:
#!/bin/bash
...
1
I'm a MAC user and installed docker inside a VM "ubuntu 14.04". (I installed everything manually, NOT using docker toolbox)
The problem is when I start specific container (other containers run nor...
Charlsiecharlton asked 11/4, 2016 at 9:43
2
I'm trying to migrate from PHP 5.4 (with FPM as FastCGI and apc) on nginx to HHVM - FastCGI (nginx too).
My application is an ad server with Slim as a framework. The ad server is connecting to re...
Potman asked 4/8, 2014 at 14:1
2
I am running an NGINX 1.2.1 with HHVM 3.5.0 in FastCGI Mode.
As the title says, Chrome "stalls" the request for a long time after I do the following:
Open up my website (takes just about 1.5 sec...
Brayton asked 19/1, 2015 at 7:59
2
Solved
Well I just started with hhvm/hack. But I wanted to display the errors to the browser but didnot got it working.
I set the ini settings as followed
error_reporting(E_ALL);
ini_set('display_errors...
Clari asked 2/7, 2014 at 6:23
3
I noticed that my Laravel API does not return entity identifiers (the primary keys) as integers.
In Api\PostController.php::show():
function index()
{
$posts = Post::all();
return $posts;
}
...
1
I know I can set an environment variable using
putenv("ENV_FOO=SOMETHING");
and get the value via:
getenv("ENV_FOO");
If the variable isn't set, getenv("ENV_FOO") will return false.
I have a...
Perforated asked 3/12, 2015 at 11:54
1
I know that PHP7 has a new compiler that is almost as fast as HHVM, but I am just curious if HHVM will also be able to run PHP7 as well as PHP5.
I can't find any details on this.
Everything I find...
2
I have installed hhvm by using the building and installing hhvm in Ubuntu 13.10 from GitHub and now I want to uninstall it from my system completely. I am not getting any documentation regarding th...
1
I can't seem to configure HHVM and Apache, it keeps giving me a 404 file not found error. My configuration file for the website is saved as www.example.com.conf, it contains:
<VirtualHost *:80&...
1
Solved
3
Solved
I'm evaluating HipHop-PHP for compatibility and performance on our code base, but I'm getting very poor performance when running it with the built-in web server enabled.
I have the following sampl...
Nibble asked 27/7, 2013 at 14:19
2
Solved
I've been playing with HHVM config file and I have yet to be able to make it output any fatal error to the browser. It displays E_NOTICE and E_WARNING but when any E_ERROR happens it leaves the pag...
Prem asked 15/4, 2014 at 14:37
3
Solved
I'm using imagick to convert a pdf to a jpg in a script I have...it works fine if I give the direct path to the uploaded pdf without the page specified, but when I add the [0] onto the end of the f...
Durbar asked 2/2, 2015 at 20:41
1
Solved
1
After a day searching for solutions i hope to find an answer here.
I'm running Laravel 4.2 on Homestead 2.0 (Vagrant) and i'm trying to get a simple parse error to output to my browser, but instea...
5
When running my PHP scripts in HHVM I see that I can pass a debug-host and debug-port arguments, but I can't seem to work out exactly what it does and how to use it.
Are those arguments for debugg...
1
Solved
Can we expect a speed gain by transitioning from PHP to Hack on HHVM?
I'm thinking of the strongly typed parameters / return types, in particular scalars, does that allow HHVM to do a better job a...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.