Laravel Production issue - Updating composer with Laravel 4.1.x

前端 未结 4 1855
予麋鹿
予麋鹿 2021-02-07 08:08

I haven\'t encountered any issue in deploying my laravel project until now. I\'ve been deploying for like almost a year already for this project. But some new bug came up.

相关标签:
4条回答
  • 2021-02-07 08:43

    had the same problem, performed the composer installation command in the terminal and problem solved

    the composer via yum install command:

    yum install composer -y
    
    0 讨论(0)
  • 2021-02-07 08:55

    I fixed it by installing the missing dependencies.

    1008  php -v
    1009  yum search php55
    1010  yum -y install php55w-xml.x86_64 
    1011  clear
    1012  su - api
    1013  httpd restart
    1014  service httpd restart
    
    0 讨论(0)
  • 2021-02-07 08:59
    sudo apt-get install php5.6-xml
    

    fixed this for me on Ubuntu with PHP 5.6. (Its nothing to do with Laravel BTW - I'm not using that framework at all.)

    0 讨论(0)
  • 2021-02-07 09:04

    You can install phpunit, after that, if there are problems, execute the command: sudo a2dismod php5 .If you still have questions, to analyze your problem by looking at the system log.

    0 讨论(0)
提交回复
热议问题