Last active
August 29, 2015 14:02
-
-
Save habahut/f0a3472638d5833a50b3 to your computer and use it in GitHub Desktop.
Windows 8 PHP *.so Fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It is likely that you will need to update your copy of php running on the devbox. To do this, | |
you will need to navigate to the manual link to download the newest version of PHP in the | |
placelocal repo. Browsing to the download link, and copy and paste it like so: | |
`cd /vagrant` | |
`wget <insert download link here>` | |
This will download the version to a file in the current folder. Type `ls` to find it, then: | |
`tar -xzf <the file name>` | |
`cd <the new folder created>` | |
`./configure` | |
`make install` | |
If your ./configure terminates complaining about the xml2 library, you will need to | |
install the correct dependencies: | |
`sudo apt-get install libxml2-dev` | |
Finally | |
`./configure` | |
`make install` | |
Note that after this fix you may need to halt and bring back up the dev box to | |
ensure the changes are applied. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment