Search code examples
phpwordpressubuntu

ZipArchive class is missing on your server in Ubuntu


In my wordpress dashboard i am getting "ZipArchive class is missing on your server" this error. I already installed PHP 7.0 on my Ubuntu server. How can i solve this.


Solution

  • Try to install zip archive depending on which version of php you have installed, try the following

    sudo apt-get install php-zip
    

    or if you have php5.6

    sudo apt-get install php5.6-zip
    

    or if you have php7.

    sudo apt-get install php7.0-zip
    

    Then restart the server

    sudo service apache2 restart
    

    To install specific package See this