You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest version of the PHP cookbook, v1.3.1, now includes support for Windows, which causes Vagrant-LAMP-Stack setup to fail when provisioned. It is due to the following cookbook dependency chain: PHP -> Windows -> IIS -> ffi
Provisioning fails on the missing FFI gem. This can be resolved by requiring PHP v1.2.6 in the Berksfile or by ensuring the ffi gem is installed before hand.
# Berksfile
cookbook "php", "~> 1.2.6"
The text was updated successfully, but these errors were encountered:
The latest version of the PHP cookbook, v1.3.1, now includes support for Windows, which causes Vagrant-LAMP-Stack setup to fail when provisioned. It is due to the following cookbook dependency chain: PHP -> Windows -> IIS -> ffi
Provisioning fails on the missing FFI gem. This can be resolved by requiring PHP v1.2.6 in the Berksfile or by ensuring the ffi gem is installed before hand.
The text was updated successfully, but these errors were encountered: