вопрос
Как сделать чтобы можно было загружать картинку по данной ссылке? :
https://www.kontakthub.com/_media/images/TH%20Studio/Trailer%20Elements%203/th3%20main.jpg
При попытке загрузить данную картинку DLE выводит такое сообщение:
The uploaded file is empty or inaccesible
Версия DLE 11.1
https://www.kontakthub.com/_media/images/TH%20Studio/Trailer%20Elements%203/th3%20main.jpg
При попытке загрузить данную картинку DLE выводит такое сообщение:
The uploaded file is empty or inaccesible
Версия DLE 11.1
Заменил в engine/classes/uploads/upload.class.php строку:
на:
Теперь работает.
if ( preg_match("#Content-Length: ([0-9]+)#i",$x,$size) ) return intval($size[1]); else return 0;
на:
if (preg_match("#Content-Length: ([0-9]+)#i",$x,$size)) {
return intval($size[1]);
} else {
$x = @file_get_contents($this->from);
$x = strlen($x);
return $x;
}
Теперь работает.