[résolu] Cacti --> graphs qui ne s'affichent pas

Salut à tous,
voilà j’ai installé cacti pour un monitoring réseau, j’ai suivi la manuel d’install pour les version Linux mais après avoir configuré cacti, les graphs ne s’affichent pas :

Voilà si quelqu’un a déjà eu le problème et qu’il a trouvé la solution qu’il me donne un coup de main svp.

Voici le tuto du package :

                        Chapter 2. Installing Under Unix

    1. Extract the distribution tarball.

 shell> tar xzvf cacti-version.tar.gz

    2. Create the MySQL database:

 shell> mysqladmin --user=root create cacti

    3. Import the default cacti database:

 shell> mysql cacti < cacti.sql

    4. Optional: Create a MySQL username and password for Cacti.

 shell> mysql --user=root mysql
 mysql> GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY 'somepassword';
 mysql> flush privileges;

    5. Edit include/config.php and specify the MySQL user, password and
       database for your Cacti configuration.

 $database_default = "cacti";
 $database_hostname = "localhost";
 $database_username = "cactiuser";
 $database_password = "cacti";

    6. Set the appropriate permissions on cacti's directories for graph/log
       generation. You should execute these commands from inside cacti's
       directory to change the permissions.

 shell> chown -R cactiuser rra/ log/

       (Enter a valid username for cactiuser, this user will also be used in
       the next step for data gathering.)

    7. Add a line to your /etc/crontab file similar to:

 */5 * * * * cactiuser php /var/www/html/cacti/poller.php > /dev/null 2>&1

       Replace cactiuser with the valid user specified in the previous step.

       Replace /var/www/html/cacti/ with your full Cacti path.

    8. Point your web browser to:

         http://your-server/cacti/

       Log in the with a username/password of admin. You will be required to
       change this password immediately. Make sure to fill in all of the path
       variables carefully and correctly on the following screen.

et voici les requirements :

                            Chapter 1. Requirements

   Cacti requires that the following software is installed on your system.

     * RRDTool 1.0.49 or 1.2.x or greater

     * MySQL 3.23 or greater, 4.0.20d or greater highly recommended for
       advanced features

     * PHP 4.1 or greater, 4.3.6 or greater highly recommended for advanced
       features

   Packages for RPM-based Operating Systems

     * httpd

     * php

     * php-mysql

     * php-snmp

     * mysql

     * mysql-server

     * net-snmp

   Ports for FreeBSD

     * www/apache2

     * net/rrdtool

     * net/net-snmp

     * www/php4-cgi

     * lang/php4 (With MySQL and SNMP Support)

     * databases/mysql323-server

Rendez-vous ici pour résoudre ton problème.

Merci ! j’ai fait la manip et et il m’a mi comme erreur que php n’arrivait pas à charger la librairie gd.
Je sais par où chercher maintenant!
@ +

Il faut peut-être l’installer ?! Tiens, regarde ici.

Non en fait j’ai trouvé !
Mon php.ini est installer dans /etc/php4/apache, mais il correspond au serveur apache-ssl et j’ai compilé apache normal avec php4 en statique et j’ai indiqué comme emplacemenet du php.ini dans le même emplacement que celui de apache-ssl et c là mon erreur !! car il charge pas la librairie puisqu’il est en statique, j’ai du recompiler apache et php4 en lui indiquant l’emplacement de php.ini par défaut (/usr/local/php4/etc/php.ini) et maintenant ça marche.
Merci pour ton attention @ bientôt