ErrorException (E_WARNING)
include(/mnt/web115/d3/66/59056066/htdocs/vendor/composer/../../app/Providers/AppServiceProvider.php): Failed to open stream: No such file or directory ErrorException thrown with message "include(/mnt/web115/d3/66/59056066/htdocs/vendor/composer/../../app/Providers/AppServiceProvider.php): Failed to open stream: No such file or directory" Stacktrace: #12 ErrorException in /mnt/web115/d3/66/59056066/htdocs/vendor/composer/ClassLoader.php:582 #11 include in /mnt/web115/d3/66/59056066/htdocs/vendor/composer/ClassLoader.php:582 #10 Composer\Autoload\{closure} in /mnt/web115/d3/66/59056066/htdocs/vendor/composer/ClassLoader.php:433 #9 Composer\Autoload\ClassLoader:loadClass in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:690 #8 Illuminate\Foundation\Application:resolveProvider in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:624 #7 Illuminate\Foundation\Application:register in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:75 #6 Illuminate\Foundation\ProviderRepository:load in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:604 #5 Illuminate\Foundation\Application:registerConfiguredProviders in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php:17 #4 Illuminate\Foundation\Bootstrap\RegisterProviders:bootstrap in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:230 #3 Illuminate\Foundation\Application:bootstrapWith in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:151 #2 Illuminate\Foundation\Http\Kernel:bootstrap in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:135 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:109 #0 Illuminate\Foundation\Http\Kernel:handle in /mnt/web115/d3/66/59056066/htdocs/index.php:67
12
ErrorException
/vendor/composer/ClassLoader.php582
11
include
/vendor/composer/ClassLoader.php582
10
Composer\Autoload\{closure}
/vendor/composer/ClassLoader.php433
9
Composer\Autoload\ClassLoader loadClass
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php690
8
Illuminate\Foundation\Application resolveProvider
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php624
7
Illuminate\Foundation\Application register
/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php75
6
Illuminate\Foundation\ProviderRepository load
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php604
5
Illuminate\Foundation\Application registerConfiguredProviders
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php17
4
Illuminate\Foundation\Bootstrap\RegisterProviders bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php230
3
Illuminate\Foundation\Application bootstrapWith
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php151
2
Illuminate\Foundation\Http\Kernel bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php135
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php109
0
Illuminate\Foundation\Http\Kernel handle
/index.php67
/mnt/web115/d3/66/59056066/htdocs/vendor/composer/ClassLoader.php
 
    /**
     * @return void
     */
    private static function initializeIncludeClosure()
    {
        if (self::$includeFile !== null) {
            return;
        }
 
        /**
         * Scope isolated include.
         *
         * Prevents access to $this/self from included files.
         *
         * @param  string $file
         * @return void
         */
        self::$includeFile = \Closure::bind(static function($file) {
            include $file;
        }, null, null);
    }
}
 
Arguments
  1. "include(/mnt/web115/d3/66/59056066/htdocs/vendor/composer/../../app/Providers/AppServiceProvider.php): Failed to open stream: No such file or directory"
    
/mnt/web115/d3/66/59056066/htdocs/vendor/composer/ClassLoader.php
 
    /**
     * @return void
     */
    private static function initializeIncludeClosure()
    {
        if (self::$includeFile !== null) {
            return;
        }
 
        /**
         * Scope isolated include.
         *
         * Prevents access to $this/self from included files.
         *
         * @param  string $file
         * @return void
         */
        self::$includeFile = \Closure::bind(static function($file) {
            include $file;
        }, null, null);
    }
}
 
/mnt/web115/d3/66/59056066/htdocs/vendor/composer/ClassLoader.php
    public function unregister()
    {
        spl_autoload_unregister(array($this, 'loadClass'));
 
        if (null !== $this->vendorDir) {
            unset(self::$registeredLoaders[$this->vendorDir]);
        }
    }
 
    /**
     * Loads the given class or interface.
     *
     * @param  string    $class The name of the class
     * @return true|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            $includeFile = self::$includeFile;
            $includeFile($file);
 
            return true;
        }
 
        return null;
    }
 
    /**
     * Finds the path to the file where the class is defined.
     *
     * @param string $class The name of the class
     *
     * @return string|false The path if found, false otherwise
     */
    public function findFile($class)
    {
        // class map lookup
        if (isset($this->classMap[$class])) {
            return $this->classMap[$class];
        }
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
     * @return array
     */
    public function getProviders($provider)
    {
        $name = is_string($provider) ? $provider : get_class($provider);
 
        return Arr::where($this->serviceProviders, function ($value) use ($name) {
            return $value instanceof $name;
        });
    }
 
    /**
     * Resolve a service provider instance from the class name.
     *
     * @param  string  $provider
     * @return \Illuminate\Support\ServiceProvider
     */
    public function resolveProvider($provider)
    {
        return new $provider($this);
    }
 
    /**
     * Mark the given provider as registered.
     *
     * @param  \Illuminate\Support\ServiceProvider  $provider
     * @return void
     */
    protected function markAsRegistered($provider)
    {
        $this->serviceProviders[] = $provider;
 
        $this->loadedProviders[get_class($provider)] = true;
    }
 
    /**
     * Load and boot all of the remaining deferred providers.
     *
     * @return void
     */
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    }
 
    /**
     * Register a service provider with the application.
     *
     * @param  \Illuminate\Support\ServiceProvider|string  $provider
     * @param  bool  $force
     * @return \Illuminate\Support\ServiceProvider
     */
    public function register($provider, $force = false)
    {
        if (($registered = $this->getProvider($provider)) && ! $force) {
            return $registered;
        }
 
        // If the given "provider" is a string, we will resolve it, passing in the
        // application instance automatically for the developer. This is simply
        // a more convenient way of specifying your service provider classes.
        if (is_string($provider)) {
            $provider = $this->resolveProvider($provider);
        }
 
        $provider->register();
 
        // If there are bindings / singletons set as properties on the provider we
        // will spin through them and register them with the application, which
        // serves as a convenience layer while registering a lot of bindings.
        if (property_exists($provider, 'bindings')) {
            foreach ($provider->bindings as $key => $value) {
                $this->bind($key, $value);
            }
        }
 
        if (property_exists($provider, 'singletons')) {
            foreach ($provider->singletons as $key => $value) {
                $this->singleton($key, $value);
            }
        }
 
        $this->markAsRegistered($provider);
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php
 
        // First we will load the service manifest, which contains information on all
        // service providers registered with the application and which services it
        // provides. This is used to know which services are "deferred" loaders.
        if ($this->shouldRecompile($manifest, $providers)) {
            $manifest = $this->compileManifest($providers);
        }
 
        // Next, we will register events to load the providers for each of the events
        // that it has requested. This allows the service provider to defer itself
        // while still getting automatically loaded when a certain event occurs.
        foreach ($manifest['when'] as $provider => $events) {
            $this->registerLoadEvents($provider, $events);
        }
 
        // We will go ahead and register all of the eagerly loaded providers with the
        // application so their services can be registered with the application as
        // a provided service. Then we will set the deferred service list on it.
        foreach ($manifest['eager'] as $provider) {
            $this->app->register($provider);
        }
 
        $this->app->addDeferredServices($manifest['deferred']);
    }
 
    /**
     * Load the service provider manifest JSON file.
     *
     * @return array|null
     */
    public function loadManifest()
    {
        // The service manifest is a file containing a JSON representation of every
        // service provided by the application and whether its provider is using
        // deferred loading or should be eagerly loaded on each request to us.
        if ($this->files->exists($this->manifestPath)) {
            $manifest = $this->files->getRequire($this->manifestPath);
 
            if ($manifest) {
                return array_merge(['when' => []], $manifest);
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        return $this['env'] === 'testing';
    }
 
    /**
     * Register all of the configured providers.
     *
     * @return void
     */
    public function registerConfiguredProviders()
    {
        $providers = Collection::make($this->config['app.providers'])
                        ->partition(function ($provider) {
                            return strpos($provider, 'Illuminate\\') === 0;
                        });
 
        $providers->splice(1, 0, [$this->make(PackageManifest::class)->providers()]);
 
        (new ProviderRepository($this, new Filesystem, $this->getCachedServicesPath()))
                    ->load($providers->collapse()->toArray());
    }
 
    /**
     * Register a service provider with the application.
     *
     * @param  \Illuminate\Support\ServiceProvider|string  $provider
     * @param  bool  $force
     * @return \Illuminate\Support\ServiceProvider
     */
    public function register($provider, $force = false)
    {
        if (($registered = $this->getProvider($provider)) && ! $force) {
            return $registered;
        }
 
        // If the given "provider" is a string, we will resolve it, passing in the
        // application instance automatically for the developer. This is simply
        // a more convenient way of specifying your service provider classes.
        if (is_string($provider)) {
            $provider = $this->resolveProvider($provider);
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php
<?php
 
namespace Illuminate\Foundation\Bootstrap;
 
use Illuminate\Contracts\Foundation\Application;
 
class RegisterProviders
{
    /**
     * Bootstrap the given application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    public function bootstrap(Application $app)
    {
        $app->registerConfiguredProviders();
    }
}
 
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        $this->register(new EventServiceProvider($this));
        $this->register(new LogServiceProvider($this));
        $this->register(new RoutingServiceProvider($this));
    }
 
    /**
     * Run the given array of bootstrap classes.
     *
     * @param  string[]  $bootstrappers
     * @return void
     */
    public function bootstrapWith(array $bootstrappers)
    {
        $this->hasBeenBootstrapped = true;
 
        foreach ($bootstrappers as $bootstrapper) {
            $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 
            $this->make($bootstrapper)->bootstrap($this);
 
            $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
        }
    }
 
    /**
     * Register a callback to run after loading the environment.
     *
     * @param  \Closure  $callback
     * @return void
     */
    public function afterLoadingEnvironment(Closure $callback)
    {
        return $this->afterBootstrapping(
            LoadEnvironmentVariables::class, $callback
        );
    }
 
    /**
     * Register a callback to run before a bootstrapper.
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
/mnt/web115/d3/66/59056066/htdocs/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
    public function __construct(Application $app, Router $router)
    {
        $this->app = $app;
        $this->router = $router;
 
        $this->syncMiddlewareToRouter();
    }
 
    /**
     * Handle an incoming HTTP request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Throwable $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
/mnt/web115/d3/66/59056066/htdocs/index.php
*/
 
$app = require_once __DIR__.'/bootstrap/app.php';
 
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
 
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
 
$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);
 
$response->send();
 
$kernel->terminate($request, $response);
 

Environment & details:

empty
empty
empty
empty
empty
Key Value
UNIQUE_ID
"ZjDGbmujcQwxfaLweCNvKwAABIU"
RZ_n
"59056066"
RZ_a
":~clean:Rhttp-301:Cpower:quota=51200MB:phpmin=80:ippool=mw:fcgi=1:php=80:forcessl=301:defpage:crt=17673654:tpl=strato-standard:"
RZ_path
"web115/d3/66/59056066"
SCRIPT_URL
"/"
SCRIPT_URI
"https://www.kalmainmoeventos.es/"
HTTPS
"on"
DOCUMENT_ROOT
"/home/strato/http/power/rid/60/66/59056066/htdocs"
RZ_php
"80"
PHPRC
"/home/strato/http/power/rid/60/66/59056066/htdocs"
HTTP_HOST
"www.kalmainmoeventos.es"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_REFERER
"http://www.kalmainmoeventos.es/"
HTTP_CONNECTION
"close"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
SERVER_SOFTWARE
"Apache/2.4.59 (Unix)"
SERVER_NAME
"www.kalmainmoeventos.es"
SERVER_PORT
"443"
REMOTE_ADDR
"18.119.107.161"
SERVER_ADMIN
"service@webmailer.de"
SCRIPT_FILENAME
"/home/strato/http/power/rid/60/66/59056066/htdocs/index.php"
REMOTE_PORT
"49733"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1714472558.8152
REQUEST_TIME
1714472558
argv
[]
argc
0
APP_NAME
"Kalma Inmobiliaria & Eventos"
APP_ENV
"production"
APP_KEY
"base64:rdx2HRjiy2gl3X8QsoNy1PtIYl64jz+A14byyqe5eFE="
APP_DEBUG
"true"
APP_URL
"https://www.kalmainmoeventos.es"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"rdbms.strato.de"
DB_PORT
"3306"
DB_DATABASE
"DB3269877"
DB_USERNAME
"U3269877"
DB_PASSWORD
"kalmainmoeventos2018"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.strato.de"
MAIL_PORT
"587"
MAIL_USERNAME
"info@kalmainmoeventos.es"
MAIL_FROM_NAME
"Kalma Inmobiliaria & Eventos"
MAIL_PASSWORD
"Info2018"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
Key Value
UNIQUE_ID
"ZjDGbmujcQwxfaLweCNvKwAABIU"
RZ_n
"59056066"
RZ_a
":~clean:Rhttp-301:Cpower:quota=51200MB:phpmin=80:ippool=mw:fcgi=1:php=80:forcessl=301:defpage:crt=17673654:tpl=strato-standard:"
RZ_path
"web115/d3/66/59056066"
SCRIPT_URL
"/"
SCRIPT_URI
"https://www.kalmainmoeventos.es/"
HTTPS
"on"
DOCUMENT_ROOT
"/home/strato/http/power/rid/60/66/59056066/htdocs"
RZ_php
"80"
PHPRC
"/home/strato/http/power/rid/60/66/59056066/htdocs"
HTTP_HOST
"www.kalmainmoeventos.es"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_REFERER
"http://www.kalmainmoeventos.es/"
HTTP_CONNECTION
"close"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
SERVER_SOFTWARE
"Apache/2.4.59 (Unix)"
SERVER_NAME
"www.kalmainmoeventos.es"
SERVER_PORT
"443"
REMOTE_ADDR
"18.119.107.161"
SERVER_ADMIN
"service@webmailer.de"
SCRIPT_FILENAME
"/home/strato/http/power/rid/60/66/59056066/htdocs/index.php"
REMOTE_PORT
"49733"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/"
SCRIPT_NAME
"/index.php"
APP_NAME
"Kalma Inmobiliaria & Eventos"
APP_ENV
"production"
APP_KEY
"base64:rdx2HRjiy2gl3X8QsoNy1PtIYl64jz+A14byyqe5eFE="
APP_DEBUG
"true"
APP_URL
"https://www.kalmainmoeventos.es"
LOG_CHANNEL
"stack"
DB_CONNECTION
"mysql"
DB_HOST
"rdbms.strato.de"
DB_PORT
"3306"
DB_DATABASE
"DB3269877"
DB_USERNAME
"U3269877"
DB_PASSWORD
"kalmainmoeventos2018"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.strato.de"
MAIL_PORT
"587"
MAIL_USERNAME
"info@kalmainmoeventos.es"
MAIL_FROM_NAME
"Kalma Inmobiliaria & Eventos"
MAIL_PASSWORD
"Info2018"
MAIL_ENCRYPTION
"tls"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
0. Whoops\Handler\PrettyPageHandler