我像往常一样使用envoyer进行部署。一个警告是,在我的本地主机开发期间(当我切换git分支时)..我遇到了这个错误:
[ReflectionException]类App \ Http \ Controllers \ Admin \ BatchUpdateStoresController不存在
我通过清除路由缓存解决了这个问题(详见here)。
现在的问题是当我在envoyer上部署时..我在nginx日志上遇到这个错误:
PHP message: PHP Fatal error: Uncaught ReflectionException: Class hash does not exist in /home/forge/default/envoyer/releases/20180306221058/bootstrap/cache/compiled.php:1479
Stack trace:
#0 /home/forge/default/envoyer/releases/20180306221058/bootstrap/cache/compiled.php(1479): ReflectionClass->__construct('hash')
#1 /home/forge/default/envoyer/releases/20180306221058/bootstrap/cache/compiled.php(1433): Illuminate\Container\Container->build('hash', Array)
#2 /home/forge/default/envoyer/releases/20180306221058/bootstrap/cache/compiled.php(2011): Illuminate\Container\Container->make('hash', Array)
#3 /home/forge/default/envoyer/releases/20180306221058/bootstrap/cache/compiled.php(1686): Illuminate\Foundation\Application->make('hash')
#4 /home/forge/default/envoyer/releases/20180306221058/bootstrap/cache/compiled.php(524): Illuminate\Container\Container->offsetGet('hash')
#5 /home/forge/default/envoyer/releases/20180306221058/bootstrap/
我尝试一起删除/home/forge/default/envoyer/releases/20180306221058/bootstrap
文件夹..但这使它更糟糕(即我甚至不再获得nginx错误日志)。
我该怎么办?
答案 0 :(得分:1)
升级到5.6后,我遇到了丢失的Hash
类异常。问题是升级指南中忽略的一步:
所有散列配置现在都位于自己的config / hashing.php配置文件中。您应该在自己的应用程序中放置默认配置文件的副本。最有可能的是,您应该将bcrypt驱动程序保留为默认驱动程序。但是,也支持氩气。
答案 1 :(得分:1)
事实证明我向作曲家添加library并将其服务提供商和别名添加到config / app.php中,如下所示:
'providers' => [
..
Clockwork\Support\Laravel\ClockworkServiceProvider::class,
'aliases' => [
..
'Clockwork' => Clockwork\Support\Laravel\Facade::class,
但后来从编辑器中移除了该库(b / c我停止使用它)并忘记更新服务提供商。
更新服务提供商解决了这个问题。
我从我的一位工程师那里得到了同样的问题,拉动请求中有100次提交(它是一个主题分支......请不要判断)。
他肯定所有的库都被使用了。
所以我所做的就是我只是在两个特定文件上运行git diff,只在这个大范围内运行:config/app.php
和composer.json
,如下所示:
$ git diff 96d397a bce2052 composer.json
diff --git a/composer.json b/composer.json
index 4c16f388..d780ec01 100644
--- a/composer.json
+++ b/composer.json
@@ -4,6 +4,12 @@
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
+ "repositories": [
+ {
+ "type": "vcs",
+ "url": "https://github.com/abbood/translation"
+ }
+ ],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.3.*",
@@ -26,7 +32,9 @@
"aloha/twilio": "^2.1",
"laravel/socialite": "^2.0",
"barryvdh/laravel-dompdf": "^0.8.0",
- "mockery/mockery": "1.0"
+ "mockery/mockery": "1.0",
+ "maxmind-db/reader": "~1.0",
+ "waavi/translation": "dev-extractGenCode"
},
"require-dev": {
"symfony/dom-crawler": "~3.1",
@@ -35,6 +43,7 @@
"phpunit/phpunit": "~5.0",
"phpspec/phpspec": "~2.1",
"johnkary/phpunit-speedtrap": "^1.0",
+ "orangehill/iseed": "2.2",
"barryvdh/laravel-ide-helper": "^2.4"
},
"autoload": {
git diff 96d397a bce2052 config/app.php
diff --git a/config/app.php b/config/app.php
index 5025f79b..28e34794 100644
--- a/config/app.php
+++ b/config/app.php
@@ -10,8 +10,8 @@ return [
| the framework needs to place the application's version in a notification
| or any other location as required by the application or its packages.
*/
+ 'version' => '1.3.57',
- 'version' => '1.3.46',
'env' => env('APP_ENV', 'production'),
@@ -115,6 +115,17 @@ return [
/*those options are overriden in bootstrap/app for info.log and error.log*/
'log' => 'daily',
+ /*
+ |--------------------------------------------------------------------------
+ | MaxMind mmdb Path
+ |--------------------------------------------------------------------------
+ |
+ | Here you specify the path to MaxMind GeoLite2-City.mmdb
+ |
+ |
+ */
+ 'maxmindDB' => env('APP_MAX_MIND_MMDB', "./maxmind/GeoLite2-City.mmdb"),
+
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
@@ -149,7 +160,6 @@ return [
Illuminate\Redis\RedisServiceProvider::class,
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
Illuminate\Session\SessionServiceProvider::class,
- Illuminate\Translation\TranslationServiceProvider::class,
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
@@ -180,7 +190,10 @@ return [
Davibennun\LaravelPushNotification\LaravelPushNotificationServiceProvider::class,
Aloha\Twilio\Support\Laravel\ServiceProvider::class,
Laravel\Socialite\SocialiteServiceProvider::class,
+ Orangehill\Iseed\IseedServiceProvider::class,
Barryvdh\DomPDF\ServiceProvider::class,
+ Waavi\Translation\TranslationServiceProvider::class,
+
],
/*
|--------------------------------------------------------------------------
@@ -239,6 +252,8 @@ return [
'Raven' => Jenssegers\Raven\Facades\Raven::class,
'Socialite' => Laravel\Socialite\Facades\Socialite::class,
'PDF' => Barryvdh\DomPDF\Facade::class,
+ 'UriLocalizer' => \Waavi\Translation\Facades\UriLocalizer::class,
+ 'TranslationCache' => \Waavi\Translation\Facades\TranslationCache::class,
],
];
所以问题很明显:基本上我们将"orangehill/iseed": "2.2",
作为require-dev
要求,但是当我们将其注册为服务提供商时,不检查env是否为dev ...所以它爆炸了。
所以这把它固定在app/Providers/AppServiceProvider.php
:
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
$env = config('app.env');
if ($env === 'local' || $env === 'testing') {
.. dev only libraries
$this->app->register(\Orangehill\Iseed\IseedServiceProvider::class);
}
}
}
有时您必须删除整个引导程序目录
rm -rf bootstrap
然后运行
composer dump-autload
但是laravel在那之后不会工作,所以你必须git恢复删除所有bootstrap的改变(无论如何都应该在你的git repo中)..并且你之后的那个