jordanjay29
There's something there, but the memory and the server are ok.
-- I've enabled debugging...
this error on this file...
production.DEBUG: Flarum\Http\Exception\RouteNotFoundException in ...../vendor/flarum/core/src/Http/Middleware/DispatchRoute.php:62
and this is php function where produce error...
public function __invoke(Request $request, Response $response, callable $out = null)
{
$method = $request->getMethod();
$uri = $request->getUri()->getPath() ?: '/';
$routeInfo = $this->getDispatcher()->dispatch($method, $uri);
switch ($routeInfo[0]) {
case Dispatcher::NOT_FOUND:
throw new RouteNotFoundException;
case Dispatcher::METHOD_NOT_ALLOWED:
throw new MethodNotAllowedException;
case Dispatcher::FOUND:
$handler = $routeInfo[1];
$parameters = $routeInfo[2];
return $handler($request, $parameters);
}
}