Hey,
we get a chdir error, when the array contains only one url.
With two or more the zip file is generated without any problems.
Error: Alchemy\Zippy\Exception\RuntimeException: Unable to chdir to https://www.google.de/images/branding/googlelogo/2x
NOT WORKING:
$file = ['https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'];
$archiveZip = $zippy->create('archive.zip', $file, false);
WORKING:
$file =['https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png','https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'];
$archiveZip = $zippy->create('archive.zip', $file, false);
Any help is appreciated.
Kind regards
Michael
Hey,
we get a chdir error, when the array contains only one url.
With two or more the zip file is generated without any problems.
Error: Alchemy\Zippy\Exception\RuntimeException: Unable to chdir to
https://www.google.de/images/branding/googlelogo/2xNOT WORKING:
$file = ['https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'];
$archiveZip = $zippy->create('archive.zip', $file, false);
WORKING:
$file =['https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png','https://www.google.de/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'];
$archiveZip = $zippy->create('archive.zip', $file, false);
Any help is appreciated.
Kind regards
Michael