Bonjour à tous,
j'ai parcouru le forum pour installer la bibliothèque PEAR en local mais je n'y arrive toujours pas.
j'utilise wamp.
j'ai créer un dossier dans le répertoire www ou j'ai copier le code de cette adresse : http://pear.php.net/go-pear dans un fichier, j'ai lancé se fichier sur mon navigateur.
une fois l'installation finit, j'ai plein de lignes :
Code : Sélectionner tout - Visualiser dans une fenêtre à part Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\wamp\www\Test_Pear\PEAR\PEAR\Registry.php on line 1183
j'aimerais déjà savoir si c'est normal...je dois avoir une bonne trentaine de Deprecated.
Il me marque quand même : Installation Completed !
Apres je vais voir dans mon dossier et j'ai un fichier index, je le lance sous le naviguateur et il me met des erreurs:
y'en a plusieurs
Code : Sélectionner tout - Visualiser dans une fenêtre à part Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\Test_Pear\PEAR\PEAR\Config.php on line 650
puis
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2 Warning: Can not find config file, please specify the $pear_user_config variable in /test_pear/index.php Error: the template directory (C:\php5\pear\data\PEAR_Frontend_Web\data\templates) is not a directory, or not readable. Make sure the 'data_dir' of your config file (C:\php5\pear\data) points to the correct location !
voilà ou j'en suis, et je ne trouve aucune aide pour continuer...
à quoi correspond le code installer dans l'index, y a t-il du codes à changer..?
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
28
29
30
31
32 <?php /** * Put this file in a web-accessible directory as index.php (or similar) * and point your webbrowser to it. */ // $pear_dir must point to a valid PEAR install (=contains PEAR.php) $pear_dir = 'C:\wamp\www\Test_Pear\PEAR'; // default of install // OPTIONAL: If you have a config file at a non-standard location, // uncomment and supply it here: //$pear_user_config = ''; // OPTIONAL: If you have protected this webfrontend with a password in a // custom way, then uncomment to disable the 'not protected' warning: //$pear_frontweb_protected = true; /*********************************************************** * Following code tests $pear_dir and loads the webfrontend: */ if (!file_exists($pear_dir.'\PEAR.php')) { trigger_error('No PEAR.php in supplied PEAR directory: '.$pear_dir, E_USER_ERROR); } ini_set('include_path', $pear_dir); require_once('PEAR.php'); // Include WebInstaller putenv('PHP_PEAR_INSTALL_DIR='.$pear_dir); // needed if unexisting config require_once('pearfrontendweb.php'); ?>
Merci !
Partager