spirit999533 发表于 2013-1-15 16:07:03

本地测试采集成功,可是用自己的空间采集,发布时错误。

本地127.0.0.1测试采集成功,发布成功。可是用自己的空间采集成功,发布时错误。什么情况啊?帮忙看看~
光线CMS。



源代码:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>友情提示</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv='Refresh' content='3;URL=javascript:history.back(-1);'>
</head>
<body>
<table border="0" align="center" cellpadding="5" cellspacing="1" style="font-size:14px;color:#333333;margin-top:100px;background:#70afd3">
<tr style="background:url(./views/images/install/top_bg.gif);color:#FFFFFF">
    <th>操作失败!</th>
</tr>
<tr><td height="100" style="font-size:12px; background:#FFFFFF">
    <div style="font-size:14px;font-weight:bold;margin:10px;">表单令牌错误</div>
    <div style="margin:10px;">系统将在&nbsp;<span id="countDownSec" style="color:blue;font-weight:bold">3</span>&nbsp;秒后自动跳转,如果不想等待,直接 <a href="javascript:history.back(-1);" style="color:#069;">点击这里</a></div>
</td></tr>
</table>
<script language="javascript" type="text/javascript">
var countDown = function(timer,eleId,interType){
        document.getElementById(eleId).innerHTML = timer;
        var interval = interType=='s'?1000:(interType=='m'?1000*60:1000*60*60);
        window.setInterval(function(){
                timer--;
                if (timer > 0) {
                        document.getElementById(eleId).innerHTML = timer;
                }
        },interval);
};
countDown(parseInt(3),'countDownSec','s');
</script>
</body>
</html>
========分隔线=======
ID:35

303718 发表于 2013-1-15 16:53:54

重新登陆一下或者重获一下COOKIE试试

spirit999533 发表于 2013-1-15 17:35:25

试了很多遍了。发布失败!

303718 发表于 2013-1-15 20:30:48

那应该是发布模块里的随机值没有配置好

spirit999533 发表于 2013-1-15 22:19:42

我知道是什么原因了,后台原因。我选择的“否”,发布就能成功,选择“是”发布就不成功。
这是什么情况啊?本地发布成功,空间发布失败?请问如何设置?我想使用后台的保存远程图片功能。
--------------------------------------------------------------------------------------------------
是否自动保存远程图片         是?否?
选择"是"则在手动添加数据时候自动保存网络上的图片
页: [1]
查看完整版本: 本地测试采集成功,可是用自己的空间采集,发布时错误。