Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
1715 connectés 

  FORUM HardWare.fr
  Windows & Software

  forum ubb plz help

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

forum ubb plz help

n°708255
Candyflipp​er
cherchez l'erreur...
Posté le 27-05-2002 à 19:28:10  profilanswer
 

j'essaie d'installer un forum ubb ,
 
mais kand je ve l'installer il me sort ca :  
 

Citation :


Warning: Failed opening 'includes/functions_selects.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 28
 
Warning: Unable to access ./includes/sql_parse.php in install.php on line 247
 
Warning: Failed opening './includes/sql_parse.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 247
 
Warning: Unable to access ./includes/constants.php in install.php on line 248
 
Warning: Failed opening './includes/constants.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 248
 
Warning: Unable to access ./includes/template.php in install.php on line 249
 
Warning: Failed opening './includes/template.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 249
 
Warning: Unable to access ./includes/functions.php in install.php on line 250
 
Warning: Failed opening './includes/functions.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 250
 
Warning: Unable to access ./includes/sessions.php in install.php on line 251
 
Warning: Failed opening './includes/sessions.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 251
 
Fatal error: Cannot instantiate non-existent class: template in install.php on line 259


 
 
 
jfe koi????
 
pourtant g bien tt respecte pour l'up   c chelou  :cry:


---------------
Voir un monde entier dans un grain de sable,
mood
Publicité
Posté le 27-05-2002 à 19:28:10  profilanswer
 

n°708259
Wanoo
Posté le 27-05-2002 à 19:29:35  profilanswer
 

montre nous ton fichier config.inc.php ou autre fichier de configuration.

n°708279
Candyflipp​er
cherchez l'erreur...
Posté le 27-05-2002 à 19:49:12  profilanswer
 

heu g extension.inc  

Citation :


<?php
/***************************************************************************  
 *                               extension.inc
 *                            -------------------                          
 *   begin                : Saturday, Feb 13, 2001  
 *   copyright            : (C) 2001 The phpBB Group        
 *   email                : support@phpbb.com                            
 *                                                          
 *   $Id: extension.inc,v 1.5 2002/04/04 11:52:50 psotfx Exp $
 *                                                            
 *  
 ***************************************************************************/  
 
if ( !defined('IN_PHPBB';) )
{
 die("Hacking attempt" );
}
 
//
// Change this if your extension is not .php!
//
$phpEx = "php";
 
$starttime = 0;
 
?>


 
 
 
config.php il est vide encore
 
g profile.php:

Citation :


<?php
/*************************************************
**************************
 *                                profile.php
 *                            -------------------
 *   begin                : Saturday, Feb 13, 2001
 *   copyright            : (C) 2001 The phpBB Group
 *   email                : support@phpbb.com
 *
 *   $Id: profile.php,v 1.193 2002/03/28 19:52:21 the_systech Exp $
 *
 *
 **************************************************
*************************/
 
/*************************************************
**************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 **************************************************
*************************/
 
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc';);
include($phpbb_root_path . 'common.'.$phpEx);
 
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_PROFILE);
init_userprefs($userdata);
//
// End session management
//
 
//
// Set default email variables
//
$script_name = preg_replace('/^\/?(.*?)\/?$/', '\1', trim($board_config['script_path']));
$script_name = ( $script_name != '' ) ? $script_name . '/profile.'.$phpEx : 'profile.'.$phpEx;
$server_name = trim($board_config['server_name']);
$server_protocol = ( $board_config['cookie_secure'] ) ? 'https://' : 'http://';
$server_port = ( $board_config['server_port'] <> 80 ) ? ':' . trim($board_config['server_port']) . '/' : '/';
 
$server_url = $server_protocol . $server_name . $server_port . $script_name;
 
