Pages : 1
#0 Re : -1 » Installation Ubuntu 12.04 (EFI) » Le 12/11/2012, à 11:17
- phpmyadmin
- Réponses : 30
j'ai un problème dans mon phpmyadmin:
j'ai installé apache2 en fastcgi et php5-fpm
quand j'ai installé phpmyadmin je n'arrive pas à y accéder voilà l'erreur qui est affichée "The requested URL /php5-fcgi//phpmyadmin/index.php was not found on this server." je ne sais pas comment configurer mon phpmyadmin de sorte qu'il fonctionne sous php5-fpm.
aidez moi SVP.
#1 -1 » messages d'erreur phpmyadmin » Le 14/11/2012, à 14:20
- phpmyadmin
- Réponses : 6
quand j'accède à phpmyadmin http:/@ip/phpmyadmin
Dans la page d’accueil j’ai un message en jaune : « Certaines fonctionnalités ayant trait aux tables reliées sont désactivées. Pour une analyse du problème, cliquez ici. »
quand je clique sur le lien, j'ai cette page
localhost
$cfg['Servers'][$i]['pmadb'] ... en erreur [ Documentation ]
$cfg['Servers'][$i]['relation'] ... en erreur [ Documentation ]
Fonctions relationnelles: désactivé
$cfg['Servers'][$i]['table_info'] ... en erreur [ Documentation ]
Affichage infobulle: désactivé
$cfg['Servers'][$i]['table_coords'] ... en erreur [ Documentation ]
$cfg['Servers'][$i]['pdf_pages'] ... en erreur [ Documentation ]
Génération de schémas en PDF: désactivé
$cfg['Servers'][$i]['column_info'] ... en erreur [ Documentation ]
Commentaires de colonnes: désactivé
Transformation: désactivé
$cfg['Servers'][$i]['bookmarktable'] ... en erreur [ Documentation ]
Requêtes en signets: désactivé
$cfg['Servers'][$i]['history'] ... en erreur [ Documentation ]
Historique SQL: désactivé
$cfg['Servers'][$i]['designer_coords'] ... en erreur [ Documentation ]
Concepteur: désactivé
$cfg['Servers'][$i]['tracking'] ... en erreur [ Documentation ]
Suivi: désactivé
quelqu'un peut m'aider svp
#2 Re : -1 » messages d'erreur phpmyadmin » Le 14/11/2012, à 14:56
- phpmyadmin
- Réponses : 6
qu'est ce que je dois décommenter dans /etc/phpmyadmin/config.inc.php ?
#3 Re : -1 » messages d'erreur phpmyadmin » Le 14/11/2012, à 15:30
- phpmyadmin
- Réponses : 6
merci pour ta réponse, d'aprés ta réponse je comprends que ça me pose pas de problèmes au niveau des tables que je vais importer?
moi aussi je suis sous debian
#4 Re : -1 » messages d'erreur phpmyadmin » Le 14/11/2012, à 15:37
- phpmyadmin
- Réponses : 6
La base de données phpmyadmin n’était pas créée au moment de l’installation (je l’ai crée manuellement en l’important de /usr/share/doc/phpmyadmin/examples/create_tables.sql.gz mais ce qui est bizarre est que les lignes que tu viens de m’envoyer sont pas commentées dans mon fichier, voila ce qui j’ai dans mon fichier :
/**
* Server(s) configuration
*/
$i = 0;
// The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0].
// You can disable a server config entry by setting host to ''.
$i++;
/**
* Read configuration from dbconfig-common
* You can regenerate it using: dpkg-reconfigure -plow phpmyadmin
*/
if (is_readable('/etc/phpmyadmin/config-db.php')) {
require('/etc/phpmyadmin/config-db.php');
}
/* Configure according to dbconfig-common if enabled */
if (!empty($dbname)) {
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
if (empty($dbserver)) $dbserver = 'localhost';
$cfg['Servers'][$i]['host'] = $dbserver;
if (!empty($dbport)) {
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['port'] = $dbport;
}
//$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysqli';
/* Optional: User for advanced features */
$cfg['Servers'][$i]['controluser'] = $dbuser;
$cfg['Servers'][$i]['controlpass'] = $dbpass;
/* Optional: Advanced phpMyAdmin features */
$cfg['Servers'][$i]['pmadb'] = $dbname;
$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['Servers'][$i]['tracking'] = 'pma_tracking';
/* Uncomment the following to enable logging in to passwordless accounts,
* after taking note of the associated security risks. */
// $cfg['Servers'][$i]['AllowNoPassword'] = TRUE;
/* Advance to next server for rest of config */
$i++;
}
/* Authentication type */
//$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
//$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';
/* Optional: User for advanced features */
// $cfg['Servers'][$i]['controluser'] = 'pma';
// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
/* Optional: 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';
/* Uncomment the following to enable logging in to passwordless accounts,
* after taking note of the associated security risks. */
// $cfg['Servers'][$i]['AllowNoPassword'] = TRUE;
/*
* End of servers configuration
*/
/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
Je ne sais qu’est ce que je dois décommenter dans tout ça.
#5 -1 » problème de phpmyadmin » Le 12/11/2012, à 12:23
- phpmyadmin
- Réponses : 4
j'ai un problème dans mon phpmyadmin:
j'ai installé apache2 en fastcgi et php5-fpm
quand j'ai installé phpmyadmin je n'arrive pas à y accéder voilà l'erreur qui est affichée "The requested URL /php5-fcgi//phpmyadmin/index.php was not found on this server." je ne sais pas comment configurer mon phpmyadmin de sorte qu'il fonctionne sous php5-fpm.
aidez moi SVP.
#6 Re : -1 » problème de phpmyadmin » Le 13/11/2012, à 12:38
- phpmyadmin
- Réponses : 4
merci pour ta réponse, j'ai bien vérifié je ne sais pas ce qui manque voila mon fichier : # phpMyAdmin default Apache configuration
Alias /phpmyadmin /usr/share/phpmyadmin
#Alias /php5-fcgi//phpmyadmin /usr/share/phpmyadmin
<Directory /usr/share/phpmyadmin>
Options FollowSymLinks
DirectoryIndex index.php
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .
</IfModule>
</Directory>
# Authorize for setup
<Directory /usr/share/phpmyadmin/setup>
<IfModule mod_authn_file.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup
</IfModule>
Require valid-user
</Directory>
# Disallow web access to directories that don't need it
<Directory /usr/share/phpmyadmin/libraries>
Order Deny,Allow
Deny from All
</Directory>
<Directory /usr/share/phpmyadmin/setup/lib>
Order Deny,Allow
Deny from All
</Directory>
Pages : 1
