vote up 0 vote down star

I am running CentOS 5.2 and using yum to manage packages. I have had little luck installing php-posix but know with almost 100% certitude that it is a real and available package...somewhere. Has anyone had luck installing it?

FWIW, I am using the following:

sudo yum install -y php-posix

Update: I've realized that this may be an issue with my host (Slicehost) as I do in fact have cli, posix, and pcntl enabled for my PHP version (5.2.9)

flag

71% accept rate

2 Answers

vote up 0 vote down check

You can try and see if it's in the testing repository.

To see if it's in that repository.

yum --disablerepo=\* --enablerepo=c5-testing list available \*php\*

And to install it.

yum --enablerepo=c5-testing install php-posix

Be aware though, that the PHP version it needs may be higher than you currently have.

link|flag
Thanks for this, but sadly, c5-testing doesn't have it either. Might have to use the RPM, but man, what a nightmare. – Kyle Jun 17 at 17:40
Yes. The URL is: dev.centos.org/centos/5/… which you can (as root) cd /etc/yum.repos.d && wget dev.centos.org/centos/5/… – Tony Miller Jun 17 at 17:42
vote up 0 vote down

I am running CentOS 5.3. The PHP that is included already has the Posix functions built in. You may or may not have found the introdctory documentation for the POSIX functions (which indicate that these functions are not available in Windows). Have you tried using a particular function and it didn't work?


    <?php print_r(posix_uname()) ?>

in its own file works for me.

link|flag
Yes, I'm using CentOS 5.2 (Final) and PHP v5.2.9 with cli, pcntl, and posix enabled - yet none of the posix functions are defined. – Kyle Jun 17 at 18:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.