devkametal.com
Open in
urlscan Pro
2a06:41c0:1:22::30
Public Scan
URL:
https://devkametal.com/
Submission: On November 20 via api from US — Scanned from DE
Submission: On November 20 via api from US — Scanned from DE
Form analysis
0 forms found in the DOMText Content
SYMFONY EXCEPTION Symfony Docs ERROREXCEPTION HTTP 500 INTERNAL SERVER ERROR FILE_PUT_CONTENTS(/USERS/ZEYNEPUZUNSOY/DEVKA/STORAGE/FRAMEWORK/VIEWS/350CF71F304B4237A9D7C8F5A8C17660.PHP): FAILED TO OPEN STREAM: NO SUCH FILE OR DIRECTORY Exception Stack Trace EXCEPTION ERROREXCEPTION Show exception properties 0 of 0 ErrorException {#277 ▼ #severity: E_WARNING } in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php (line 204) 199. * @param bool $lock 200. * @return int|bool 201. */ 202. public function put($path, $contents, $lock = false) 203. { 204. return file_put_contents($path, $contents, $lock ? LOCK_EX : 0); 205. } 206. 207. /** 208. * Write the contents of a file, replacing it atomically if it already exists. 209. * in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php -> handleError (line 256) 251. * @return callable 252. */ 253. protected function forwardsTo($method) 254. { 255. return fn (...$arguments) => static::$app 256. ? $this->{$method}(...$arguments) 257. : false; 258. } 259. 260. /** 261. * Determine if the error level is a deprecation. HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}() in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php file_put_contents (line 204) 199. * @param bool $lock 200. * @return int|bool 201. */ 202. public function put($path, $contents, $lock = false) 203. { 204. return file_put_contents($path, $contents, $lock ? LOCK_EX : 0); 205. } 206. 207. /** 208. * Write the contents of a file, replacing it atomically if it already exists. 209. * in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php -> put (line 194) 189. 190. $this->ensureCompiledDirectoryExists( 191. $compiledPath = $this->getCompiledPath($this->getPath()) 192. ); 193. 194. $this->files->put($compiledPath, $contents); 195. } 196. } 197. 198. /** 199. * Append the file path to the compiled string. in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php -> compile (line 66) 61. 62. // If this given view has expired, which means it has simply been edited since 63. // it was last compiled, we will re-compile the views so we can evaluate a 64. // fresh copy of the view. We'll pass the compiler the path of the view. 65. if (! isset($this->compiledOrNotExpired[$path]) && $this->compiler->isExpired($path)) { 66. $this->compiler->compile($path); 67. } 68. 69. // Once we have the path to the compiled file, we will evaluate the paths with 70. // typical PHP just like any other templates. We also keep a stack of views 71. // which have been rendered for right exception messages to be generated. in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/View.php -> get (line 208) 203. * 204. * @return string 205. */ 206. protected function getContents() 207. { 208. return $this->engine->get($this->path, $this->gatherData()); 209. } 210. 211. /** 212. * Get the data bound to the view instance. 213. * in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/View.php -> getContents (line 191) 186. // clear out the sections for any separate views that may be rendered. 187. $this->factory->incrementRender(); 188. 189. $this->factory->callComposer($this); 190. 191. $contents = $this->getContents(); 192. 193. // Once we've finished rendering the view, we'll decrement the render count 194. // so that each section gets flushed out next time a view is created and 195. // no old sections are staying around in the memory of an environment. 196. $this->factory->decrementRender(); in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/View.php -> renderContents (line 160) 155. * @throws \Throwable 156. */ 157. public function render(?callable $callback = null) 158. { 159. try { 160. $contents = $this->renderContents(); 161. 162. $response = isset($callback) ? $callback($this, $contents) : null; 163. 164. // Once we have the contents of the view, we will flush the sections if we are 165. // done rendering all views so that there is nothing left hanging over when in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php -> render (line 94) 89. $this->htmlErrorRenderer->render($throwable), 90. ); 91. 92. return $this->viewFactory->make('laravel-exceptions-renderer::show', [ 93. 'exception' => new Exception($flattenException, $request, $this->listener, $this->basePath), 94. ])->render(); 95. } 96. 97. /** 98. * Get the renderer's CSS content. 99. * in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php -> render (line 845) 840. try { 841. if (config('app.debug')) { 842. if (app()->has(ExceptionRenderer::class)) { 843. return $this->renderExceptionWithCustomRenderer($e); 844. } elseif ($this->container->bound(Renderer::class)) { 845. return $this->container->make(Renderer::class)->render(request(), $e); 846. } 847. } 848. 849. return $this->renderExceptionWithSymfony($e, config('app.debug')); 850. } catch (Throwable $e) { in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php -> renderExceptionContent (line 826) 821. * @return \Symfony\Component\HttpFoundation\Response 822. */ 823. protected function convertExceptionToResponse(Throwable $e) 824. { 825. return new SymfonyResponse( 826. $this->renderExceptionContent($e), 827. $this->isHttpException($e) ? $e->getStatusCode() : 500, 828. $this->isHttpException($e) ? $e->getHeaders() : [] 829. ); 830. } 831. in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php -> convertExceptionToResponse (line 805) 800. * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse|\Illuminate\Http\RedirectResponse 801. */ 802. protected function prepareResponse($request, Throwable $e) 803. { 804. if (! $this->isHttpException($e) && config('app.debug')) { 805. return $this->toIlluminateResponse($this->convertExceptionToResponse($e), $e)->prepare($request); 806. } 807. 808. if (! $this->isHttpException($e)) { 809. $e = new HttpException(500, $e->getMessage(), $e); 810. } in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php -> prepareResponse (line 704) 699. */ 700. protected function renderExceptionResponse($request, Throwable $e) 701. { 702. return $this->shouldReturnJson($request, $e) 703. ? $this->prepareJsonResponse($request, $e) 704. : $this->prepareResponse($request, $e); 705. } 706. 707. /** 708. * Convert an authentication exception into a response. 709. * in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php -> renderExceptionResponse (line 592) 587. 588. return $this->finalizeRenderedResponse($request, match (true) { 589. $e instanceof HttpResponseException => $e->getResponse(), 590. $e instanceof AuthenticationException => $this->unauthenticated($request, $e), 591. $e instanceof ValidationException => $this->convertValidationExceptionToResponse($e, $request), 592. default => $this->renderExceptionResponse($request, $e), 593. }, $e); 594. } 595. 596. /** 597. * Prepare the final, rendered response to be returned to the browser. in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php -> render (line 219) 214. * @param \Throwable $e 215. * @return void 216. */ 217. protected function renderHttpResponse(Throwable $e) 218. { 219. $this->getExceptionHandler()->render(static::$app['request'], $e)->send(); 220. } 221. 222. /** 223. * Handle the PHP shutdown event. 224. * in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php -> renderHttpResponse (line 196) 191. 192. if ($exceptionHandlerFailed ?? false) { 193. exit(1); 194. } 195. } else { 196. $this->renderHttpResponse($e); 197. } 198. } 199. 200. /** 201. * Render an exception to the console. in /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php -> handleException (line 256) 251. * @return callable 252. */ 253. protected function forwardsTo($method) 254. { 255. return fn (...$arguments) => static::$app 256. ? $this->{$method}(...$arguments) 257. : false; 258. } 259. 260. /** 261. * Determine if the error level is a deprecation. HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}() STACK TRACE ErrorException ErrorException: file_put_contents(/Users/zeynepuzunsoy/DevKa/storage/framework/views/350cf71f304b4237a9d7c8f5a8c17660.php): Failed to open stream: No such file or directory at /home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:204 at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:256) at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}() at file_put_contents() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:204) at Illuminate\Filesystem\Filesystem->put() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php:194) at Illuminate\View\Compilers\BladeCompiler->compile() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:66) at Illuminate\View\Engines\CompilerEngine->get() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:208) at Illuminate\View\View->getContents() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:191) at Illuminate\View\View->renderContents() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/View/View.php:160) at Illuminate\View\View->render() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php:94) at Illuminate\Foundation\Exceptions\Renderer\Renderer->render() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:845) at Illuminate\Foundation\Exceptions\Handler->renderExceptionContent() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:826) at Illuminate\Foundation\Exceptions\Handler->convertExceptionToResponse() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:805) at Illuminate\Foundation\Exceptions\Handler->prepareResponse() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:704) at Illuminate\Foundation\Exceptions\Handler->renderExceptionResponse() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:592) at Illuminate\Foundation\Exceptions\Handler->render() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:219) at Illuminate\Foundation\Bootstrap\HandleExceptions->renderHttpResponse() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:196) at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException() (/home/devkamet/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:256) at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}()