我不知道这是Visual Studio,ASP.Net-MVC,IIS Express还是EPIserver问题。
问题在于,在Visual Studio中,当我单击看起来像播放图标的图标时,至少需要5分钟才能将我的本地EPIserver开发网站加载到浏览器中。
我尝试从Visual Studio中选择其他浏览器:Firefox,Chrome,MS Edge。
我们还在2台相同的笔记本电脑和2台相同的台式机上对此进行了测试。全部运行最新的Windows 10。
发生的事情是,在我单击播放大约4-5秒后,将启动一个浏览器实例。这指向本地主机。然后,网站至少需要5分钟才能开始在浏览器中加载。
这使得有效工作变得非常困难。
对于要尝试什么,要检查什么等等的任何提示,我将非常感谢。
当涉及到上述所有组件时,我是一个相对较新的用户,因此,我非常感谢逐步检查/测试内容的提示。
答案 0 :(得分:1)
使用具有*{
margin:0;
padding:0;
}
.navi{
background:yellow;
width:100%;
height:100px;
margin-bottom:20px;
}
.jumbo{
background:grey;
width:100%;
height:500px;
margin-top:20px;
}
.slideshow{
background:green;
width:100%;
}
.slide-image-wrap{
width:100%;
box-sizing: border-box;
}
.mySlides {
width: 100%;
overflow: hidden;
}
img {
display: block;
max-width: 100%;
max-height: 100%;
margin: auto;
}
#tata .slide-image-wrap .mySlides{
position: relative;
height:0;
padding-top: 56.25%;
}
#tata img{
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
.slide-text-wrap{
height: 100px;
width:500px;
background:blue;
position: absolute;
bottom:20%;
right: 6%;
color:orange;
font-size: 2em;
}
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bolder;
font-size: 2em;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(255,0,0,0.8);
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 10px;
width: 20px;
margin: 0 10px;
background-color: #bbb;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: right: ;
}
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@media only screen and (orientation: portrait) {
}
@media only screen and (max-width: 800px){
.slide-text-wrap{
background-color: yellow;
top: 0;
right: 0;
bottom:0%;
left: 0;
margin: auto auto 0 auto;
width: 450px;
}
}
级日志记录的相关附加程序,启用 log4net 日志记录(通常在站点根目录中名为EPiServerLog.config
的配置文件)。
日志可能会向您显示站点启动后发生的情况。我看到了一些示例,这些示例的实现不佳,例如,在启动时会迭代站点上的所有内容,从而在填充缓存时导致大量数据库流量。不用说,这需要很长的时间。 :)
如果日志没有任何内容,我建议在启动时附加VS调试器进行一些基本的分析。
Example on configuring log4net,尽管是旧帖子。