I am working on cron jobs in laravel 5.2, when i try to call a controller function from schedule to create excel sheet getting Error. but runs fine in postman.
ZipArchive::close(): Failure to create temporary: No such file or directory' in /var/www/html/Expenses/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php:398
Problem with temp file permission for zipArchive?
I am getting above error while save phpexcel sheet to directory(777).
$excel_path = 'SubmittedSheets/'.$userId.'-'.uniqid().'.xlsx';
$objWriter->save($excel_path);
Need Absolute path to save excel file in AWS Ec2 Linux for PHPExcel.
$excel_path = '/var/www/html/MyProject/public/SubmittedSheets/'.$userId.'-'.uniqid().'.xlsx';
$objWriter->save($excel_path);
I solved it on my Mac OS system by simply uncommenting the line
;sys_temp_dir = "/tmp"
in php.ini
, i.e. changing it to
sys_temp_dir = "/tmp"
Directory where the temporary files should be placed. Defaults to the system default (see sys_get_temp_dir)
Not sure which directory it tried to use as default though, possibly /var/tmp
, which my Homebrew PHP installation doesn't seem to have permission to write to.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With