我正在尝试在Forge上部署我的Laravel应用程序,但是当我在服务器上查看它时,我收到以下错误,一切都在我的本地计算机上完美运行:
FatalErrorException in ProviderRepository.php line 150:
Class 'Illuminate\Html\HtmlServiceProvider' not found
我假设我需要在某个地方进行作曲家更新?我已经尝试在“部署脚本”中添加它并运行它但没有运气......
我该如何解决这个问题?
答案 0 :(得分:0)
所以看起来它可能是一个缓存问题,因为我刚刚通过将composer update
添加到部署脚本然后部署它并且它全部正常工作来再次尝试它:)
cd /home/forge/default
git pull origin master
composer install
php artisan migrate --force
composer update <-- Add this onto the end