hallo
ich versuche nur mal testhalber vbulletin 2.2.9 lokal zu installieren.
php und mysql ist drauf und funktionieren sogar
die installation per skript läuft auch ohne probleme durch, aber wenn das bild zum ersten einloggen kommt habe ich folgende fehlermeldung:
Zitat:
Parse error in c:\apache\htdocs\board\upload\adminfunctions.php on line 297
Warning: Cannot add header information - headers already sent by (output startet at c:\apache\htdocs\board\upload\adminfunctions.php on line 297) in c:\apache\htdocs\board\upload\admin\functions.php an line 1537
|
ich hab mal den code rauskopiert, aber ich kann damit nichts anfangen :-(
Code:
// ###################### Start doformfooter #######################
function doformfooter($submitname="Submit",$resetname="Reset",$colspan=2,$goback="")
{
// closes the standard form table and makes a new one containing centred submit and reset buttons
global $tableadded;
echo iif($tableadded==1,"<tr id='submitrow'>\n<td colspan='$colspan' align='center'>","<p><center>");
echo "<p id='submitrow'><input type=\"submit\" value=\" $submitname \" accesskey=\"s\">\n";
if ($resetname!="")
{
echo "<input type=\"reset\" value=\" $resetname \">\n";
}
if ($goback!="")
{
echo "<input type=\"button\" value=\" $goback \" onclick=\"history.back(1)\">\n";
}
echo iif($tableadded==1,"</p></td>\n</tr>\n</table>\n</td>\n</tr>\n</table>\n","</p></center>\n");
echo "</form>\n";
}
function doformiddle ($ratval,$call=1)
{
$retval="";
return $ratval;
}
}
diesen fehler habe ich im support von vbulletin gefunden, allerdings gibt die antwort nur im pay-bereich....
kann mir jemand einen tipp geben was hier schief läuft?