[phpBB]Probleme de connection

Probleme de connection [phpBB] - Programmation

Marsh Posté le 01-06-2001 à 18:46:52    

Bonjour à vous
j'utilise le forum phpBB sur mon espace WEB spontacours (http://www.spontacours.com/forum)
Mais quand on s'enregistre, et ensuite, on mets : connection, on demande le login et le pass, mais quand on valide, ça mets : vous l'anez pas l'autorisation de voir la page.
On revient sur le forum, et on est connecté avec notre pseudo !
Alors, pourquoi ça marche pas ???? Allez les pros du phpBB ;)


---------------
http://www.spontanet.com le site pour les webmasters
Reply

Marsh Posté le 01-06-2001 à 18:46:52   

Reply

Marsh Posté le 03-06-2001 à 12:56:53    

up !  :hap:


---------------
http://www.spontanet.com le site pour les webmasters
Reply

Marsh Posté le 03-06-2001 à 14:27:19    

Regarde si dans le fichier de config ta bien mis la bonne adresse pour ton domaine dans la configuration des cookies.
$cookiedomain = "www.spontacours.com";
en tout cas moi ca me faisait un truc comme ca parce que javais oublier de le changer ....


---------------
#"What is real?  How do you define real?"
Reply

Marsh Posté le 03-06-2001 à 16:16:41    

YAAAIIIISSEEE !!!!
THX  :love:  :love:  :love:  :love:  :love:


---------------
http://www.spontanet.com le site pour les webmasters
Reply

Marsh Posté le 03-06-2001 à 16:53:05    