// -----------------------
// Page specific functions
//
function gen_rand_string($hash)
{
 $chars = array( 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F', 'g', 'G', 'h', 'H', 'i', 'I', 'j', 'J',  'k', 'K', 'l', 'L', 'm', 'M', 'n', 'N', 'o', 'O', 'p', 'P', 'q', 'Q', 'r', 'R', 's', 'S', 't', 'T',  'u', 'U', 'v', 'V', 'w', 'W', 'x', 'X', 'y', 'Y', 'z', 'Z', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0';);
 
 $max_chars = count($chars) - 1;
 srand( (double) microtime()*1000000);
 
 $rand_str = '';
 for($i = 0; $i < 8; $i++)
 {
  $rand_str = ( $i == 0 ) ? $chars[rand(0, $max_chars)] : $rand_str . $chars[rand(0, $max_chars)];
 }
 
 return ( $hash ) ? md5($rand_str) : $rand_str;
}
//
// End page specific functions
// ---------------------------
 
//
// Start of program proper
//
if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
{
 $mode = ( isset($HTTP_GET_VARS['mode']) ) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode'];
 
 if ( $mode == 'viewprofile' )
 {
  include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx);
  exit;
 }
 else if ( $mode == 'editprofile' || $mode == 'register' )
 {
  if ( !$userdata['session_logged_in'] && $mode == 'editprofile' )
  {
   $header_location = ( @preg_match("/Microsoft|WebSTAR|Xitami/", getenv("SERVER_SOFTWARE" )) ) ? "Refresh: 0; URL=" : "Location: ";
   header($header_location . append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true));
   exit;
  }
 
  include($phpbb_root_path . 'includes/usercp_register.'.$phpEx);
  exit;
 }
 else if ( $mode == 'sendpassword' )
 {
  include($phpbb_root_path . 'includes/usercp_sendpasswd.'.$phpEx);
  exit;
 }
 else if ( $mode == 'activate' )
 {
  include($phpbb_root_path . 'includes/usercp_activate.'.$phpEx);
  exit;
 }
 else if ( $mode == 'email' )
 {
  include($phpbb_root_path . 'includes/usercp_email.'.$phpEx);
  exit;
 }
}
else
{
 $header_location = ( @preg_match("/Microsoft|WebSTAR|Xitami/", getenv("SERVER_SOFTWARE" )) ) ? "Refresh: 0; URL=" : "Location: ";
 header($header_location . append_sid("index.$phpEx", true));
 exit;
}
 
?>


 
g login.php mais il va pas t'interesser je pense
 
 

Citation :


<?php
/*************************************************
**************************
 *                                login.php
 *                            -------------------
 *   begin                : Saturday, Feb 13, 2001
 *   copyright            : (C) 2001 The phpBB Group
 *   email                : support@phpbb.com
 *
 *   $Id: login.php,v 1.47.2.1 2002/05/13 13:18:17 psotfx Exp $
 *
 *
 **************************************************
*************************/
 
/*************************************************
**************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 ***************************************************************************/
 
//
// Allow people to reach login page if
// board is shut down
//
define("IN_LOGIN", true);
 
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc';);
include($phpbb_root_path . 'common.'.$phpEx);
 
//
// Set page ID for session management
//
$userdata = session_pagestart($user_ip, PAGE_LOGIN);
init_userprefs($userdata);
//
// End session management
//
 
