四川技能大赛—首届“5G+虚拟现实应用开发”大赛

发布时间:2023-10-30

1698658726583517.jpg


102829日,四川技能大赛首届5G+虚拟现实应用开发大赛在成都市四川城市职业学院成功举办。本次大赛为一类职业技能大赛,由经济和信息化厅、人力资源社会保障厅、省教育厅、省总工会共青团四川省委主办成都博文达科技为本次大赛提供技术支撑,积极做好技术协调和保障工作,护航参赛选手和比赛现场安全稳定。

 

 

1698658987978833.png


大赛面向省内虚拟现实相关技术人员及团队吸引了来自省内14所职业院校的 52名选手报名,多个参赛队伍同台竞技,比赛内容包含平台搭建、交互设计编码远程协作通信、虚实画面融合直播 4 个模块。大赛以新技术、新工艺、新规范为基础,围绕产业升级、行业企业转型升级等虚拟现实应用场景,考核虚拟现实开发员平台搭建交互设计编码、远程协作通信、虚实画面融合直播能力。



  

image.png

大赛充分展现了我省虚拟现实技术人才的创新能力和高超的技能水平推动虚拟现实技术的发展和应用,为四川省的工业和信息化技术技能发展做出贡献

公司以虚拟仿真实训基地、信息化校园建设为主,且专注于虚拟现实行业技术在教育行业应用,是各类院校虚拟仿真系统方案的提供商和服务商。


