When a PHPUnit test fails normally on my dev box (Linux Mint), it causes a \"Segmentation Fault\" on my Continous Integration box (Centos). Both machines are running the sam
The following fixed a similar issue for me (when the output of the gdb
backtrace included libcurl.so
and libcrypto.so
):
disable /etc/php.d/pgsql.ini
:
; Enable pgsql extension module
; extension=pgsql.so
edit /etc/php.d/curl.ini
to ensure that pgsql.so
is included before curl:
; Enable curl extension module
extension=pgsql.so
extension=curl.so
curl.cainfo=/home/statcounter/include/config/cacert.pem