Just another Laravel 4 white screen with no clues.
My context:
- Server CentOS 6.5
- Apache 2.2.15
- PHP 5.4.23
- php mcrypt enabled
- php log_errors working
- Laravel fresh install: "$ laravel new project"
- storage folder permissions 777
- there is no laravel error log
- there are no errors on php log
- there are no errors on apache/httpd log
I've tried to do a "manual debug" and the app stops at start.php:
$app = new Illuminate\Foundation\Application;
Going deeper compiled.php I've lost track on the share method call:
use Illuminate\Support\ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
public function register()
{
$this->app['events'] = $this->app->share(function ($app) {
return new Dispatcher($app);
});
}
}
EDIT
Checked same "500 Server Internal Error" using Laravel's server ($ php artisan serve
).