There was a problem with a Velocity script
Pagesports/wvball/2013-14/players/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 120,713 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at hqmzr3ctvtvnjncbsports/wvball/2013-14/players/default-decorator[line 27, column 18]
Page source:
1: #set ($pageContainer    = "container p-3 my-4 border shadow-sm")
2: #set ($pageClass        = "internal-page")
3: #set ($showBookmark     = true)
4: #set ($landing          = false)
5: 
6: #if ($request.getAttribute("pageContainer")) #set ($container = $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="macon">
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:         <a href="#site-navigation" class="visually-hidden-focusable">Skip to navigation</a>
34:         <a href="#site-main" class="visually-hidden-focusable">Skip to content</a>
35:         <a href="#site-footer" class="visually-hidden-focusable">Skip to footer</a>
36:         
37:         $website.include("header")
38: 
39:         #if (!$landing && ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || $website.ads.isMediaAdsEnabled()))
40:         <!-- 728x90/970x90/970x250/300x250/320x50 -->
41:         <div id="waldo-tag-banner"></div>
42:         #end
43:         
44:         <main id="site-main" class="site-main" role="main">
45:             <div class="${pageContainer} p-3 py-4">
46:                 $body 
47:                 #if ($showBookmark) $website.include("share-buttons") #end
48:                 $wiki
49:             </div>
50:         </main>
51: 
52:         #if ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || $website.ads.isMediaAdsEnabled())
53:         <!-- 728x90/970x90/970x250/300x250/320x50 -->
54:         <div id="waldo-tag-bottom-banner"></div>
55:         #end
56: 
57:         $website.include("footer")
58: 
59:         #if ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || ($website.ads.isMediaAdsEnabled() && $website.ads.isMediaAdditionalAdsEnabled()))
60:         <!-- Sticky Footer --><!-- 728x90/320x50 -->
61:             <div id="waldo-tag-sticky-footer"></div>
62:         #end
63: 
64:         $!wiki.su
65:         $website.usage
66:         $website.include("dropoff-scripts")
67:     </body>
68: </html>