2

When I try to execute Facebook HHVM hackficator from PHP I get this error

Fatal error: exception Failure("unstable www state before modification")

I googled error and found reference inside the code written in OCaml

https://github.com/facebook/hhvm/blob/master/hphp/hack/tools/hackificator/hackificator.ml

but I have no idea does that mean?, but I do see a reference to www

Aftab Naveed
  • 3,652
  • 3
  • 26
  • 40

1 Answers1

1

This means that hh_client executable was called and returned something other than "No errors!".

Josh Watzman
  • 7,060
  • 1
  • 18
  • 26
ivg
  • 34,431
  • 2
  • 35
  • 63
  • Yep, exactly. You need to run `hh_client` and fix any errors that the typechecker points out. You should be running `hh_client` often anyways, since that is what enforces most of Hack's type system. http://docs.hhvm.com/manual/en/install.hack.bootstrapping.php has details on this process. – Josh Watzman Feb 04 '15 at 02:55