19

Class 'App\Http\Controllers\ZipArchive' not found in Laravel

 2 years ago
source link: https://www.laravelcode.com/post/class-app-http-controllers-ziparchive-not-found-in-laravel
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Class 'App\Http\Controllers\ZipArchive' not found in Laravel

  62 views

  3 weeks ago

Laravel

While working on Zip file in your Laravel application, you might need to use PHP in-built class ZipArchive. When you use class in your controller file, you might get error "Class 'App\Http\Controllers\ZipArchive' not found".

To use ZipArchive class in PHP, you need to have installed and enabled zip extension which is which uses libzip. You can simply install zip extension with your enabled PHP version.

PHP7.4

sudo apt-get install php7.4-zip

PHP8.0

sudo apt-get install php8.0-zip

And don't forget to restart apache server to implement changes.

sudo service apache2 restart

Now refresh the page and error should have gone. If you still get the error, make use you have use class above else Laravel will try to find class in your Controllers directory.

<?php

namespace App\Http\Controllers;

use ZipArchive;

/**
 * Show the application homepage.
 *
 * @return \Illuminate\Http\Response
 */
public function index()
{
    ...
    $zip = new ZipArchive;
    ...
}

I hope this will help you.

Author : Harsukh Makwana
Harsukh Makwana

Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK