japortegijs's avatar

The process has been signaled with signal "9"

I added a new file to put my admin routes in, like so in my RouteServiceProvider:

public function map()
{
    $this->mapAdminRoutes();
}

protected function mapAdminRoutes()
    {
        Route::prefix('admin')
            ->name('admin')
            ->middleware('web')
            ->namespace($this->namespace . '\Admin')
            ->group(base_path('routes/admin.php'));
    }

And if I call any controller from that route file, like so:

<?php

Route::get('/', 'AdminController');

The AdminController:

<?php

namespace App\Http\Controllers\Admin;

use App\Http\Controllers\Controller;

class AdminController extends Controller
{
    public function __invoke()
    {
        return view('admin.auth.login');
    }
}

It returns the error: The process has been signaled with signal "9". Not a helpful Ignition error page... can't figure out why.

Any help is appreciated.

0 likes
5 replies
Sinnbeck's avatar

I think the error means your vm ran out of virtual memory

japortegijs's avatar

To my knowlegde I`m not using any kind of VM software. I use valet to host my sites.

japortegijs's avatar

I restarted Valet, everything seems fine now.

4 likes
Sinnbeck's avatar

Yes that would free up memory :) if it was something else I don't know what. All results on Google are related to memory exhausted

Krisell's avatar

I had the same issue, got this instead of the Ignition error pages. Restarting Valet fixed it, thanks!

Please or to participate in this conversation.