There was a problem with a Velocity script
Pagesports/wbkb/2023-24/bios/default-decorator
ErrorInvocation of method 'include' in class com.prestosports.render.ContentEngineInvoker threw exception java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 1,271 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at etzhjqdmnvqsjzk5sports/wbkb/2023-24/bios/default-decorator[line 27, column 18]
Page source:
1: #set ($pageContainer    = "container")
2: #set ($pageClass        = "internal-page")
3: #set ($showBookmark     = true)
4: #set ($landing          = false)
5: 
6: #if ($request.getAttribute("pageContainer")) #set ($pageContainer = $request.getAttribute("pageContainer")) #end
7: #if ($request.getAttribute("pageClass")) #set ($pageClass = $request.getAttribute("pageClass")) #end
8: #if ($request.getAttribute("showBookmark") == false) #set ($showBookmark = false) #end
9: #if ($request.getAttribute("landing"))
10:     #set ($landing = $request.getAttribute("landing"))
11:     #set ($landing = $Boolean.parseBoolean($landing))
12: #end
13: 
14: ## PICK UP OPTIONS
15: $website.include("options")
16: #set ($options = $request.getAttribute("options"))
17: 
18: #set ($language = "en")
19: #if ($options.get("site_lang") != "en")
20:     #set ($language = $options.get("site_lang"))
21: #end
22: 
23: <!doctype html>
24: <html lang="${language}" class="${pageClass}" data-theme-2="alliance">
25:     <head>
26:         $!request.setAttribute("pageObj", $page)
27:         $website.include("inc-head")
28:         $!head
29:         <link rel="stylesheet" href="/theme.css" type="text/css" />
30:         <link rel="stylesheet" href="/site.css" type="text/css" />
31:     </head>  
32:     <body>
33:         
34:         <a href="#component-navbar-primary" class="visually-hidden-focusable">Skip to navigation</a>
35:         <a href="#site-main" class="visually-hidden-focusable">Skip to content</a>
36:         <a href="#site-footer" class="visually-hidden-focusable">Skip to footer</a>
37: 
38:         $website.include("header")
39: 
40:         #if (!$landing && ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || $website.ads.isMediaAdsEnabled()))
41:         <!-- 728x90/970x90/970x250/300x250/320x50 -->
42:         <div id="waldo-tag-banner"></div>
43:         #end
44:         
45:         <main id="site-main" class="site-main">
46:             <div class="${pageContainer}">
47:                 $body 
48:                 #if ($showBookmark) $website.include("share-buttons") #end
49:                 $wiki
50:             </div>
51:         </main>
52: 
53:         #if ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || $website.ads.isMediaAdsEnabled())
54:         <!-- 728x90/970x90/970x250/300x250/320x50 -->
55:         <div id="waldo-tag-bottom-banner"></div>
56:         #end
57:         
58:         $website.include("footer")
59: 
60:         #if ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || ($website.ads.isMediaAdsEnabled() && $website.ads.isMediaAdditionalAdsEnabled()))
61:         <!-- Sticky Footer -->
62:         <!-- 728x90/320x50 -->
63:             <div id="waldo-tag-sticky-footer"></div>
64:         #end
65: 
66:         $!wiki.su
67:         $website.usage
68:         $website.include("dropoff-scripts")
69:         $request.setAttribute("icl-animate-on-scroll-script", true)
70:     </body>
71: </html>