mais en fait, j'ai toujours un probleme !!!!!
je peux maintenant me connecter comme je veux avec le lien connection, mais il enregistre pas dans un cookie les parametres !!!!! ;(
Et pourtant, j'ai bien tout channger dans le fichier config.php ...  
 
mon fichier config.php

Code :
  1. <?php
  2. /***************************************************************************
  3.                           config.php  -  description
  4.                              -------------------
  5.     begin                : Sat June 17 2000
  6.     copyright            : (C) 2001 The phpBB Group
  7.   email                : support@phpbb.com
  8.     $Id: config.php,v 1.66 2001/04/25 04:32:15 thefinn Exp $
  9. ***************************************************************************/
  10. /***************************************************************************
  11. *
  12. *   This program is free software; you can redistribute it and/or modify
  13. *   it under the terms of the GNU General Public License as published by
  14. *   the Free Software Foundation; either version 2 of the License, orption) any later version.
  15. *
  16. ***************************************************************************/
  17. // This is the only setting you should need to change in this file.
  18. // You should set this to the web path to your phpBB installation.
  19. // For example, if you have phpBB installed in:
  20. // http://www.mysite.com/phpBB
  21. // Leave this setting EXACTLY how it is, you're done.
  22. // If you have phpBB installed in:
  23. // http://www.mysite.com/forums
  24. // Change this to:
  25. // $url_phpbb = "/forums";
  26. // Once this is set you should not need to modify anything else in this file.
  27. $url_phpbb = "/forum";
  28. // -- Edit the following ONLY if you cannot login and $url_phpbb is set correclty --
  29. // You shouldn't have to change any of these 5.
  30. $url_admin = "$url_phpbb/admin";
  31. $url_images = "$url_phpbb/images";
  32. $url_smiles = "$url_images/smiles";
  33. $url_phpbb_index = $url_phpbb . '/index.' . $phpEx;
  34. $url_admin_index = $url_admin . '/index.' . $phpEx;
  35. /* -- Cookie settings (lastvisit, userid) -- */
  36. // Most likely you can leave this be, however if you have problems
  37. // logging into the forum set this to your domain name, without
  38. // the http://
  39. // For example, if your forum is at http://www.mysite.com/phpBB then
  40. // set this value to
  41. // $cookiedomain = "www.mysite.com";
  42. $cookiedomain = "www.spontacours.com";
  43. // It should be safe to leave this alone as well. But if you do change it
  44. // make sure you don't set it to a variable already in use such as 'forum'.
  45. $cookiename = "phpBB";
  46. // It should be safe to leave these alone as well.
  47. $cookiepath = $url_phpbb;
  48. $cookiesecure = false;
  49. /* -- Cookie settings (sessions) -- */
  50. // This is the cookie name for the sessions cookie, you shouldn't have to change it
  51. $sesscookiename = "phpBBsession";
  52. // This is the number of seconds that a session lasts for, 3600 == 1 hour.
  53. // The session will exprire if the user dosan't view a page on the forum within
  54. // this amount of time.
  55. $sesscookietime = 3600;
  56. /**
  57. * This setting is only for people running Microsoft IIS.
  58. * If you're running IIS and your users cannot login using
  59. * the "login" link on the main page, but they CAN login
  60. * through other pages like preferences, then you should
  61. * change this setting to 1. Otherwise, leave at set
  62. * to 0, because this is an ugly hack around some IIS junk.
  63. */
  64. // Change to "define('USE_IIS_LOGIN_HACK', 1);" if you need to.
  65. define('USE_IIS_LOGIN_HACK', 1);
  66. /* Stuff for priv msgs - not in DB yet: */
  67. // Allow BBCode in private messages?
  68. $allow_pmsg_bbcode = 1;
  69. // Allow HTML in private message?
  70. $allow_pmsg_html = 0;
  71. /* -- You shouldn't have to change anything after this point */
  72. /* -- Cosmetic Settings -- */
  73. $FontColor = "#FFFFFF";
  74. $textcolorMessage = "#FFFFFF";  // Message Font Text Color
  75. $FontSizeMessage = "1";  // Message Font Text Size
  76. $FontFaceMessage = "Arial";  // Message Font Text Face
  77. /* -- Images -- */
  78. $reply_wquote_image = "$url_images/quote.gif";
  79. $folder_image = "$url_images/folder.gif";
  80. $hot_folder_image = "$url_images/hot_folder.gif";
  81. $newposts_image = "$url_images/red_folder.gif";
  82. $hot_newposts_image = "$url_images/hot_red_folder.gif";
  83. $posticon = "$url_images/posticon.gif";
  84. $edit_image = "$url_images/edit.gif";
  85. $profile_image = "$url_images/profile.gif";
  86. $email_image = "$url_images/email.gif";
  87. $locked_image = "$url_images/lock.gif";
  88. $locktopic_image = "$url_images/lock_topic.gif";
  89. $deltopic_image = "$url_images/del_topic.gif";
  90. $movetopic_image = "$url_images/move_topic.gif";
  91. $unlocktopic_image = "$url_images/unlock_topic.gif";
  92. $ip_image = "$url_images/ip_logged.gif";
  93. $www_image = "$url_images/www_icon.gif";
  94. $icq_add_image = "$url_images/icq_add.gif";
  95. $images_aim = "$url_images/aim.gif";
  96. $images_yim = "$url_images/yim.gif";
  97. $images_msnm = "$url_images/msnm.gif";


---------------
http://www.spontanet.com le site pour les webmasters
Reply

Marsh Posté le 04-06-2001 à 00:49:51    

Ouais ben moi aussi, ca me le fais !!!!!!!!!!!
 
Alors ke g deja rentrer la ligne de commande !!!!
 
Je sais plus koi faire !
 
PS : T'as koi comme connection ?

Reply

Marsh Posté le 04-06-2001 à 12:18:51    

j'ai une pauvre 56K avec comme providers : Wanadoo, Free, Worldonline ....
 
Mais ce probleme vien tdes cookies, je vois pas pk ça me fait ça !!!! en fait, au début, j'avais un probleme pour me logger, mais il suffit de changer la valeur à 1 pour le IIS_HACK
ensuite, je peux me connecter tranquille sur le forum, mais, car il y a un MAIS, quand je reviens sur le forum, il faut se reconnecter, il enregistre pas le cookie ! et ça, ça GALERE !!!  :fou:


---------------
http://www.spontanet.com le site pour les webmasters
Reply

Marsh Posté le 04-06-2001 à 13:52:13    

Moi aussi, g un probleme pour me loger, mais meme en changeant le 0 en 1,  ca change rien !

Reply

Marsh Posté le 04-06-2001 à 18:43:57    

UP  :hot:  :hot:  :hot:  :hot:  :hot:  :hot:


---------------
http://www.spontanet.com le site pour les webmasters
Reply

Sujets relatifs:

Leave a Replay

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