Whoops! There was an error.
UnexpectedValueException
The stream or file "/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied UnexpectedValueException thrown with message "The stream or file "/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied" Stacktrace: #9 UnexpectedValueException in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:107 #8 Monolog\Handler\StreamHandler:write in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:37 #7 Monolog\Handler\AbstractProcessingHandler:handle in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/monolog/monolog/src/Monolog/Logger.php:337 #6 Monolog\Logger:addRecord in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/monolog/monolog/src/Monolog/Logger.php:616 #5 Monolog\Logger:error in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Log/Writer.php:203 #4 Illuminate\Log\Writer:writeLog in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Log/Writer.php:114 #3 Illuminate\Log\Writer:error in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:113 #2 Illuminate\Foundation\Exceptions\Handler:report in /home/bwd888884bgwkdn828w8r8r8/wwwroot/app/Exceptions/Handler.php:39 #1 App\Exceptions\Handler:report in /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
Application frames (1) All frames (10)
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
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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 "/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied"
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
      "context" => array:1 [
        "exception" => ErrorException {
          #message: "file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
          #code: 0
          #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "local"
      "datetime" => DateTime {}
      "extra" => []
      "formatted" => """
        [2026-05-11 17:57:41] local.ERROR: file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied {"exception":"[object] (ErrorException(code: 0): file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied at /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/bwd888884...', 122, Array)\n
        #1 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/bwd888884...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/bwd888884...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('LkIhhU4I842bB4u...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/bwd888884bgwkdn828w8r8r8/wwwroot/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 /home/bwd888884bgwkdn828w8r8r8/wwwroot/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 /home/bwd888884bgwkdn828w8r8r8/wwwroot/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
      "context" => array:1 [
        "exception" => ErrorException {
          #message: "file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
          #code: 0
          #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "local"
      "datetime" => DateTime {}
      "extra" => []
      "formatted" => """
        [2026-05-11 17:57:41] local.ERROR: file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied {"exception":"[object] (ErrorException(code: 0): file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied at /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/bwd888884...', 122, Array)\n
        #1 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/bwd888884...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/bwd888884...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('LkIhhU4I842bB4u...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/bwd888884bgwkdn828w8r8r8/wwwroot/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 /home/bwd888884bgwkdn828w8r8r8/wwwroot/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 /home/bwd888884bgwkdn828w8r8r8/wwwroot/public/index.php(60): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
    
  3. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
        #code: 0
        #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
    
  2. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
        #code: 0
        #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
    
  3. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
        #code: 0
        #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
    
  2. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
        #code: 0
        #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
      #code: 0
      #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
/
home
/
bwd888884bgwkdn828w8r8r8
/
wwwroot
/
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(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
      #code: 0
      #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
[internal]
Arguments
  1. ErrorException {
      #message: "file_put_contents(/home/bwd888884bgwkdn828w8r8r8/wwwroot/storage/framework/sessions/LkIhhU4I842bB4uGkNPBc9Y0Au5xZBLwlXK9xS1V): failed to open stream: Permission denied"
      #code: 0
      #file: "/home/bwd888884bgwkdn828w8r8r8/wwwroot/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    

Environment & details:

Key Value
id
"48"
empty
empty
Key Value
XSRF-TOKEN
"eyJpdiI6InJPa2c5ZHBmSzBSZzhpWVFucXQ2VWc9PSIsInZhbHVlIjoiYW82d3cxdnZkb0p1em9rS0pmNTErd3ROVmJWTHk5YnVtUVczZE1NTENxYXBQS1RxcHYzd0ZjOExXRklRSFh5eDc2aWNNTGR3TTJURUkzWkZBV084M2c9PSIsIm1hYyI6ImI2ZjA1YjQzZjQ4MTVkMmQzNDdkMDFlOTU3NjQzNTc1OTRiOTMyODgzZjY4MDAxN2NmYWVlODYxMGZjODhjN2UifQ=="
laravel_session
"eyJpdiI6IlNCODJ2b2VzYU40czhGK0NEXC85WUl3PT0iLCJ2YWx1ZSI6ImRBV3hVUWRxXC85UlZPUDJSWWlsRHl3bTdPWVVxeHdTVFk1VEE1eWhpTzF1TTJNS1wvY3BiNHJoZTJXeWE3ZVBLVERENnY0Q1c5Q0t3eEQ4TjNSMmJYb0E9PSIsIm1hYyI6ImZmNzcxNzMxOGQ2MGU0M2E2MjgyOTk2MTUyMGU3MzUxNTJjN2Y2MDg5MTQ2Yjk2N2RiMmYxOTJjZTE5NTU2NDYifQ=="
empty
Key Value
REDIRECT_REDIRECT_REDIRECT_UNIQUE_ID
"agIYlYBukojTzDhPbBC4@AAAAAE"
REDIRECT_REDIRECT_REDIRECT_PHPRC
"/home/bwd888884bgwkdn828w8r8r8/others"
REDIRECT_REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_REDIRECT_UNIQUE_ID
"agIYlYBukojTzDhPbBC4@AAAAAE"
REDIRECT_REDIRECT_PHPRC
"/home/bwd888884bgwkdn828w8r8r8/others"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"agIYlYBukojTzDhPbBC4@AAAAAE"
REDIRECT_PHPRC
"/home/bwd888884bgwkdn828w8r8r8/others"
REDIRECT_HANDLER
"php-cgi"
REDIRECT_STATUS
"200"
UNIQUE_ID
"agIYlYBukojTzDhPbBC4@AAAAAE"
PHPRC
"/home/bwd888884bgwkdn828w8r8r8/others"
HTTP_X_FORWARDED_FOR
"10.1.222.59"
HTTP_X_REAL_IP
"216.73.217.1"
HTTP_REALIP_WTS_X
"216.73.217.1"
HTTP_HOST
"www.cdbwdkj.cn"
HTTP_CONNECTION
"close"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_COOKIE
"XSRF-TOKEN=eyJpdiI6InJPa2c5ZHBmSzBSZzhpWVFucXQ2VWc9PSIsInZhbHVlIjoiYW82d3cxdnZkb0p1em9rS0pmNTErd3ROVmJWTHk5YnVtUVczZE1NTENxYXBQS1RxcHYzd0ZjOExXRklRSFh5eDc2aWNNTGR3TTJURUkzWkZBV084M2c9PSIsIm1hYyI6ImI2ZjA1YjQzZjQ4MTVkMmQzNDdkMDFlOTU3NjQzNTc1OTRiOTMyODgzZjY4MDAxN2NmYWVlODYxMGZjODhjN2UifQ%3D%3D; laravel_session=eyJpdiI6IlNCODJ2b2VzYU40czhGK0NEXC85WUl3PT0iLCJ2YWx1ZSI6ImRBV3hVUWRxXC85UlZPUDJSWWlsRHl3bTdPWVVxeHdTVFk1VEE1eWhpTzF1TTJNS1wvY3BiNHJoZTJXeWE3ZVBLVERENnY0Q1c5Q0t3eEQ4TjNSMmJYb0E9PSIsIm1hYyI6ImZmNzcxNzMxOGQ2MGU0M2E2MjgyOTk2MTUyMGU3MzUxNTJjN2Y2MDg5MTQ2Yjk2N2RiMmYxOTJjZTE5NTU2NDYifQ%3D%3D"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_VIA
"1.1 squid-proxy-7c6b6f947b-bx4mm (squid/6.13)"
HTTP_CACHE_CONTROL
"max-age=0"
PATH
"/sbin:/usr/sbin:/bin:/usr/bin"
SERVER_SIGNATURE
"<address>Apache Server at www.cdbwdkj.cn Port 80</address>\n"
SERVER_SOFTWARE
"Apache"
SERVER_NAME
"www.cdbwdkj.cn"
SERVER_ADDR
"127.0.0.1"
SERVER_PORT
"80"
REMOTE_ADDR
"216.73.217.1"
DOCUMENT_ROOT
"/home/bwd888884bgwkdn828w8r8r8/wwwroot"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
"/php-run-as-cgi"
CONTEXT_DOCUMENT_ROOT
"/usr/php7.0/bin"
SERVER_ADMIN
"webmaster@bwd88888"
SCRIPT_FILENAME
"/home/bwd888884bgwkdn828w8r8r8/wwwroot/public/index.php"
REMOTE_PORT
"51168"
REDIRECT_URL
"/public/index.php"
REDIRECT_QUERY_STRING
"id=48"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
"id=48"
REQUEST_URI
"/home/news_detail?id=48"
SCRIPT_NAME
"/public/index.php"
ORIG_SCRIPT_FILENAME
"/usr/php7.0/bin/php-cgi"
ORIG_PATH_INFO
"/public/index.php"
ORIG_PATH_TRANSLATED
"/home/bwd888884bgwkdn828w8r8r8/wwwroot/public/index.php"
ORIG_SCRIPT_NAME
"/php-run-as-cgi/php-cgi"
PHP_SELF
"/public/index.php"
REQUEST_TIME_FLOAT
1778522261.5159
REQUEST_TIME
1778522261
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:0JHM+FRQmM8hVOevU1VF3DtLkiH+XwMYyC38VN7ICXM="
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
"bwd88888"
DB_USERNAME
"bwd88888"
DB_PASSWORD
"3thek5bc"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
ALGOLIA_APP_ID
"ADJK5BAC5T"
ALGOLIA_SECRET
"189608359b169a9eabe31b6d2e4e6f19"
Key Value
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:0JHM+FRQmM8hVOevU1VF3DtLkiH+XwMYyC38VN7ICXM="
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
"bwd88888"
DB_USERNAME
"bwd88888"
DB_PASSWORD
"3thek5bc"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
ALGOLIA_APP_ID
"ADJK5BAC5T"
ALGOLIA_SECRET
"189608359b169a9eabe31b6d2e4e6f19"
0. Whoops\Handler\PrettyPageHandler