Debug (line 262 of RequestHandler.php): Testing '$Action!' with '' on ResourcePageController

Debug (line 262 of RequestHandler.php): Testing 'HandleLeadForm' with '' on ResourcePageController

Debug (line 262 of RequestHandler.php): Testing 'element/$ID!' with '' on ResourcePageController

Debug (line 262 of RequestHandler.php): Testing '$Action//$ID/$OtherID' with '' on ResourcePageController

Debug (line 270 of RequestHandler.php): Rule '$Action//$ID/$OtherID' matched to action 'handleAction' on ResourcePageController. Latest request params: array ( 'Action' => NULL, 'ID' => NULL, 'OtherID' => NULL, )

Debug (line 186 of RequestHandler.php): Action not set; using default action method name 'index'

GET /resources/?debug_request=1

[User Notice] File assets/_css/theme.css does not exist

GET /resources/?debug_request=1

Line 94 in /home/dlitd/staging.dontloveittodeath.com/releases/14/vendor/silverstripe/framework/src/Control/SimpleResourceURLGenerator.php

Source

85                 $ret = Deprecation::withNoReplacement(function () use ($relativePath) {
86                     return $this->resolveUnsecuredResource($relativePath);
87                 });
88                 list($exists, $absolutePath, $relativePath) = $ret;
89             } else {
90                 list($exists, $absolutePath, $relativePath) = $this->resolvePublicResource($relativePath);
91             }
92         }
93         if (!$exists) {
94             trigger_error("File {$relativePath} does not exist", E_USER_NOTICE);
95         }
96 
97         // Switch slashes for URL
98         $relativeURL = Convert::slashes($relativePath, '/');
99 
100         // Apply url rewrites

Trace

GET /resources/?debug_request=1

[User Warning] None of the following templates could be found: Array ( [0] => Array ( [type] => Includes [0] => BetterNavigator\BetterNavigatorExtraDebugging ) [1] => BetterNavigator\BetterNavigatorExtraDebugging ) in themes "Array ( [0] => $public [1] => default [2] => $default ) "

GET /resources/?debug_request=1

Line 215 in /home/dlitd/staging.dontloveittodeath.com/releases/14/vendor/silverstripe/framework/src/View/SSViewer.php

Source

206             $message .= print_r($templates, true);
207 
208             $themes = self::get_themes();
209             if (!$themes) {
210                 $message .= ' (no theme in use)';
211             } else {
212                 $message .= ' in themes "' . print_r($themes, true) . '"';
213             }
214 
215             user_error($message ?? '', E_USER_WARNING);
216         }
217     }
218 
219     /**
220      * Triggered early in the request when someone requests a flush.
221      */

Trace

GET /resources/?debug_request=1

[Emergency] Uncaught ValueError: Path cannot be empty

GET /resources/?debug_request=1

Line 642 in /home/dlitd/staging.dontloveittodeath.com/releases/14/vendor/silverstripe/framework/src/View/SSViewer.php

Source

633         SSViewer::$topLevel[] = $item;
634 
635         $template = $this->chosen;
636 
637         $cacheFile = TEMP_PATH . DIRECTORY_SEPARATOR . '.cache'
638             . str_replace(['\\','/',':'], '.', Director::makeRelative(realpath($template ?? '')) ?? '');
639         $lastEdited = filemtime($template ?? '');
640 
641         if (!file_exists($cacheFile ?? '') || filemtime($cacheFile ?? '') < $lastEdited) {
642             $content = file_get_contents($template ?? '');
643             $content = $this->parseTemplateContent($content, $template);
644 
645             $fh = fopen($cacheFile ?? '', 'w');
646             fwrite($fh, $content ?? '');
647             fclose($fh);
648         }

Trace