Verfasst: 28.12.2004 00:22
Tja, nach langem hin und her und zichmaligem re- und neuinstallieren des Mods gehts jetzt......
Danke trotzdem......
Danke trotzdem......
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
if (($HTTP_POST_FILES["datei"]["type"] != "image/pjpeg") && ($HTTP_POST_FILES["datei"]["type"] != "image/jpg") && ($HTTP_POST_FILES["datei"]["type"] != "image/jpeg") && ($_FILES["datei"]["type"] != "image/gif"))
{
message_die(GENERAL_MESSAGE, $lang['L_USERCARS_MOD6']);
exit;
}
Code: Alles auswählen
if($HTTP_POST_FILES["datei"]["type"] == "image/jpg")
{
$extension = "jpg";
}
elseif($HTTP_POST_FILES["datei"]["type"] == "image/jpeg")
{
$extension = "jpg";
}
elseif($_FILES["datei"]["type"] == "image/gif")
{
$extension = "gif";
}
elseif($HTTP_POST_FILES["datei"]["type"] == "image/pjpeg")
{
$extension = "jpg";
}
else
{
message_die(GENERAL_MESSAGE, $lang['L_USERCARS_MOD6']);
exit;
}
Code: Alles auswählen
$current_user_date_time = $userdata['user_id'] . "_" . date(ymd) . "_" . time();
Code: Alles auswählen
$current_user_date_time = $userdata['user_id'] . "_" . date(ymd) . "_" . time() . "." . $extension;
Code: Alles auswählen
<textarea name="usercars_carname" rows="2" cols="100" wrap="virtual" tabindex="3"></textarea>
Code: Alles auswählen
<textarea name="usercars_carname" rows="2" cols="100" wrap="virtual" tabindex="3" class="post">