Je vais de terminer hier tard l'installation sur mes 2 PC's de la même config =>
APACHE.2.2.15 - PHP5.3.2 - MYsql 5.5.3 et PMA 3.3.2 non sans mal...

Je souhaiterai malgré les inconvénients de rapidité passer en innoDB et j'ai donc essaye d'installer les tables en conséquences... mais...
Voici ce que me raconte PMA....


Connection for controluser as defined in your configuration failed.

mon config.php.inc est le suivant:

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
76
77
78
79
80
81
<?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'] = 'a1z12e3r2t1y24u1i4i1o41p414^14sfdsf2fdsfzd454'; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
//                         ====+====1====+====2====+====3====+====4====+====4====+===="
//fg['blowfish_secret'] = 'alkdlfgdfkgkjzkjrqmdaadlkkfsfsfsk';

/*
 * Servers configuration
 */
$i = 0;

/*
 * First server
 */
$i++;

/* Authentication type */
$cfg['Servers'][$i]['auth_type'] 				= 'cookie';

/* Server parameters */
$cfg['Servers'][$i]['host'] 					= 'jecrapahute';
$cfg['Servers'][$i]['connect_type'] 			= 'tcp';
$cfg['Servers'][$i]['compress'] 				= false;

$cfg['Servers'][$i]['user']         		 	= 'root';
$cfg['Servers'][$i]['password']      			= '*********' ;

/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] 				= 'mysqli';

/* 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';

/* 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';

$cfg['ExecTimeLimit']                           = 0 ; // Unlimited

/* 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'] = '';

?>
Si j'en crois le message PMA, il fait référence à la ligne en bold, surlignée de mon fichier config, non ?
J'ai un hébergement mono DB, en local une autre DB 'phpmyadmin' est définie... cela pose t'il un problème ?

D'un autre coté, j'ai en début de PMA les recommendations suivantes:

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
$cfg['Servers'][$i]['pmadb'] ... 	OK
$cfg['Servers'][$i]['relation'] ... 	not OK [ Documentation ]
General relation features: Disabled
 
$cfg['Servers'][$i]['table_info'] ... 	not OK [ Documentation ]
Display Features: Disabled
 
$cfg['Servers'][$i]['table_coords'] ... 	not OK [ Documentation ]
$cfg['Servers'][$i]['pdf_pages'] ... 	not OK [ Documentation ]
Creation of PDFs: Disabled
 
$cfg['Servers'][$i]['column_info'] ... 	not OK [ Documentation ]
Displaying Column Comments: Disabled
Browser transformation: Disabled
 
$cfg['Servers'][$i]['bookmarktable'] ... 	not OK [ Documentation ]
Bookmarked SQL query: Disabled
 
$cfg['Servers'][$i]['history'] ... 	not OK [ Documentation ]
SQL history: Disabled
 
$cfg['Servers'][$i]['designer_coords'] ... 	not OK [ Documentation ]
Designer: Disabled
 
$cfg['Servers'][$i]['tracking'] ... 	not OK [ Documentation ]
Tracking: Disabled
Je n'ai pas trouvé de tuto sur le site pour m'aider....
S'il existe, peut'on me passer l'info.... gracias !

Merci à tous.

Esteban