您现在的位置是:首页 > 教程 > 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商城number_format()错误的解决办法!
首先需要说明的是:不是所有人的网站都会出现这个错误,只有符合一定环境和条件的网站才有可能出现这类错误提示,如下: -
怎么让ecshop后台编辑器功能更强大呢
ecshop后台的商品编辑和文章编辑使用的是FCKEDITOR 编辑器,这个FCKEDITOR的工具条(toolbar)是可以自定义的,ECSHOP默认使用的是 normal -
ecshop商品添加字段并实现CSV文件批量上传二次开发实例教程
ecshop商品添加字段并实现CSV文件批量上传 1.商品ecs_goods表中的添加自定义字段2.管理员模板目录admin/templates/goods_info.htm -
ecshop邮编实现可以使用输入字母的方法
ecshop 默认情况下邮编只能填写数字,但是国外的很多城市邮编其实是数字和字母组合的,这个问题其实解决方法也很简单。
留言与评论 (共有 条评论) |