Overview
Conformal Coating Operative Jobs in Luton, England, United Kingdom at JALTEK DESIGN SERVICES LIMITED
Title: Conformal Coating Operative
Company: JALTEK DESIGN SERVICES LIMITED
Location: Luton, England, United Kingdom
yiiwebForbiddenHttpException: You are not authorized to access this resource. in /home/jaltek/www.jaltek.com/vendor/masugadesign/linkvault/src/controllers/LinkVaultController.php:108 Stack trace: #0 /home/jaltek/www.jaltek.com/vendor/masugadesign/linkvault/src/controllers/LinkVaultController.php(72): MasugaLinkVaultcontrollersLinkVaultController->renderErrorTemplate() #1 [internal function]: MasugaLinkVaultcontrollersLinkVaultController->actionServe() #2 /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/InlineAction.php(57): call_user_func_array() #3 /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/Controller.php(178): yiibaseInlineAction->runWithParams() #4 /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/Module.php(552): yiibaseController->runAction() #5 /home/jaltek/www.jaltek.com/vendor/craftcms/cms/src/web/Application.php(349): yiibaseModule->runAction() #6 /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/web/Application.php(103): craftwebApplication->runAction() #7 /home/jaltek/www.jaltek.com/vendor/craftcms/cms/src/web/Application.php(317): yiiwebApplication->handleRequest() #8 /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/Application.php(384): craftwebApplication->handleRequest() #9 /home/jaltek/www.jaltek.com/web/index.php(12): yiibaseApplication->run() #10 {main} Copied!
HTTP 403 – Forbidden – yiiwebForbiddenHttpException
You are not authorized to access this resource.
- 1. in /home/jaltek/www.jaltek.com/vendor/masugadesign/linkvault/src/controllers/LinkVaultController.php at line 108
99100101102103104105106107108109110111112113114115116117 // Fetch the regular templates path. $oldPath = Craft::$app->path->getSiteTemplatesPath(); // Fetch the preferred template from the plugin settings. $template = $status === 403 ? $this->plugin->getSettings()->leechTemplate : $this->plugin->getSettings()->missingTemplate; // No template? Let Craft handle the responses as ususal. if ( ! $template ) { if ( $status === 403 ) { throw new ForbiddenHttpException('You are not authorized to access this resource.'); } else { throw new NotFoundHttpException('The file you requested was not found.'); } } $content = Craft::$app->getView()->renderTemplate($template); // Whether or not it was changed, restore the original templates path. Craft::$app->view->setTemplatesPath($oldPath); return $content; }
- 2. in /home/jaltek/www.jaltek.com/vendor/masugadesign/linkvault/src/controllers/LinkVaultController.php at line 72 – MasugaLinkVaultcontrollersLinkVaultController::renderErrorTemplate()
66676869707172737475767778 } // blockLeechAttempts is enabled AND a leech attempt was detected. } else { if ( $this->plugin->getSettings()->logLeechAttempts === true ) { $this->plugin->general->logDownload($parameters, 'Leech Attempt'); } $html = $this->renderErrorTemplate(403); $response = Craft::$app->getResponse()->setStatusCode(403); $response->content = $html; } return $response; }
- 3. MasugaLinkVaultcontrollersLinkVaultController::actionServe()
- 4. in /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/InlineAction.php at line 57 – call_user_func_array()
515253545556575859 $args = $this->controller->bindActionParams($this, $params); Yii::debug('Running action: ' . get_class($this->controller) . '::' . $this->actionMethod . '()', __METHOD__); if (Yii::$app->requestedParams === null) { Yii::$app->requestedParams = $args; } return call_user_func_array([$this->controller, $this->actionMethod], $args); } }
- 5. in /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/Controller.php at line 178 – yiibaseInlineAction::runWithParams()
172173174175176177178179180181182183184 } $result = null; if ($runAction && $this->beforeAction($action)) { // run the action $result = $action->runWithParams($params); $result = $this->afterAction($action, $result); // call afterAction on modules foreach ($modules as $module) { /* @var $module Module */
- 6. in /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/Module.php at line 552 – yiibaseController::runAction()
546547548549550551552553554555556557558 $parts = $this->createController($route); if (is_array($parts)) { /* @var $controller Controller */ list($controller, $actionID) = $parts; $oldController = Yii::$app->controller; Yii::$app->controller = $controller; $result = $controller->runAction($actionID, $params); if ($oldController !== null) { Yii::$app->controller = $oldController; } return $result; }
- 7. in /home/jaltek/www.jaltek.com/vendor/craftcms/cms/src/web/Application.php at line 349 – yiibaseModule::runAction()
343344345346347348349350351352353354355 * @param string $route * @param array $params * @return BaseResponse|null The result of the action, normalized into a Response object */ public function runAction($route, $params = []): ?BaseResponse { $result = parent::runAction($route, $params); if ($result === null || $result instanceof BaseResponse) { return $result; } $response = $this->getResponse();
- 8. in /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/web/Application.php at line 103 – craftwebApplication::runAction()
979899100101102103104105106107108109 $params = $this->catchAll; unset($params[0]); } try { Yii::debug("Route requested: '$route'", __METHOD__); $this->requestedRoute = $route; $result = $this->runAction($route, $params); if ($result instanceof Response) { return $result; } $response = $this->getResponse(); if ($result !== null) {
- 9. in /home/jaltek/www.jaltek.com/vendor/craftcms/cms/src/web/Application.php at line 317 – yiiwebApplication::handleRequest()
311312313314315316317318319320321322323 if (($response = $this->_processActionRequest($request)) !== null) { return $response; } // If we’re still here, finally let Yii do its thing. try { return parent::handleRequest($request); } catch (Throwable $e) { $this->_unregisterDebugModule(); throw $e; } }
- 10. in /home/jaltek/www.jaltek.com/vendor/yiisoft/yii2/base/Application.php at line 384 – craftwebApplication::handleRequest()
378379380381382383384385386387388389390 { try { $this->state = self::STATE_BEFORE_REQUEST; $this->trigger(self::EVENT_BEFORE_REQUEST); $this->state = self::STATE_HANDLING_REQUEST; $response = $this->handleRequest($this->getRequest()); $this->state = self::STATE_AFTER_REQUEST; $this->trigger(self::EVENT_AFTER_REQUEST); $this->state = self::STATE_SENDING_RESPONSE; $response->send();
- 11. in /home/jaltek/www.jaltek.com/web/index.php at line 12 – yiibaseApplication::run()
6789101112 // Load shared bootstrap require dirname(__DIR__) . '/bootstrap.php'; // Load and run Craft /** @var craftwebApplication $app */ $app = require CRAFT_VENDOR_PATH . '/craftcms/cms/bootstrap/web.php'; $app->run();
$_GET = [ 'lv' => 'zQY2l0GqmzgpOt%2BB7y3E1zM4ZTllMjU3OGM4ZWY0YTUwNGFkZWE3MWIwMmUxNGZiZTlhM2FhZDRmNWM2YTZlOTM2MjFlZWM2YzYzMDBiMjcP4U0pFCWYxbU5wx8AB9UApG0HoWAT64e8VB4N%2FpeUuuXBvJuWyUs6N0rxmXTx6k%2FmC6hjt6LaXR5PbrSn95foLRhCntUaVCJdQz6GnfD9W5VmnZunr8kboRUO7Fr7o6JwEWnN9VYoAASvxhcjEsXwjkIetNDcXh9ysmhXhsHLE7uVDW3o5N%2BQ%2FPYqAvc%2BHt5WSRXy3fDDTrk%2BBCtDH4Aa', ]; $_COOKIE = [ 'CRAFT_CSRF_TOKEN' => 'ddb0d3c52bd0632cb12ff44da65ff8606d58167c97b16fbb408f444040f84338a:2:{i:0;s:16:"CRAFT_CSRF_TOKEN";i:1;s:40:"5e6HXG8h1LSIY7ulp6XdXoGGctbSSamd72pRgYTf";}', '_ga_P51178809H' => 'GS2.1.s1782702573$o1$g0$t1782702573$j60$l0$h0', '_ga' => 'GA1.1.27254828.1782702574', ];
2026-06-29, 03:09:34
nginx/1.28.0
Yii Framework/2.0.52