Ich erstelle ein Laravel 4-Anmeldesystem mit "Sentry von Cartalyst". Alles läuft gut auf meinem Lokalhost, Aber wenn ich es auf meinem Shared Hosting hochlade, bekomme ich folgenden Fehler:
Symfony \ Component \ Debug \ Exception \ FatalErrorException
Aufruf einer nicht definierten Methode Illuminate\Database\MySqlConnection::setReconnector()
Ich sehe einen Fehler in bootsrtap/compiled.php
$app = $this->app;
$connection->setCacheManager(function () use($app) {
return $app['cache'];
});
$connection->setPaginator(function () use($app) {
return $app['paginator'];
});
$connection->setReconnector(function ($connection) {
$this->reconnect($connection->getName());
});
Bitte helfen Sie mir, diesen Fehler zu beheben.