j'ai essayé d'installer puntal sous easyPHP mais pendant l'installe, j'ai le message d'erreur suivant :
Notice: Constant PT_IN_PUNTAL already defined in c:\documents and settings\...\bureau\puntal\puntal\upload\puntal_config.php on line 33

Notice: Constant PUN_ROOT already defined in c:\documents and settings\...\bureau\puntal\puntal\upload\install\do\install_bdd.php on line 28

Warning: main(include/functions.php): failed to open stream: No such file or directory in c:\documents and settings\...\bureau\puntal\puntal\upload\install\do\install_bdd.php on line 32

Fatal error: main(): Failed opening required 'include/functions.php' (include_path='.;C:/Program Files/EasyPHP1-8\php\pear\') in c:\documents and settings\...\bureau\puntal\puntal\upload\install\do\install_bdd.php on line 32
=> que dois-je faire ?

voici ce que j'ai fais :
1- decompressé les fichiers sur mon bureau
2- renommer mes répertoires: tous mes fichiers de puntal sont dans ..../bureau/puntal/puntal
3- sous easyPHP, j'ai défini le repertoire .../bureau/puntal comme la racine de mon serveur
4- j'ai créé le dossier .../bureau/puntal/forums => j'ai copier à l'interrieur le fichier forums_path.php
5- j'ai lancer l'installe
6- au bout d'un moment, j'ai créer le fichier puntal_config.php que j'ai mis dans .../bureau/puntal/puntal/upload
7- après ça plante

contenu du fichier forums_path.php :
Code PHP : 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
28
29
30
31
32
33
34
35
<?php
 
// Chemin du repertoire racine des forums
// Path of the forums root dir
define('PUN_ROOT',
''
);
 
 
// Chemin du repertoire racine de puntal
// Path of the root dir of puntal
define('PUNTAL_ROOT',dirname(__FILE__));
 
 
// Nom du fichier index de Puntal
// Name of the Puntal index file
define('PT_INDEX_FILE',
'index.php'
);
 
// Nom du repertoire admin de Puntal
// Name of the Puntal admin dir
define('PT_ADMIN_DIR', 
'admin'
);
 
// Nom du repertoire public de Puntal
// Name of the Puntal public dir
define('PT_PUBLIC_DIR', 
'public'
);
 
define('PT_IN_PUNTAL', 1);
 
?>