Fout

Installatie lukt niet? Plotseling een foutmelding. Of weet je niet hoe iets werkt. Problemen met phpBB2 kun je in dit archief opzoeken.
Forumregels

Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
phpBB2.0.x
Gesloten
Stephan1
Berichten: 5
Lid geworden op: 23 apr 2003, 19:15
Contacteer:

Fout

Bericht door Stephan1 » 24 apr 2003, 16:28

Ik heb wee hulp nodig
ik krijg een fout
Parse error: parse error in install.php on line 293
Ik weet dat het een typfout is maar ik kan het niet vinden
Trouwens dit is het bestandje install.php van PHPBB

dit is het stukje script
}
//
// FUNCTIONS
// ---------

// Begin
error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
set_magic_quotes_runtime(0); // Disable magic_quotes_runtime

// Slash data if it isn't slashed
if (!get_magic_quotes_gpc())
{
if (is_array($HTTP_GET_VARS))
{
while (list($k, $v) = each($HTTP_GET_VARS))
{
if (is_array($HTTP_GET_VARS[$k]))
{
while (list($k2, $v2) = each($HTTP_GET_VARS[$k]))
{
$HTTP_GET_VARS[$k][$k2] = addslashes($v2);
}
@reset($HTTP_GET_VARS[$k]);
}
else
{
$HTTP_GET_VARS[$k] = addslashes($v);
}
}
@reset($HTTP_GET_VARS);
}

if (is_array($HTTP_POST_VARS))
{
while (list($k, $v) = each($HTTP_POST_VARS))
{
if (is_array($HTTP_POST_VARS[$k]))
{
while (list($k2, $v2) = each($HTTP_POST_VARS[$k]))
{
$HTTP_POST_VARS[$k][$k2] = addslashes($v2);
}
@reset($HTTP_POST_VARS[$k]);
}
else
{
$HTTP_POST_VARS[$k] = addslashes($v);
}
}
@reset($HTTP_POST_VARS);
}

if (is_array($HTTP_COOKIE_VARS))
{
while (list($k, $v) = each($HTTP_COOKIE_VARS))
{
if (is_array($HTTP_COOKIE_VARS[$k]))
{
while (list($k2, $v2) = each($HTTP_COOKIE_VARS[$k]))
{
$HTTP_COOKIE_VARS[$k][$k2] = addslashes($v2)';
}
@reset($HTTP_COOKIE_VARS[$k]);
}
else
{
$HTTP_COOKIE_VARS[$k] = addslashes($v);
}
}
@reset($HTTP_COOKIE_VARS);
}
}

// Begin main prog
regel 293 define('IN_PHPBB', true)';
// Uncomment the following line to completely disable the ftp option...
// define('NO_FTP', true);
$phpbb_root_path = './../';
include($phpbb_root_path.'extension.inc');

// Initialise some basic arrays
$userdata = array();
$lang = array();
$error = false;

Dit is trouwens regel 219 totemet 302

topslob
Berichten: 233
Lid geworden op: 24 jan 2003, 13:00

Bericht door topslob » 24 apr 2003, 17:16

Zit je database mischien helemaal vol, heb je die niet goed leegemaakt toen je jouw phpbb opnieuw wou installeeren

Stephan1
Berichten: 5
Lid geworden op: 23 apr 2003, 19:15
Contacteer:

Bericht door Stephan1 » 24 apr 2003, 17:52

Ik heb hem helemaal leegemaakt maar dan krijg ik een Melding van
Forumstephan2-nl-db,php,users doesn't exist
Ik ben hem nou helemaal opnieuw aan het installeren misschien dat dat lukt

topslob
Berichten: 233
Lid geworden op: 24 jan 2003, 13:00

Bericht door topslob » 25 apr 2003, 12:49

Zit je bij lycos want dan moet het niet dit zijn

Code: Selecteer alles

Forumstephan2-nl-db
maar

Code: Selecteer alles

Forumstephan2_nl_db
8)

Gesloten