Jaký kód byste použili k uploadu souborů na velice paranoidně nastaveném serveru? Není to můj hosting, a domluva s touhle společností je veškerá žádná. Prostě nepomáhají.
Používám následující kód:
$cil = "./motivy/".mysql_insert_id().".jpg";
$soubor = file_get_contents($obrazek_noveho_motivu);
$fp = fopen($cil, "w+");
fwrite($fp, $soubor);
Form definován následovně:
<form enctype="multipart/form-data" action="?page=administrace"
method="post">
Input takto:
<input class="okno" type="file" name="obrazek_noveho_motivu" />
Chyba je následující:
*Warning*: file_get_contents() [function.file-get-contents]: Unable to
access 01753_firstofmay_1280x1024.jpg in
*/home/www/xxxxxxx.cz/subdomeny/dev/administrace.php* on line *106*
*Warning*: file_get_contents(01753_firstofmay_1280x1024.jpg)
[function.file-get-contents]: failed to open stream: No such file or
directory in */home/www/xxxxxxx.cz/subdomeny/dev/administrace.php* on
line *106* |