enter image description here我的客户的Opencart网站之一在打开网站时出现问题,提示消息显示以下代码:
* {
box-sizing: border-box;
}
.padding {
padding: 10px;
}
.outer-container {
height: 400px;
width: 100%;
background-color: yellow;
overflow-y: scroll;
}
.overflowing-container {
width: 20%;
display: inline-block;
background-color: salmon;
overflow-y: visible;
}
.inherit-height-container {
height: inherit;
width: 70%;
display: inline-block;
background-color: salmon;
vertical-align: top;
}
.large-element {
height: 250px;
width: 100%;
margin-top: 5px;
background-color: lightsalmon;
}
如何获得此解决方案。还可以帮助我找到要修复的文件所在的文件。
答案 0 :(得分:2)
有同样的问题,它仅在请求与“ register”有关时发生在我身上,在我的情况下是“ register.php”,我只更改了文档名称,问题就解决了
答案 1 :(得分:0)
您需要更改register.php的文件名及其在文件中所有位置的出现。
答案 2 :(得分:0)
在register_modal.tpl中找到这一部分(对我来说是582行):
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
评论此警报。
享受!
答案 3 :(得分:0)
由于您的函数名称是'register',所以可能会发生这种情况,因此您需要将函数名称更改为其他名称并进行检查。