Guten Tag,
folgendes script setzt bei mir Fehler aus...
einer ne Idee an was das liegen kann?
mfg
folgendes script setzt bei mir Fehler aus...
PHP Notice: in file /includes/acp/acp_logo.php on line 69: getimagesize(): Filename cannot be empty
PHP Notice: in file /includes/acp/acp_logo.php on line 73: copy(): Unable to access
PHP Notice: in file /includes/acp/acp_logo.php on line 73: copy(): Unable to access
PHP-Code:
if (isset($_FILES['upload']['tmp_name']))
{
IF ($_FILES['upload']['size'] <= $max_size) { // Dateigrösse prüfen
$size = getimagesize($_FILES['upload']['tmp_name']);
IF ($size[0] <= $max_width AND $size[1] <= $max_height) { // Höhe und Breite checken
@unlink("../images/logos/".$subdomain.".gif");
copy($_FILES['upload']['tmp_name'],"../images/logos/".$subdomain .".gif"); // Datei Uploaden
$ausgabe .= "Das Logo wurde erfolgreich auf dem Server gespeichert!<br>";
} ELSE {
$ausgabe .= "Bild ist zu breit oder zu hoch! Max 1000 x 500 Pixel!<br>";
}
} ELSE {
$ausgabe .= "Bild ist zu gross!<br> Es sind max. 2MB erlaubt!";
}
}else{
$ausgabe .= "Kein Bild zum hochladen ausgewählt.";}
Kommentar