Answer the question
In order to leave comments, you need to log in
Why is the picture not downloading from My Warehouse?
A few weeks ago I downloaded pictures from My Warehouse and everything worked fine.
I will give the code of functions for downloading:
public function saveImgMoySklad($imgUrl, $pathSave, $username, $password) {
$auth = base64_encode("{$username}:{$password}");
$context = stream_context_create([
"http" => [
"header" => "Authorization: Basic $auth"
]
]);
$homepage = file_get_contents($imgUrl, false, $context);
if ($homepage) {
file_put_contents($pathSave, $homepage);
return true;
} else {
return false;
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question