您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop出现XMlHttpRequest status:[500] Unknow status 这个错误
紫南2023-12-21 22:01:03ecshop商城教程已有人查阅
导读/admin/templates/top.htm 的这个文件中{insert_scripts files=”../js/transport.js”}和 之间的代码删除也就是将下面这段代码删除...
/admin/templates/top.htm 的这个文件中{insert_scripts files=”../js/transport.js”}和 </head>之间的代码删除也就是将下面这段代码删除...
<script type=”text/javascript”>
onload = function()
{
Ajax.call(‘index.php?is_ajax=1&act=license’,”, start_sendmail_Response, ‘GET’, ‘JSON’);
}
/**
* 帮助系统调用
*/
function web_address()
{
var ne_add = parent.document.getElementById(‘main-frame’);
var ne_list = ne_add.contentWindow.document.getElementById(’search_id’).innerHTML;
ne_list.replace(‘-’, ”);
var arr = ne_list.split(‘-’);
window.open(‘help.php?al=’+arr[arr.length - 1],’_blank’);
}
/**
* 授权检测回调处理
*/
function start_sendmail_Response(result)
{
// 运行正常
if (result.error == 0)
{
var str = ”;
if (result['content']['auth_str'])
{
str = ‘<a href=”javascript:void(0);” target=”_blank”>’ + result['content']['auth_str'];
if (result['content']['auth_type'])
{
str += ‘[' + result['content']['auth_type'] + ‘]’;
}
str += ‘</a> ‘;
}
document.getElementById(‘license-div’).innerHTML = str;
}
}
function modalDialog(url, name, width, height)
{
if (width == undefined)
{
width = 400;
}
if (height == undefined)
{
height = 300;
}
if (window.showModalDialog)
{
window.showModalDialog(url, name, ‘dialogWidth=’ + (width) + ‘px; dialogHeight=’ + (height+5) + ‘px; status=off’);
}
else
{
x = (window.screen.width - width) / 2;
y = (window.screen.height - height) / 2;
window.open(url, name, ‘height=’+height+’, width=’+width+’, left=’+x+’, top=’+y+’, toolbar=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, modal=yes’);
}
}
function ShowToDoList()
{
try
{
var mainFrame = window.top.frames['main-frame'];
mainFrame.window.showTodoList(adminId);
}
catch (ex)
{
}
}
{/literal}
var adminId = “{$admin_id}”;
</script>
本文标签:
很赞哦! ()
相关文章
- 安装ecshop出现相关问题的解决方法
- ecshop出现transport.js与jQuery冲突不加载js的解决方法
- ecshop出现transport和jquery冲突的解决方法实例
- ecshop出现Call to undefined function insert_ads()的解决方法
- ecshop出现Deprecated: preg_replace()报错的解决方法
- ecshop出现Warning: chmod() has been disabled for security reasons in解决方法
- ecshop出现shop_config错误的解决方法
- ecshop出现XMlHttpRequest status:[500] Unknow status解决方法
随机图文
-
WAMP Sever怎么搭建ecshop商城
一、搭建测试环境 1、Ecshop2.7.2较新版的网店系统。2、比较不错的PHP集成开发环境程序WampServer2.0i,其他类似的程序还有 phpS -
ecshop出现transport.js与jQuery冲突不加载js的解决方法
我在对ecshop进行二次开发的时候用到artDialog时,页面会自动弹出artDialog的窗口,原因是transport.js与jQuery冲突,以下文章是我从网上搜的资料 -
ecshop商品销量显示月销量已销售或总销量的方法
ECSHOP商品销量显示月销量已销售或总销量二次开发教程-本文章以默认的ECSHOP模板为例作讲解:ECSHOP模板前台页面商品的相关信息在/includ -
ecshop截取中文字符串的代码实例
做ecshop的时候要把用户订单的姓名显示在网页中但是又不想全部显示出来,这时会用到截取中文字符的情况,由于中文的截取经常出现乱码
留言与评论 (共有 条评论) |