Bonjour à tous ,
voici mon probléme , apres compilation de PHP 5.3.4 , malgré l'option --enable-pcntl , il m'est impossibe de l'utiliser dans mon code , celui-ci ne trouve pas la fonction

Voici les infos concernant l'environnement :

Debian 5
php5.3.4
php-fpm
nginx

Voici le configure utilisé :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
./configure --prefix=/usr/local \
        --with-xsl \
        --enable-soap \
        --with-gettext \
        --enable-mbstring --with-mbstring=all \
        --disable-debug \
        --enable-memory-limit \
        --enable-ftp \
        --with-mcrypt \
        --enable-zip \
        --enable-calendar \
        --enable-exif \
        --enable-pdo \
        --with-pdo-mysql \
        --with-mysql \
        --with-pdo-sqlite \
        --with-sqlite \
        --with-zlib \
        --with-jpeg-dir \
        --with-gd \
        --enable-bcmath \
        --with-curl \
        --enable-cli \
        --enable-fpm \
        --enable-pcntl \
        --with-freetype-dir=DIR \
Et pourtant la commande php -i | grep pcntl me renvoi bien :

pcntl support => enabled

Merci d'avance pour votre aide .

Ch.