Installing PECL extensions in CentOS

| 1 Comment

After lots of searching round I finally worked out where the hell I was going wrong. Just remount /var/tmp with exec temporarily.

$ sudo mount -o remount,exec /var/tmp
$ sudo pecl install <pecl_extension>
$ sudo mount -o remount,noexec /var/tmp

1 Comment

you saved my life :-)))

thanks.

Leave a comment