|
|
|
| с маленькими файлами всё ок , а вот с файлами больше 7 Мб выдается еррор
"ERROR
The requested URL could not be retrieved
--------------------------------------------------------------------------------
While trying to retrieve the URL: http://www.site.ru/
The following error was encountered:
Zero Sized Reply
Squid did not receive any data for this request.
Your cache administrator is webmaster. "
<?php
set_time_limit(0);
ini_set("upload_max_filesize", "30M");
ini_set("memory_limit", "30M");
ini_set("post_max_size", "30M");
if ($REQUEST_METHOD == "POST") {
if(copy($_FILES["filename"]["tmp_name"],
"../photos/".$_FILES["filename"]["name"])){
echo "Ok";
} else {
echo("Ошибка загрузки файла");
}
}
?>
<html>
<head>
<title>Загрузка файлов на сервер</title>
</head>
<body>
<h2><p><b> Форма для загрузки файлов </b></p></h2>
<form method="post" enctype="multipart/form-data">
<input type="file" name="filename"><br>
<input type="submit" value="Загрузить"><br>
</form>
</body>
</html>
|
| |
|
|