Config Apache/Sql

Config Apache/Sql - PHP - Programmation

Marsh Posté le 15-04-2003 à 08:48:33    

J'ai un ptit soucis.
Depuis le temps que j'ai pas reinstaller apache et sql j'ai un leger probleme :)
 
Voila j'ai crée un user sql (root) avec MDP.
j'ai mis le  
 

Code :
  1. $cfgServers[$i]['auth_type']     = 'config';


 
j'ai crée l'user avec le mdp.
Seulement maintenant que j'ai remis l'auth type en http et qu'il me propose d'entrer le mdp et l'user, plus rien ne fonctionne, jpeu meme pas acceder a myadmin :/
 
 

Code :
  1. $cfgServers[$i]['auth_type']     = 'http';    // Authentication method (config, http or cookie based)?
  2. $cfgServers[$i]['user']          = 'root';      // MySQL user
  3. $cfgServers[$i]['password']      = '';          // MySQL password (only needed
  4.                                                 // with 'config' auth_type)

 
 
En gros il me dit que cet user n'existe pas ou alros que le pass est mauvais  
 
merci de votre aide jme suis un peu perdu :) :(


Message édité par Profil supprimé le 15-04-2003 à 08:49:24
Reply

Marsh Posté le 15-04-2003 à 08:48:33   

Reply

Marsh Posté le 15-04-2003 à 08:57:14    

hum je croit avoir compris un peu.
En fait j'ai deux phpmyadmin  
un dans :

Code :
  1. E:/EasyPHP/phpmyadmin/


et l'autre dans

Code :
  1. E:/php/admin


 
Ou est ce que l'on peu donner le path pour mysqlMA dans la config?
 
 
 

Code :
  1. Alias /mysql/ "E:/EasyPHP/phpmyadmin/"
  2.     <Directory "E:/EasyPHP/phpmyadmin/">
  3.         Options FollowSymLinks Indexes
  4.         AllowOverride None
  5.         Order deny,allow
  6.         allow from 127.0.0.1
  7.         deny from all
  8.     </Directory>
  9.     Alias /home/ "E:/EasyPHP/home/"
  10.     <Directory "E:/EasyPHP/phpmyadmin/">
  11.         Options FollowSymLinks Indexes
  12.         AllowOverride None
  13.         Order deny,allow
  14.         allow from 127.0.0.1
  15.         deny from all
  16.     </Directory>

 
 
ya bien ca mais j'ai changer et ca change rien


Message édité par Profil supprimé le 15-04-2003 à 08:57:43
Reply

Marsh Posté le 15-04-2003 à 09:07:20    

en mode config j'ai bien acces au site et a la DB mais bon j'aimerai le proteger en specifiant le pass [:mlc]

Reply

Marsh Posté le 15-04-2003 à 09:20:07    

Autant pour moi j'ai trouvé dans les abime de mes bookmark
 
je met la soluce si yen a comme moi :)
 

Code :
  1. E:\EASYPHP\MYSQL\BIN>dir
  2. Le volume dans le lecteur E s'appelle WORK
  3. Le numéro de série du volume est 288C-9363
  4. Répertoire de E:\EASYPHP\MYSQL\BIN
  5. 15/04/2003  08:29       <DIR>          .
  6. 15/04/2003  08:29       <DIR>          ..
  7. 30/10/1998  03:07              669 150 cygwinb19.dll
  8. 22/02/2002  04:01              282 671 mysql.exe
  9. 22/02/2002  04:01              237 568 mysqladmin.exe
  10. 22/02/2002  04:25            2 002 944 mysqld-nt.exe
  11. 22/02/2002  04:29            1 998 848 mysqld.exe
  12. 22/02/2002  04:01              245 760 mysqldump.exe
  13.                6 fichier(s)        5 436 941 octets
  14.                2 Rép(s)     766 670 848 octets libres
  15. E:\EASYPHP\MYSQL\BIN>mysql -u root
  16. Welcome to the MySQL monitor.  Commands end with ; or \g.
  17. Your MySQL connection id is 361 to server version: 3.23.49-max-nt
  18. Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
  19. mysql> grant all privileges on *.* to root@localhost
  20.     -> identified by 'password' with grant option;
  21. Query OK, 0 rows affected (0.00 sec)
  22. mysql>


 :hello:  
 
par contre maintenant ya un autre problem  :heink:  
 
Je peu maintenant acceder a mon site sans problem par contre une fois l'auth authorisé dans phpmysqadmin si je click sur n'importe quel lien j'obtient :
 
 

Code :
  1. Warning: Cannot add header information - headers already sent by (output started at e:\easyphp\phpmyadmin\libraries\auth\config.auth.lib.php:91) in e:\easyphp\phpmyadmin\header.inc.php on line 23
  2. Warning: Cannot add header information - headers already sent by (output started at e:\easyphp\phpmyadmin\libraries\auth\config.auth.lib.php:91) in e:\easyphp\phpmyadmin\header.inc.php on line 24
  3. Warning: Cannot add header information - headers already sent by (output started at e:\easyphp\phpmyadmin\libraries\auth\config.auth.lib.php:91) in e:\easyphp\phpmyadmin\header.inc.php on line 25
  4. Warning: Cannot add header information - headers already sent by (output started at e:\easyphp\phpmyadmin\libraries\auth\config.auth.lib.php:91) in e:\easyphp\phpmyadmin\header.inc.php on line 26
  5. Warning: Cannot add header information - headers already sent by (output started at e:\easyphp\phpmyadmin\libraries\auth\config.auth.lib.php:91) in e:\easyphp\phpmyadmin\header.inc.php on line 27
  6. Warning: Cannot add header information - headers already sent by (output started at e:\easyphp\phpmyadmin\libraries\auth\config.auth.lib.php:91) in e:\easyphp\phpmyadmin\header.inc.php on line 29
  7. Error
  8. MySQL said:
  9. Accès refusé pour l'utilisateur: 'root@localhost' (mot de passe: NON)

 
 
ca vient d'ou tout ca?   [:tilleul]  
meme en mode config ca me le fait

Reply

Marsh Posté le 15-04-2003 à 10:11:46    

et si tu laissais tomber easyphp ?
passke installer apache,mysql et php, c'est pas sorcier.
j'ai utilisé ça pour chez moi :
http://www.phptools4u.com/articles [...] icle=3&p=1

Reply

Marsh Posté le 15-04-2003 à 15:52:11    

super merci :)

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed