TÉRMINOS Y CONDICIONES DE USO

El presente establece las condiciones mediante las cuales se regirá el uso de la aplicación móvil: Wild Rooster!, la cual es puesta a disposición de Usted a través de las sociedades mercantiles que administra el concepto comercial, “Wild Rooster”.

DESCARGA

“La Aplicación” podrá ser descargada de forma gratuita dentro y fuera de los restaurantes de los cuales es dueño “Grupo beh”, por medio de las tiendas virtuales que para el caso estén autorizadas, lo anterior con la finalidad de volver aún más placentera su estancia dentro de la las sucursales de las cuales es dueña “Grupo beh”.

APROBACIÓN

La descarga y uso de “La Aplicación” implica la aceptación plena, sin reservas y en su totalidad de los presentes términos y condiciones de uso de “La Aplicación”. Por tal razón, “Grupo beh” recomienda a Usted leer detenidamente los Términos y Condiciones.

UTILIZACIÓN DE “LA APLICACIÓN”

Usted será el único responsable frente a “Grupo beh” y/o terceros del uso que realice de “La Aplicación” y/o de sus contenidos. En ningún caso y bajo ningún concepto “Grupo beh” asumirá responsabilidad alguna derivada del uso indebido que Usted realice de “La Aplicación”.

INFORMACIÓN PERSONAL

Usted reconoce que cualquier tipo de información personal o datos que para el caso pudieran ser considerados como sensibles, fueron ingresados por Usted de manera totalmente voluntaria.

MAL USO DE “LA APLICACIÓN”

“Grupo beh” se exime de cualquier tipo de responsabilidad por el mal uso de “La Aplicación” por parte de Usted, en este sentido el primero reprueba y le prohíbe cualquier acto que vaya en contra de la normatividad del lugar en que se encuentre el concepto comercial de “Grupo beh”, así mismo el último está en contra de cualquier acto que altere el orden público o que pudiera llegar a afectar a terceros.

JURISDICCIÓN

Cualquier disputa que surja por estos términos será resuelta exclusivamente bajo la jurisdicción de las leyes del Estado de Chihuahua y bajo la Jurisdicción de los tribunales de Cd. Juárez, Distrito Judicial Bravos. Whoops! There was an error.
UnexpectedValueException
The stream or file "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied UnexpectedValueException thrown with message "The stream or file "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied" Stacktrace: #9 UnexpectedValueException in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php:107 #8 Monolog\Handler\StreamHandler:write in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php:37 #7 Monolog\Handler\AbstractProcessingHandler:handle in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Logger.php:337 #6 Monolog\Logger:addRecord in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Logger.php:616 #5 Monolog\Logger:error in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Log\Writer.php:203 #4 Illuminate\Log\Writer:writeLog in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Log\Writer.php:114 #3 Illuminate\Log\Writer:error in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php:113 #2 Illuminate\Foundation\Exceptions\Handler:report in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\app\Exceptions\Handler.php:39 #1 App\Exceptions\Handler:report in D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
9
UnexpectedValueException
…\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php
107
8
Monolog
\
Handler
\
StreamHandler
write
…\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php
37
7
Monolog
\
Handler
\
AbstractProcessingHandler
handle
…\vendor\monolog\monolog\src\Monolog\Logger.php
337
6
Monolog
\
Logger
addRecord
…\vendor\monolog\monolog\src\Monolog\Logger.php
616
5
Monolog
\
Logger
error
…\vendor\laravel\framework\src\Illuminate\Log\Writer.php
203
4
Illuminate
\
Log
\
Writer
writeLog
…\vendor\laravel\framework\src\Illuminate\Log\Writer.php
114
3
Illuminate
\
Log
\
Writer
error
…\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php
113
2
Illuminate
\
Foundation
\
Exceptions
\
Handler
report
…\app\Exceptions\Handler.php
39
1
App
\
Exceptions
\
Handler
report
…\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php
81
0
Illuminate
\
Foundation
\
Bootstrap
\
HandleExceptions
handleException
[internal]
0
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php
    /**
     * {@inheritdoc}
     */
    protected function write(array $record)
    {
        if (!is_resource($this->stream)) {
            if (null === $this->url || '' === $this->url) {
                throw new \LogicException('Missing stream url, the stream can not be opened. This may be caused by a premature call to close().');
            }
            $this->createDir();
            $this->errorMessage = null;
            set_error_handler(array($this, 'customErrorHandler'));
            $this->stream = fopen($this->url, 'a');
            if ($this->filePermission !== null) {
                @chmod($this->url, $this->filePermission);
            }
            restore_error_handler();
            if (!is_resource($this->stream)) {
                $this->stream = null;
                throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened: '.$this->errorMessage, $this->url));
            }
        }
 
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array $record
     */
Arguments
  1. "The stream or file "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied"
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php
 *
 * @author Jordi Boggiano <j.boggiano@seld.be>
 * @author Christophe Coevoet <stof@notk.org>
 */
abstract class AbstractProcessingHandler extends AbstractHandler
{
    /**
     * {@inheritdoc}
     */
    public function handle(array $record)
    {
        if (!$this->isHandling($record)) {
            return false;
        }
 
        $record = $this->processRecord($record);
 
        $record['formatted'] = $this->getFormatter()->format($record);
 
        $this->write($record);
 
        return false === $this->bubble;
    }
 
    /**
     * Writes the record down to the log of the implementing handler
     *
     * @param  array $record
     * @return void
     */
    abstract protected function write(array $record);
 
    /**
     * Processes a record.
     *
     * @param  array $record
     * @return array
     */
    protected function processRecord(array $record)
    {
Arguments
  1. array:8 [
      "message" => "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
      "context" => array:1 [
        "exception" => ErrorException {
          #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
          #code: 0
          #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "local"
      "datetime" => DateTime @1713566846 {
        date: 2024-04-19 22:47:26.249771 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2024-04-19 22:47:26] local.ERROR: file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied {"exception":"[object] (ErrorException(code: 0): file_put_contents(D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\storage\\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied at D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', 'D:\\\\Plesk\\\\Vhosts...', 122, Array)\n
        #1 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php(122): file_put_contents('D:\\\\Plesk\\\\Vhosts...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('D:\\\\Plesk\\\\Vhosts...', 'a:3:{s:6:\"_toke...', true)\n
        #3 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php(128): Illuminate\\Session\\FileSessionHandler->write('cMygNpgOQy0MNyO...', 'a:3:{s:6:\"_toke...')\n
        #4 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\public\\index.php(62): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Logger.php
            $ts = new \DateTime(null, static::$timezone);
        }
        $ts->setTimezone(static::$timezone);
 
        $record = array(
            'message' => (string) $message,
            'context' => $context,
            'level' => $level,
            'level_name' => $levelName,
            'channel' => $this->name,
            'datetime' => $ts,
            'extra' => array(),
        );
 
        foreach ($this->processors as $processor) {
            $record = call_user_func($processor, $record);
        }
 
        while ($handler = current($this->handlers)) {
            if (true === $handler->handle($record)) {
                break;
            }
 
            next($this->handlers);
        }
 
        return true;
    }
 
    /**
     * Adds a log record at the DEBUG level.
     *
     * @param  string  $message The log message
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function addDebug($message, array $context = array())
    {
        return $this->addRecord(static::DEBUG, $message, $context);
    }
Arguments
  1. array:8 [
      "message" => "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
      "context" => array:1 [
        "exception" => ErrorException {
          #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
          #code: 0
          #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "local"
      "datetime" => DateTime @1713566846 {
        date: 2024-04-19 22:47:26.249771 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2024-04-19 22:47:26] local.ERROR: file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied {"exception":"[object] (ErrorException(code: 0): file_put_contents(D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\storage\\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied at D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', 'D:\\\\Plesk\\\\Vhosts...', 122, Array)\n
        #1 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php(122): file_put_contents('D:\\\\Plesk\\\\Vhosts...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('D:\\\\Plesk\\\\Vhosts...', 'a:3:{s:6:\"_toke...', true)\n
        #3 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php(128): Illuminate\\Session\\FileSessionHandler->write('cMygNpgOQy0MNyO...', 'a:3:{s:6:\"_toke...')\n
        #4 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 D:\\Plesk\\Vhosts\\grupobeh.com\\apps.grupobeh.com\\public\\index.php(62): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\monolog\monolog\src\Monolog\Logger.php
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function err($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $message, $context);
    }
 
    /**
     * Adds a log record at the ERROR level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param  string  $message The log message
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function error($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param  string  $message The log message
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function crit($message, array $context = array())
    {
        return $this->addRecord(static::CRITICAL, $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
Arguments
  1. 400
    
  2. "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
    
  3. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
        #code: 0
        #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Log\Writer.php
     * @return void
     */
    public function write($level, $message, array $context = [])
    {
        $this->writeLog($level, $message, $context);
    }
 
    /**
     * Write a message to Monolog.
     *
     * @param  string  $level
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    protected function writeLog($level, $message, $context)
    {
        $this->fireLogEvent($level, $message = $this->formatMessage($message), $context);
 
        $this->monolog->{$level}($message, $context);
    }
 
    /**
     * Register a file log handler.
     *
     * @param  string  $path
     * @param  string  $level
     * @return void
     */
    public function useFiles($path, $level = 'debug')
    {
        $this->monolog->pushHandler($handler = new StreamHandler($path, $this->parseLevel($level)));
 
        $handler->setFormatter($this->getDefaultFormatter());
    }
 
    /**
     * Register a daily file log handler.
     *
     * @param  string  $path
Arguments
  1. "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
    
  2. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
        #code: 0
        #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Log\Writer.php
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function critical($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log an error message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function error($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a warning message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function warning($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a notice to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
Arguments
  1. "error"
    
  2. "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
    
  3. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
        #code: 0
        #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php
     */
    public function report(Exception $e)
    {
        if ($this->shouldntReport($e)) {
            return;
        }
 
        if (method_exists($e, 'report')) {
            return $e->report();
        }
 
        try {
            $logger = $this->container->make(LoggerInterface::class);
        } catch (Exception $ex) {
            throw $e; // throw the original exception
        }
 
        $logger->error(
            $e->getMessage(),
            array_merge($this->context(), ['exception' => $e]
        ));
    }
 
    /**
     * Determine if the exception should be reported.
     *
     * @param  \Exception  $e
     * @return bool
     */
    public function shouldReport(Exception $e)
    {
        return ! $this->shouldntReport($e);
    }
 
    /**
     * Determine if the exception is in the "do not report" list.
     *
     * @param  \Exception  $e
     * @return bool
     */
Arguments
  1. "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
    
  2. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
        #code: 0
        #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\app\Exceptions\Handler.php
     * A list of the inputs that are never flashed for validation exceptions.
     *
     * @var array
     */
    protected $dontFlash = [
        'password',
        'password_confirmation',
    ];
 
    /**
     * Report or log an exception.
     *
     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
     *
     * @param  \Exception  $exception
     * @return void
     */
    public function report(Exception $exception)
    {
        parent::report($exception);
    }
 
    /**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Exception  $exception
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $exception)
    {
        return parent::render($request, $exception);
    }
}
 
Arguments
  1. ErrorException {
      #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
      #code: 0
      #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php
    }
 
    /**
     * Handle an uncaught exception from the application.
     *
     * Note: Most exceptions can be handled via the try / catch block in
     * the HTTP and Console kernels. But, fatal error exceptions must
     * be handled differently since they are not normal exceptions.
     *
     * @param  \Throwable  $e
     * @return void
     */
    public function handleException($e)
    {
        if (! $e instanceof Exception) {
            $e = new FatalThrowableError($e);
        }
 
        try {
            $this->getExceptionHandler()->report($e);
        } catch (Exception $e) {
            //
        }
 
        if ($this->app->runningInConsole()) {
            $this->renderForConsole($e);
        } else {
            $this->renderHttpResponse($e);
        }
    }
 
    /**
     * Render an exception to the console.
     *
     * @param  \Exception  $e
     * @return void
     */
    protected function renderForConsole(Exception $e)
    {
        $this->getExceptionHandler()->renderForConsole(new ConsoleOutput, $e);
Arguments
  1. ErrorException {
      #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
      #code: 0
      #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
[internal]
Arguments
  1. ErrorException {
      #message: "file_put_contents(D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\storage\framework/sessions/cMygNpgOQy0MNyOLWPNBMv3NpClofjDDzccaZsNR): failed to open stream: Permission denied"
      #code: 0
      #file: "D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
_FCGI_X_PIPE_
"\\.\pipe\IISFCGI-37abdad4-b121-462e-88d4-7a792121e2fc"
TEMP
"D:\Plesk\Vhosts\grupobeh.com\tmp"
TMP
"D:\Plesk\Vhosts\grupobeh.com\tmp"
ALLUSERSPROFILE
"C:\ProgramData"
APPDATA
"C:\Windows\system32\config\systemprofile\AppData\Roaming"
APP_POOL_CONFIG
"C:\inetpub\temp\apppools\apps.grupobeh.com(domain)(4.0)(pool)\apps.grupobeh.com(domain)(4.0)(pool).config"
APP_POOL_ID
"apps.grupobeh.com(domain)(4.0)(pool)"
CommonProgramFiles
"C:\Program Files\Common Files"
CommonProgramFiles(x86)
"C:\Program Files (x86)\Common Files"
CommonProgramW6432
"C:\Program Files\Common Files"
COMPUTERNAME
"3EA6752"
ComSpec
"C:\Windows\system32\cmd.exe"
LOCALAPPDATA
"C:\Windows\system32\config\systemprofile\AppData\Local"
MAILENABLE_PATH
"C:\PROGRA~2\MAILEN~1"
NUMBER_OF_PROCESSORS
"8"
OS
"Windows_NT"
Path
"C:\Program Files (x86)\PHP\v7.4;C:\Windows\system32\inetsrv;C:\Program Files (x86)\Mail Enable\BIN;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Mail Enable\BIN64;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Plesk\Additional\PleskPHP72;C:\ProgramData\ComposerSetup\bin;C:\Program Files\BackupClient\CommandLineTool\;C:\Program Files (x86)\Common Files\Acronis\FileProtector\;C:\Program Files (x86)\Common Files\Acronis\FileProtector64\;C:\Program Files\BackupClient\PyShell\bin\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Users\Administrator\AppData\Local\Microsoft\WindowsApps;C:\Users\Administrator\AppData\Roaming\Composer\vendor\bin;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files (x86)\Plesk\ctl;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps;C:\Windows\system32\config\systemprofile\AppData\Roaming\npm"
PATHEXT
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
plesk_bin
"C:\Program Files (x86)\Plesk\admin\bin"
plesk_bin64
"C:\Program Files (x86)\Plesk\admin\bin64"
plesk_cli
"C:\Program Files (x86)\Plesk\bin"
plesk_data
"D:\Plesk\Data\"
plesk_dir
"C:\Program Files (x86)\Plesk\"
plesk_vhosts
"D:\Plesk\Vhosts\"
PROCESSOR_ARCHITECTURE
"AMD64"
PROCESSOR_IDENTIFIER
"Intel64 Family 6 Model 158 Stepping 9, GenuineIntel"
PROCESSOR_LEVEL
"6"
PROCESSOR_REVISION
"9e09"
ProgramData
"C:\ProgramData"
ProgramFiles
"C:\Program Files"
ProgramFiles(x86)
"C:\Program Files (x86)"
ProgramW6432
"C:\Program Files"
PSModulePath
"C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules"
PUBLIC
"C:\Users\Public"
SystemDrive
"C:"
SystemRoot
"C:\Windows"
USERDOMAIN
"WORKGROUP"
USERNAME
"3EA6752$"
USERPROFILE
"C:\Windows\system32\config\systemprofile"
windir
"C:\Windows"
ORIG_PATH_INFO
"/index.php"
URL
"/index.php"
SERVER_SOFTWARE
"Microsoft-IIS/10.0"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_PORT_SECURE
"0"
SERVER_PORT
"80"
SERVER_NAME
"apps.grupobeh.com"
SCRIPT_NAME
"/index.php"
SCRIPT_FILENAME
"D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\public\index.php"
REQUEST_URI
"/wildrooster/terminos-condiciones"
REQUEST_METHOD
"GET"
REMOTE_USER
""
REMOTE_PORT
"61161"
REMOTE_HOST
"3.149.243.32"
REMOTE_ADDR
"3.149.243.32"
QUERY_STRING
""
PATH_TRANSLATED
"D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\public\index.php"
LOGON_USER
""
LOCAL_ADDR
"74.208.128.85"
INSTANCE_META_PATH
"/LM/W3SVC/26"
INSTANCE_NAME
"APPS.GRUPOBEH.COM"
INSTANCE_ID
"26"
HTTPS_SERVER_SUBJECT
""
HTTPS_SERVER_ISSUER
""
HTTPS_SECRETKEYSIZE
""
HTTPS_KEYSIZE
""
HTTPS
"off"
GATEWAY_INTERFACE
"CGI/1.1"
DOCUMENT_ROOT
"D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\public"
CONTENT_TYPE
""
CONTENT_LENGTH
"0"
CERT_SUBJECT
""
CERT_SERIALNUMBER
""
CERT_ISSUER
""
CERT_FLAGS
""
CERT_COOKIE
""
AUTH_USER
""
AUTH_PASSWORD
""
AUTH_TYPE
""
APPL_PHYSICAL_PATH
"D:\Plesk\Vhosts\grupobeh.com\apps.grupobeh.com\public\"
APPL_MD_PATH
"/LM/W3SVC/26/ROOT"
WEBSOCKET_VERSION
"13"
IIS_UrlRewriteModule
"7,1,1993,2351"
UNENCODED_URL
"/wildrooster/terminos-condiciones"
IIS_WasUrlRewritten
"1"
HTTP_X_ORIGINAL_URL
"/wildrooster/terminos-condiciones"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_HOST
"apps.grupobeh.com"
HTTP_ACCEPT
"*/*"
HTTP_CONTENT_LENGTH
"0"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1713566839.9739
REQUEST_TIME
1713566839
APP_NAME
"Grupo beh"
APP_ENV
"local"
APP_KEY
"base64:tuiY9l5iqSEakxkX6zbRaTFEF9miASOsWJ6EYsRr8RQ="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"BehPortal"
DB_USERNAME
"behPortal"
DB_PASSWORD
"Beh#2019"
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_MAILER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"no-reply@venalispos.com"
MAIL_PASSWORD
"ojwlreciqcckgvyt"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_NAME
"App Pedidos"
MAIL_FROM_ADDRESS
"no-reply@venalispos.com"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
Key Value
APP_NAME
"Grupo beh"
APP_ENV
"local"
APP_KEY
"base64:tuiY9l5iqSEakxkX6zbRaTFEF9miASOsWJ6EYsRr8RQ="
APP_DEBUG
"true"
APP_LOG_LEVEL
"debug"
APP_URL
"http://localhost"
DB_CONNECTION
"mysql"
DB_HOST
"127.0.0.1"
DB_PORT
"3306"
DB_DATABASE
"BehPortal"
DB_USERNAME
"behPortal"
DB_PASSWORD
"Beh#2019"
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_MAILER
"smtp"
MAIL_HOST
"smtp.gmail.com"
MAIL_PORT
"587"
MAIL_USERNAME
"no-reply@venalispos.com"
MAIL_PASSWORD
"ojwlreciqcckgvyt"
MAIL_ENCRYPTION
"tls"
MAIL_FROM_NAME
"App Pedidos"
MAIL_FROM_ADDRESS
"no-reply@venalispos.com"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
0. Whoops\Handler\PrettyPageHandler