PDA

Vollständige Version anzeigen : cloud not find phrase done


Comet
29-07-2004, 14:51
und mal wieder n problem bzw ne frage. warum wird, wenn ich jemanden für unser claninternes freischalte, diese zwar erfolgreich durchgeführt, mir aber eine meldung "could not find phrase done" oder so ähnlich angezeigt wird, klärt mich mal ein admin (sven?) auf ;D


diesmal das richtige forum? :twink:

Sven
29-07-2004, 15:17
Ja, richtiges Forum....
Bitte mal, wenn's geht, die komplette Fehlermeldung, besser sogar noch den Quelltext der Seite posten.

feuerreal
29-07-2004, 15:37
cloud not find phrase done

Das ist die komplette "Fehlermeldung". Unter ihr, befindet sich noch der Textlink "wenn der Browser keine Weiterleitung unterstützt, hier klicken".

Aber außer dieser Meldung ist alles ok und funktioniert auch in Sachen Gruppen beitreten.

PS: Den Quelltext bekam ich net, weil ich schon weiter geleitet wurde, bevor ich ihn kopierte.

Greetz Grey

Comet
29-07-2004, 17:08
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" lang="de-DE">
<head>
<title>CnC Foren</title>


<script language="JavaScript">
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

<script type="text/javascript">
<!--
function exec_refresh()
{
window.status = "Weiterleiten..." + myvar;
myvar = myvar + " .";
var timerID = setTimeout("exec_refresh();", 100);
if (timeout > 0)
{
timeout -= 1;
}
else
{
clearTimeout(timerID);
window.status = "";
window.location = "index.php";
}
}

var myvar = "";
var timeout = 20;
exec_refresh();
//-->
</script>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="generator" content="vBulletin 3.0.1" />
<meta name="keywords" content="command, conquer, red, alert, yuri, generals, zeor, hour, renegade, tiberium, tiberian, sun, dawn, nod, gdi" />

<meta name="description" content="This is a discussion forum powered by vBulletin. To find out about vBulletin, go to http://www.vbulletin.com/ ." />

<!-- CSS Stylesheet -->
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style-b7433eaf-00058.css" />

<!-- / CSS Stylesheet -->

<script type="text/javascript">
<!--
var SESSIONURL = "";
var IMGDIR_MISC = "images/standard/misc";
// -->
</script>

<script type="text/javascript" src="clientscript/vbulletin_global.js"></script>
<script type="text/javascript" src="clientscript/vbulletin_menu.js"></script>

<script language="javascript">
function countdown( date, rndNum, outtext ) {
now = new Date();
y2k = new Date( date );
days = (y2k - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (y2k - now) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (y2k - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (y2k - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
if ((days < 0) | (hours < 0) | (minutes < 0) | (seconds < 0)) {
thisoutput = outtext;
if (thisoutput == "") thisoutput = "Countdown Finished";
} else {
sec = (secondsRound == 1) ? " second." : " seconds.";
min = (minutesRound == 1) ? " minute, " : " minutes, ";
hr = (hoursRound == 1) ? " hour, " : " hours, ";
dy = (daysRound == 1) ? " day, " : " days, ";
thisoutput = daysRound + dy + hoursRound + hr + minutesRound + min + secondsRound + sec;
}
eval("document.forms.form" + rndNum + ".elements.countdown.value = thisoutput;");
thisclock = "countdown(\""+date+"\",\""+rndNum+"\",\""+outtext+"\");";
window.setTimeout(thisclock, 1000);
}

function countup( date, rndNum, outtext ) {
now = new Date();
y2k = new Date( date );
days = (now - y2k) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (now - y2k) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (now - y2k) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (now - y2k) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
if ((days < 0) | (hours < 0) | (minutes < 0) | (seconds < 0)) {
thisoutput = outtext;
} else {
sec = (secondsRound == 1) ? " second." : " seconds.";
min = (minutesRound == 1) ? " minute, " : " minutes, ";
hr = (hoursRound == 1) ? " hour, " : " hours, ";
dy = (daysRound == 1) ? " day, " : " days, ";
thisoutput = daysRound + dy + hoursRound + hr + minutesRound + min + secondsRound + sec;
}
eval("document.forms.form" + rndNum + ".elements.countup.value = thisoutput;");
thisclock = "countup(\""+date+"\",\""+rndNum+"\",\""+outtext+"\");";
window.setTimeout(thisclock, 1000);
}

function explodeArray(item,delimiter) {
tempArray=new Array(1);
var Count=0;
var tempString=new String(item);

while (tempString.indexOf(delimiter)>0) {
tempArray[Count]=tempString.substr(0,tempString.indexOf(delimiter));
tempString=tempString.substr(tempString.indexOf(delimiter)+1,tempString.length-tempString.indexOf(delimiter)+1);
Count=Count+1
}

tempArray[Count]=tempString;
return tempArray;
}

</script>

</head>
<body>

<br />
<br />
<br />
<br />

<form action="index.php" method="get">
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="70%" align="center">
<tr>
<td class="tcat">Weiterleiten...</td>
</tr>
<tr>
<td class="panelsurround" align="center">

<div class="panel">

<blockquote>
<p>&nbsp;</p>
<p><strong>Could not find phrase 'done'.</strong></p>
<p class="smallfont"><a href="index.php">Klicke hier wenn dein Browser dich nicht automatisch weiterleitet.</a></p>
<div>&nbsp;</div>
</blockquote>

</div>


<script type="text/javascript">
<!--
document.write('<div style="margin-top:6px">');
document.write('<input type="submit" class="button" value="Fortfahren" accesskey="s" onclick="window.location=\'index.php\'; return false" />');
document.write('</div>');
//-->
</script>
</td>
</tr>
</table>
</form>









</body>
</html>
<script language="JavaScript">
<!--
var SymRealOnLoad;
var SymRealOnUnload;

function SymOnUnload()
{
window.open = SymWinOpen;
if(SymRealOnUnload != null)
SymRealOnUnload();
}

function SymOnLoad()
{
if(SymRealOnLoad != null)
SymRealOnLoad();
window.open = SymRealWinOpen;
SymRealOnUnload = window.onunload;
window.onunload = SymOnUnload;
}

SymRealOnLoad = window.onload;
window.onload = SymOnLoad;

//-->
</script>


so dank der hilfe von august wars mir möglich den code einzufangen^^ hoffe es hilft ;)

Sven
30-07-2004, 09:52
Danke ;)

Ich hab mal eine neue 'Phrase' mit dem Namen 'Done' erstellt, wenn alles richtig war sollte jetzt stattdessen das Wort 'Fertig' erscheinen.

Comet
30-07-2004, 09:55
mist, jetzt is kein august da zum testen *sfg* aber saubere arbeit :thx: