Bonjour,
Voilà je débute en xtml,php et mysql etc ..
J'utilise linux (slackware) comme système
j'ai installé PhpMyAdmin et lorsque je le démarre voici ce que j'obtiens http://imagebin.ca/view/KdguvV.html
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
PHP ne peut charger l'extension mcrypt, 
veuillez vérifier votre configuration de PHP
Donc j'ai bel et bien installé libmcrypt et mcrypt aussi !
Mais il se trouve que mon php n'a pas été compilé avec l'option
Code : Sélectionner tout - Visualiser dans une fenêtre à part
 --with-mcrypt=shared,/usr/bin
donc, il se trouve que que je dois recompiler la source avec cette option en plus
En cela, je me demande juste si ce n'est pas possible d'activer cette option sans recompiler php, car lorsque je compile la source, j'ai une erreur avec imaps,
Par ailleurs, mon phpadmin se connecte sans mot de passe, si j'en met un j'obtiens un acces denied !
si j'entre sans mot de passe, j'ai aucun privilège pour la création de base de données
http://img6.imageshack.us/img6/9963/capture2op5.png
voici mon config.inc.php pour phpmyadmin
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
 
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * phpMyAdmin sample configuration, you can use it as base for
 * manual configuration. For easier setup you can use setup/
 *
 * All directives are explained in Documentation.html and on phpMyAdmin
 * wiki <http://wiki.cihar.com>.
 *
 * @version $Id: config.sample.inc.php 11781 2008-11-06 05:29:28Z rajkissu $
 */
 
/*
 * This is needed for cookie based authentication to encrypt password in
 * cookie
 */
$cfg['blowfish_secret'] = 'tu_ne_trouveras_pas_mon_mot_de_passe'; /*YOU MUST FILL IN THIS FOR COOKIE AUTH! */
 
/*
 * Servers configuration
 */
$i = 0;
 
/*
 * First server
 */
$i++;
/* Authentication type */
/* Server parameters */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
//$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
 
/* rajk - for blobstreaming */
$cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
 
/* Ajouté par moi au cas où j'utilise authentification -> config */
//$cfg['Servers'][$i]['user']          = 'root';       
//$cfg['Servers'][$i]['password']      = 'ducon'; 
 
/* User for advanced features */
// $cfg['Servers'][$i]['controluser'] = 'pma';
// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
/* Advanced phpMyAdmin features */
// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
// $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
// $cfg['Servers'][$i]['relation'] = 'pma_relation';
// $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
// $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
// $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
// $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
// $cfg['Servers'][$i]['history'] = 'pma_history';
// $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
/* Contrib / Swekey authentication */
// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
 
/*
 * End of servers configuration
 */
 
/*
 * Directories for saving/loading files from server
 */
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
 
?>
J'espère que j'ai été assez clair, merci d'avance !