admin.webmatrix.site Open in urlscan Pro
2606:4700:3036::6815:496b  Public Scan

URL: https://admin.webmatrix.site/
Submission: On June 19 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

SYMFONY EXCEPTION

Symfony Docs


PARSEERROR


HTTP 500 INTERNAL SERVER ERROR


SYNTAX ERROR, UNEXPECTED TOKEN ";", EXPECTING "]"


Exception Stack Trace


EXCEPTION


PARSEERROR

in /var/www/clients/client18/web35/web/admin/config/fortify.php (line 180)
 175.             'confirmPassword' => true,
 176.             // 'window' => 0,
 177.         ]),
 178.     ],
 179. 
 180. ];
 181. 

in
/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php
-> loadConfigurationFile (line 77)
 72.         foreach (array_diff(array_keys($base), array_keys($files)) as $name => $config) {
 73.             $repository->set($name, $config);
 74.         }
 75. 
 76.         foreach ($files as $name => $path) {
 77.             $base = $this->loadConfigurationFile($repository, $name, $path, $base);
 78.         }
 79. 
 80.         foreach ($base as $name => $config) {
 81.             $repository->set($name, $config);
 82.         }

in
/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php
-> loadConfigurationFiles (line 38)
 33.         // directory and load each one into the repository. This will make all of the
 34.         // options available to the developer for use in various parts of this app.
 35.         $app->instance('config', $config = new Repository($items));
 36. 
 37.         if (! isset($loadedFromCache)) {
 38.             $this->loadConfigurationFiles($app, $config);
 39.         }
 40. 
 41.         // Finally, we will set the application's environment based on the configuration
 42.         // values that were loaded. We will pass a callback which will be used to get
 43.         // the environment in a web context where an "--env" switch is not present.

in
/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> bootstrap (line 316)
 311.         $this->hasBeenBootstrapped = true;
 312. 
 313.         foreach ($bootstrappers as $bootstrapper) {
 314.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 315. 
 316.             $this->make($bootstrapper)->bootstrap($this);
 317. 
 318.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
 319.         }
 320.     }
 321. 

in
/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> bootstrapWith (line 186)
 181.      * @return void
 182.      */
 183.     public function bootstrap()
 184.     {
 185.         if (! $this->app->hasBeenBootstrapped()) {
 186.             $this->app->bootstrapWith($this->bootstrappers());
 187.         }
 188.     }
 189. 
 190.     /**
 191.      * Get the route dispatcher callback.

in
/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> bootstrap (line 170)
 165.     {
 166.         $this->app->instance('request', $request);
 167. 
 168.         Facade::clearResolvedInstance('request');
 169. 
 170.         $this->bootstrap();
 171. 
 172.         return (new Pipeline($this->app))
 173.                     ->send($request)
 174.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
 175.                     ->then($this->dispatchToRouter());

in
/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
-> sendRequestThroughRouter (line 144)
 139.         $this->requestStartedAt = Carbon::now();
 140. 
 141.         try {
 142.             $request->enableHttpMethodParameterOverride();
 143. 
 144.             $response = $this->sendRequestThroughRouter($request);
 145.         } catch (Throwable $e) {
 146.             $this->reportException($e);
 147. 
 148.             $response = $this->renderException($request, $e);
 149.         }

in
/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
-> handle (line 1183)
 1178.      */
 1179.     public function handleRequest(Request $request)
 1180.     {
 1181.         $kernel = $this->make(HttpKernelContract::class);
 1182. 
 1183.         $response = $kernel->handle($request)->send();
 1184. 
 1185.         $kernel->terminate($request, $response);
 1186.     }
 1187. 
 1188.     /**

Application->handleRequest() in
/var/www/clients/client18/web35/web/admin/public/index.php (line 17)
 12. // Register the Composer autoloader...
 13. require __DIR__.'/../vendor/autoload.php';
 14. 
 15. // Bootstrap Laravel and handle the request...
 16. (require_once __DIR__.'/../bootstrap/app.php')
 17.     ->handleRequest(Request::capture());
 18. 


STACK TRACE

ParseError

ParseError:
syntax error, unexpected token ";", expecting "]"

  at /var/www/clients/client18/web35/web/admin/config/fortify.php:180
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->loadConfigurationFile()
     (/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:77)
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->loadConfigurationFiles()
     (/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php:38)
  at Illuminate\Foundation\Bootstrap\LoadConfiguration->bootstrap()
     (/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:316)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:186)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:170)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/var/www/clients/client18/web35/web/admin/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:1183)
  at Illuminate\Foundation\Application->handleRequest()
     (/var/www/clients/client18/web35/web/admin/public/index.php:17)