PHP7 : install ext-dom issue

前端 未结 5 1722
情歌与酒
情歌与酒 2020-11-27 10:48

I\'m running laravel 5.4 on Ubuntu 16.04 server with PHP7. trying to install cviebrock/eloquent-sluggable package throw some error:

pish@let:/ho         


        
5条回答
  •  死守一世寂寞
    2020-11-27 11:00

    For CentOS, RHEL, Fedora:

    $ yum search php-xml
    ============================================================================================================ N/S matched: php-xml ============================================================================================================
    php-xml.x86_64 : A module for PHP applications which use XML
    php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    php-xmlseclibs.noarch : PHP library for XML Security
    php54-php-xml.x86_64 : A module for PHP applications which use XML
    php54-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    php55-php-xml.x86_64 : A module for PHP applications which use XML
    php55-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    php56-php-xml.x86_64 : A module for PHP applications which use XML
    php56-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    php70-php-xml.x86_64 : A module for PHP applications which use XML
    php70-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    php71-php-xml.x86_64 : A module for PHP applications which use XML
    php71-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    php72-php-xml.x86_64 : A module for PHP applications which use XML
    php72-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    php73-php-xml.x86_64 : A module for PHP applications which use XML
    php73-php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
    

    Then select the php-xml version matching your php version:

    # php -v
    PHP 7.2.11 (cli) (built: Oct 10 2018 10:00:29) ( NTS )
    Copyright (c) 1997-2018 The PHP Group
    Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
    
    # sudo yum install -y php72-php-xml.x86_64
    

提交回复
热议问题