$header_location = ( @preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE';)) ) ? 'Refresh: 0; URL=' : 'Location: ';
 
if( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) || isset($HTTP_POST_VARS['logout']) || isset($HTTP_GET_VARS['logout']) )
{
 //
 // This appears to work for IIS5 CGI under Win2K. Uses getenv
 // since this doesn't exist for ISAPI mode and therefore the  
 // normal Location redirector is used in preference
 //
 if( ( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) ) && !$userdata['session_logged_in'] )
 {
  $username = isset($HTTP_POST_VARS['username']) ? $HTTP_POST_VARS['username'] : '';
  $password = isset($HTTP_POST_VARS['password']) ? $HTTP_POST_VARS['password'] : '';
 
  $sql = "SELECT user_id, username, user_password, user_active, user_level  
   FROM " . USERS_TABLE . "
   WHERE username = '" . str_replace("\'", "''", $username) . "'";
  if ( !($result = $db->sql_query($sql)) )
  {
   message_die(GENERAL_ERROR, 'Error in obtaining userdata', '', __LINE__, __FILE__, $sql);
  }
 
  if( $row = $db->sql_fetchrow($result) )
  {
   if( $row['user_level'] != ADMIN && $board_config['board_disable'] )
   {
    header($header_location . append_sid("index.$phpEx", true));
    exit;
   }
   else
   {
    if( md5($password) == $row['user_password'] && $row['user_active'] )
    {
     $autologin = ( isset($HTTP_POST_VARS['autologin']) ) ? TRUE : 0;
 
     $session_id = session_begin($row['user_id'], $user_ip, PAGE_INDEX, FALSE, $autologin);
 
     if( $session_id )
     {
      if( !empty($HTTP_POST_VARS['redirect']) )
      {
       header($header_location . append_sid($HTTP_POST_VARS['redirect'], true));
       exit;
      }
      else
      {
       header($header_location . append_sid("index.$phpEx", true));
       exit;
      }
     }
     else
     {
      message_die(CRITICAL_ERROR, "Couldn't start session : login", "", __LINE__, __FILE__);
     }
    }
    else
    {
     $redirect = ( !empty($HTTP_POST_VARS['redirect']) ) ? $HTTP_POST_VARS['redirect'] : '';
 
     $template->assign_vars(array(
      'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("login.$phpEx?redirect=$redirect" ) . '">';)
     );
 
     $message = $lang['Error_login'] . '<br /><br />' . sprintf($lang['Click_return_login'], '<a href="' . append_sid("login.$phpEx?redirect=$redirect" ) . '">', '</a>';) . '<br /><br />' .  sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx" ) . '">', '</a>';);
 
     message_die(GENERAL_MESSAGE, $message);
    }
   }
  }
  else
  {
   $redirect = ( !empty($HTTP_POST_VARS['redirect']) ) ? $HTTP_POST_VARS['redirect'] : "";
 
   $template->assign_vars(array(
    'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("login.$phpEx?redirect=$redirect" ) . '">';)
   );
 
   $message = $lang['Error_login'] . '<br /><br />' . sprintf($lang['Click_return_login'], '<a href="' . append_sid("login.$phpEx?redirect=$redirect" ) . '">', '</a>';) . '<br /><br />' .  sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx" ) . '">', '</a>';);
 
   message_die(GENERAL_MESSAGE, $message);
  }
 }
 else if( ( isset($HTTP_GET_VARS['logout']) || isset($HTTP_POST_VARS['logout']) ) && $userdata['session_logged_in'] )
 {
  if( $userdata['session_logged_in'] )
  {
   session_end($userdata['session_id'], $userdata['user_id']);
  }
 
  if( !empty($HTTP_POST_VARS['redirect']) )
  {
   header($header_location . append_sid($HTTP_POST_VARS['redirect'], true));
   exit;
  }
  else
  {
   header($header_location . append_sid("index.$phpEx", true));
   exit;
  }
 }
 else
 {
  if( !empty($HTTP_POST_VARS['redirect']) )
  {
   header($header_location . append_sid($HTTP_POST_VARS['redirect'], true));
   exit;
  }
  else
  {
   header($header_location . append_sid("index.$phpEx", true));
   exit;
  }
 }
}
else
{
 //
 // Do a full login page dohickey if
 // user not already logged in
 //
 if( !$userdata['session_logged_in'] )
 {
  $page_title = $lang['Login'];
  include($phpbb_root_path . 'includes/page_header.'.$phpEx);
 
  $template->set_filenames(array(
   'body' => 'login_body.tpl';)
  );
 
  if( isset($HTTP_POST_VARS['redirect']) || isset($HTTP_GET_VARS['redirect']) )
  {
   $forward_to = $HTTP_SERVER_VARS['QUERY_STRING'];
 
   if( preg_match("/^redirect=(.*)$/si", $forward_to, $forward_matches) )
   {
    $forward_to = ( !empty($forward_matches[3]) ) ? $forward_matches[3] : $forward_matches[1];
 
    $forward_match = explode('&', $forward_to);
 
    if(count($forward_match) > 1)
    {
     $forward_page = '';
 
     for($i = 1; $i < count($forward_match); $i++)
     {
      if( !ereg("sid=", $forward_match[$i]) )
      {
       if( $forward_page != '' )
       {
        $forward_page .= '&';
       }
       $forward_page .= $forward_match[$i];
      }
     }
 
     $forward_page = $forward_match[0] . '?' . $forward_page;
    }
    else
    {
     $forward_page = $forward_match[0];
    }
   }
  }
  else
  {
   $forward_page = '';
  }
 
  $username = ( $userdata['user_id'] != ANONYMOUS ) ? $userdata['username'] : '';
 
  $s_hidden_fields = '<input type="hidden" name="redirect" value="' . $forward_page . '" />';
 
  make_jumpbox('viewforum.'.$phpEx, $forum_id);
  $template->assign_vars(array(
   'USERNAME' => $username,
 
   'L_ENTER_PASSWORD' => $lang['Enter_password'],  
   'L_SEND_PASSWORD' => $lang['Forgotten_password'],
 
   'U_SEND_PASSWORD' => append_sid("profile.$phpEx?mode=sendpassword" ),  
   
   'S_HIDDEN_FIELDS' => $s_hidden_fields)
  );
 
  $template->pparse('body';);
 
  include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
 }
 else
 {
  header($header_location . append_sid("index.$phpEx", true));
  exit;
 }
 
}
 
?>


 
 
 
g pas d'autres trucs de config dans le root,  ptet install.php mais il est grave long
 
 
ca pe pas etre un truc de genre fallait tout convertir en .php3 ou un truc du style??
 
 
en tt cas merci  :D


---------------
Voir un monde entier dans un grain de sable,
n°708292
Candyflipp​er
cherchez l&#039;erreur...
Posté le 27-05-2002 à 20:03:04  profilanswer
 

bon j'avance si on veut
 
g now ca comme message :
 

Citation :


Warning: Failed opening 'includes/functions_selects.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 28
 
Warning: Unable to access ./includes/sql_parse.php in install.php on line 247
 
Warning: Failed opening './includes/sql_parse.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 247
 
Warning: Unable to access ./includes/constants.php in install.php on line 248
 
Warning: Failed opening './includes/constants.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 248
 
Warning: Unable to access ./includes/template.php in install.php on line 249
 
Warning: Failed opening './includes/template.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 249
 
Warning: Unable to access ./includes/functions.php in install.php on line 250
 
Warning: Failed opening './includes/functions.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 250
 
Warning: Unable to access ./includes/sessions.php in install.php on line 251
 
Warning: Failed opening './includes/sessions.php' for inclusion (include_path='.:/data/apache/php/mmp_lib';) in install.php on line 251
 
Fatal error: Cannot instantiate non-existent class: template in install.php on line 259


---------------
Voir un monde entier dans un grain de sable,

Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Windows & Software

  forum ubb plz help

 

Sujets relatifs
[help please] un bug de merde qui me brouteHELP Pour photoshop 5 merci porblème erreur de disque urgent!!!!!!!
please help me ......................... résiliation AOL au secoursHELP connexion réseau
[HELP] Winroute Bloke toutes mes conexion (FTP) [HELP]Plize help partage de connexion pour win 2000
Forum illisible(jeux de caractères tout petit) helpHELP ! Comment installer un forum php ?
[HELP] Avis à tout les pros de ce forum (ADSL + USB > pbs :( ) 
Plus de sujets relatifs à : forum ubb plz help


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR