I've installed php70 using the Remi repository on Centos 7 and need to get thread safety enabled as I am getting the error mentioned in the title.
running:
php70 -i|grep -i thread
I get:
Thread Safety => disabled
I have tried installing the php-pecl-pthreads package via yum but the error persists.
Investigating further (as per this question here), it would appear that thread safety is how the version of php is compiled and not just a php extension.
Should I be using a different repo to have php 7.0 with thread safety? If so, which repo is best? Does it even exist yet in a repo or should I be compiling php 70 with thread safety from source?
Thanks,