An unexpected error has occured.
System.Web.HttpException (0x80004005): Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerWrapper'. ---> System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.Exception:
Error processing template
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Message: The wait operation timed out
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
StackTrace:
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Source:
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
TargetSite:
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
001:
002: #set($maxItemsOnMenu = 7)
003: #foreach($section in $Website.Sections)
004: #if ($section.Name == 'About Us' && $section.NavigationShowInHeader == false)
005: #set($maxItemsOnMenu = $maxItemsOnMenu - 1)
006: #end
007: #end
008:
009: #set($hasMultiplePhones = false)
010: #if($Website.Phones.count > 0)
011: #set($hasMultiplePhones = true)
012: #end
013: #set($hasPhone = false)
014: #if($hasMultiplePhones || "$!{Website.Phone}" != "")
015: #set($hasPhone = true)
016: #end
017:
018: #if($Website.CurrentTribute)
019: #set($hideStoreButton = $Website.CurrentTribute.HasOption(4001))
020: #end
021:
022: <div id="TemplateHeaderSub" class="template-header-sub #if(!$Store)no-store#end #if(!$Store)no-store#end #if($hideStoreButton)hide-store-button#end" data-sticky>
023: <div class="header-sub-wrapper">
024: #if ($hasPhone && !$tributePage)
025: <div class="template-header-mobile-bar #if($hasMultiplePhones)template-header-mobile-bar--$!{Website.Phones.Count} #else template-header-mobile-bar--1#end">
026: #if($hasMultiplePhones)
027: #if($Website.Phones.Count > 2)
028: <a class="template-header-mobile-bar__phone template-header-mobile-bar__phone--popuplink" href="#phones-modal" data-mfp>
029: <span><i class="fa fa-phone mr-xs"></i> Call Us</span>
030: </a>
031: #end
032: #foreach($phone in $Website.Phones)
033: #set($phoneLocationClass = "")
034: #if($Tools.ToBool($phone.LocationId))
035: #set($phoneLocationClass = "phone-location-$!{phone.LocationId}")
036: #end
037: <div class="template-header-mobile-bar__phone">
038: <span class="phone-label">$!{phone.Label}:</span>
039: <a class="phone phone-location $!{phoneLocationClass}" href="tel:${phone.PhoneNumber}">$!{phone.Phone}</a>
040: </div>
041: #end
042: #elseif($Tools.ToBool($Website.Phone))
043: <div class="template-header-mobile-bar__phone template-header-mobile-bar__phone--single">
044: <span class="phone-label">Call Us</span>
045: <a href="tel:${Website.PhoneNumber}" class="phone phone-location phone-location-$!{Website.DefaultLocation.SharedLocationId}">${Website.Phone}</a>
046: </div>
047: #end
048: </div>
049: #end
050:
051: <div class="header-sub-content">
052:
053: <!-- LOGO -->
054: <div class="header-col logo-wrapper">
055: <a href="/">
056: ${Website.RenderDesignElement(89)}
057: </a>
058: </div>
059:
060: <!-- NAVIGATION LINKS -->
061: <nav class="header-col main-nav">
062: <ul>
063: #if ($Website.HasSystem(3))
064: #set($obituariesCssClass = "")
065: #if($Page.ContentTemplatePageId == 8000 || ($Config.Path.StartsWith("/obituaries") && !$Config.Path.StartsWith("/obituaries/RemoveSubscription")))
066: #set($obituariesCssClass = "active")
067: #end
068: <li class="nav-item">
069: <a class="$!{obituariesCssClass}" href="$!{Website.ObituariesPath}"><span>$!{Tools.ResolveTextPet("", "Pet")} $!{Website.ObituariesLabel}</span></a>
070: </li>
071: #end
072: #set($sectionCount = 0)
073: #foreach($section in $Website.Sections)
074: #if($section.NavigationShowInHeader)
075: #set($sectionCount = $sectionCount + 1)
076: #if($sectionCount <= $maxItemsOnMenu && $section.Url != "/store/")
077: #set($isExternal = $section.Url.StartsWith("http://") || $section.Url.StartsWith("https://"))
078: <li class="nav-item">
079: <a #if($section.Equals($Section)) class="active"#end href="${section.Url}"#if($isExternal) target="_blank"#end><span>${section.Name}</span></a>
080: </li>
081: #elseif( $section.Url == "/store/")
082: <li class="nav-item store-item">
083: <a href="/store/?icn=desktop_site_menu&icc=desktop"><span>${section.Name}</span></a>
084: </li>
085: #end
086: #end
087: #end
088: </ul>
089: </nav>
090:
091: <!-- STORE BUTTON -->
092: #if($Store)
093: <div class="header-col store-button">
094: #if($Store.HasFlowers)
095: <a class="btn btn-store btn-store-flowers" href="/store/?icn=desktop_site_send_flowers_button&icc=desktop">Send Flowers & Gifts</a>
096: #else
097: <a class="btn btn-store btn-store-gifts" href="/store/?icn=desktop_site_send_flowers_button&icc=desktop">Sympathy Store</a>
098: #end
099: </div>
100: #end
101:
102: </div>
103:
104: <button class="navbar-toggle" type="button">
105: <span class="icon-bar first"></span>
106: <span class="icon-bar middle"></span>
107: <span class="icon-bar last"></span>
108: <span class="sr-only">Toggle navigation</span>
109: </button>
110:
111: </div>
112: #if($hasMultiplePhones && !$tributePage)
113: #if($Website.Phones.Count > 2)
114: <div id="phones-modal" class="modal-inline modal-callus mfp-hidden">
115: <div class="modal-callus-header">
116: <span><i class="fa fa-phone mr-xs"></i> Call Us</span>
117: </div>
118:
119: #foreach($phone in $Website.Phones)
120: #set($phoneLocationClass = "")
121: #if($Tools.ToBool($phone.LocationId))
122: #set($phoneLocationClass = "phone-location-$!{phone.LocationId}")
123: #end
124: <div class="template-header-mobile-bar__phone">
125: <span class="phone-label">$!{phone.Label}:</span>
126: <a class="phone phone-location $!{phoneLocationClass}" href="tel:${phone.PhoneNumber}">$!{phone.Phone}</a>
127: </div>
128: #end
129: </div>
130: #end
131: #end
132:
133: <div class="navbar-side">
134: <div class="navbar-side-wrapper">
135:
136: <!-- SUB NAVIGATION -->
137: <nav class="mobile-sub-nav">
138: <ul>
139: #if($Website.HasSharedTemplatePage(10))
140: <li><a href="${Website.GetSharedTemplatePageUrl(10)}">About Us</a></li>
141: #end
142: #if($Website.HasSharedTemplatePage(9))
143: #if($locationCount > 1)
144: <li><a href="${Website.GetSharedTemplatePageUrl(9)}" data-count="${locationCount}">Locations</a></li>
145: #else
146: <li><a href="${Website.GetSharedTemplatePageUrl(9)}" data-count="1">Location</a></li>
147: #end
148: #end
149: #if($Website.HasSharedTemplatePage(22))
150: <li><a href="${Website.GetSharedTemplatePageUrl(22)}">Contact</a></li>
151: #end
152: </ul>
153: </nav>
154:
155: <!-- SEARCH -->
156: #if ($Website.HasSystem(3))
157: <div class="search-area" id="obit-search-mobile" data-not-found-text="No $!{Tools.ResolveTextTributes("obituaries", "tributes")} found matching the search term.">
158: <form name="MainNavSearch" class="form-obit-search" role="search" method="GET" action="$!{Website.ObituariesPath}">
159: <div class="input-group input-search input-search-sm">
160: <input type="text" name="filter" class="form-control" placeholder="Find $!{Tools.ResolveTextPet("", "Pet")} $!{Website.ObituariesLabel}" aria-label="Find $!{Tools.ResolveTextPet("", "Pet")} $!{Website.ObituariesLabel}">
161: <div class="input-group-btn">
162: <button type="submit" class="btn">
163: <i class="fa fa-search" aria-hidden="true"></i>
164: <span class="sr-only">Search</span>
165: </button>
166: </div>
167: </div>
168: </form>
169: </div>
170: #end
171:
172: <!-- NAVIGATION LINKS -->
173: <nav class="header-col mobile-main-nav">
174: <ul>
175: <li class="nav-item home-link">
176: <a #if($Config.Path == "/") class="active"#end href="/">Home</a>
177: </li>
178: #if ($Website.HasSystem(3))
179: #set($obituariesCssClass = "")
180: #if($Page.ContentTemplatePageId == 8000 || ($Config.Path.StartsWith("/obituaries") && !$Config.Path.StartsWith("/obituaries/RemoveSubscription")))
181: #set($obituariesCssClass = "active")
182: #end
183: <li class="nav-item">
184: <a class="$!{obituariesCssClass}" href="$!{Website.ObituariesPath}"><span>$!{Tools.ResolveTextPet("", "Pet")} $!{Website.ObituariesLabel}</span></a>
185: </li>
186: #end
187: #set($sectionCount = 0)
188: #foreach($section in $Website.Sections)
189: #if($section.NavigationShowInHeader)
190: #set($sectionCount = $sectionCount + 1)
191: #if($sectionCount <= $maxItemsOnMenu)
192: #set($isExternal = $section.Url.StartsWith("http://") || $section.Url.StartsWith("https://"))
193: <li class="nav-item">
194: <a #if($section.Equals($Section) && !$is404 && !$isSitemap) class="active"#end href="${section.Url}#if($section.Url == "/store/")?icn=desktop_site_menu&icc=desktop#end"#if($isExternal) target="_blank" rel="noopener"#end><span>${section.Name}</span></a>
195: </li>
196: #end
197: #end
198: #end
199: </ul>
200: </nav>
201:
202: </div>
203: </div>
204: </div>
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
at funeralOne.WMS2.View.VelocityHelper.ProcessTemplate(String filename, String tplKey, String templateContent, VelocityContext context, Boolean ignoreException) in C:\hi\git\f1connect-wms\funeralOne.WMS\WMS2\View\VelocityHelper.cs:line 207
at funeralOne.WMS2.View.VelocityHelper.ProcessTemplate(String tplKey, String templateContent, VelocityContext context, Boolean ignoreException) in C:\hi\git\f1connect-wms\funeralOne.WMS\WMS2\View\VelocityHelper.cs:line 52
at funeralOne.WMS2.View.Wms2Processor.RenderPage(Nullable`1 elementId, String designTemplateElementData, String pageContent, Page page, String pageName, String sectionName, Nullable`1 sectionId) in C:\hi\git\f1connect-wms\funeralOne.WMS\WMS2\View\Wms2Processor.cs:line 1620
at funeralOne.WMS.Web.WmsHttpModule.InternalRenderPage(Nullable`1 elementId, String elementContent, Section section, String sectionName, Page page, String pageName, String pageContent) in C:\hi\git\f1connect-wms\funeralOne.WMS\Web\WmsHttpModule.cs:line 1600
at funeralOne.WMS.Web.WmsHttpModule.RenderPage(Int32 elementId, String sectionName, String pageName, String pageContent) in C:\hi\git\f1connect-wms\funeralOne.WMS\Web\WmsHttpModule.cs:line 1577
at ASP.views_shared_memorial_master.__Render__control1(HtmlTextWriter __w, Control parameterContainer)
at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
at System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
at System.Web.Mvc.ViewPage.Render(HtmlTextWriter writer)
at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.HandleError(Exception e)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest()
at System.Web.UI.Page.ProcessRequest(HttpContext context)
at ASP.views_memorial_memorial_aspx.ProcessRequest(HttpContext context)
at System.Web.Mvc.HttpHandlerUtil.ServerExecuteHttpHandlerWrapper.<>c__DisplayClass4.<Wrap>b__3()
at System.Web.Mvc.HttpHandlerUtil.ServerExecuteHttpHandlerWrapper.Wrap[TResult](Func`1 func)
at System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath path, VirtualPath filePath, String physPath, Exception error, String queryStringOverride)
at System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter writer, Boolean preserveForm, Boolean setPreviousPage, VirtualPath path, VirtualPath filePath, String physPath, Exception error, String queryStringOverride)
at System.Web.HttpServerUtility.Execute(IHttpHandler handler, TextWriter writer, Boolean preserveForm, Boolean setPreviousPage)
at System.Web.HttpServerUtility.Execute(IHttpHandler handler, TextWriter writer, Boolean preserveForm)
at System.Web.Mvc.ViewPage.RenderView(ViewContext viewContext)
at System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass1a.<InvokeActionResultWithFilters>b__17()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilter(IResultFilter filter, ResultExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<BeginInvokeAction>b__22(IAsyncResult asyncResult)
at System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult)
at System.Web.Mvc.Controller.<>c__DisplayClass1d.<BeginExecuteCore>b__18(IAsyncResult asyncResult)
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
at System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult)
at System.Web.Mvc.MvcHandler.<>c__DisplayClass8.<BeginProcessRequest>b__3(IAsyncResult asyncResult)
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
at System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
- Please try refreshing the page and trying again.
- If the problem persists, please notify the website owner.
- The administrators of this website have been notified of this error.