Is there a general answer as to whether PECL extensions are compatible with Static/PHP? If so, is there a set of Webfaction-specific installation instructions. NOTE TO WEBFACTION: I recommend deprecating memcache and adding memcached to your standard PHP. Both extensions implement libmemcached, but memcached is more capable. asked 10 Jun '15, 20:17 bvbb |
Yes, you can build PECL extensions and use them in our standard PHP environment. The basic procedure to download and build an extension goes like this (I'm using PHP 5.6 - if you're using something different then change "56" to whatever you need. My hypothetical extension is called "whatever"):
At this point your extension is built. To configure your app to use it, add the following lines to the app's
Hope that helps! Please let us know if you need anything else. answered 10 Jun '15, 23:58 seanf |