Thank you very much, but I helped it out without a mod already
For the other people who uses lycos too, this is what you have to do:
Download the index.php file on your hard disk and search for this code:
$dbcon = mysql_connect($db_server, $db_user, $db_passwd);
mysql_select_db($db_name);
And replace it with this:
$tempxyz = 0;
$dbcon = false;
while (tempxyz < 5 and !$dbcon) {
$dbcon = mysql_connect($db_server, $db_user, $db_passwd);
$tempxyz++;
}
mysql_select_db($db_name);
This was it for the index.php. Now download the subs.php file (found in /Sources/) and search for this:
function redirectexit (){
global $yySetLocation;
header("Location: ".str_replace(" ","%20",$yySetLocation));
obExit();
}
And replace with this:
function redirectexit (){
global $yySetLocation;
print <<<eot
<html>
<head>
<script language="JavaScript">
<!-- Begin
location.href="$yySetLocation"
// End -->
</script>
</head>
<title>YaBB Redirect</title>
</head>
<body>
Redirect naar $yySetLocation
<br>
Klik <a href="$yySetLocation">hier</a> als dit niet vanzelf gebeurd.
</body>
</html>
eot;
obExit();
}
It worked fine for me! (I use YaBBSE 1.5.1)
Thanks for all the help anyway!!!