|
我自己的网站是DEDE 采集没有问题,
问题出在发布这里
我在发布模块里面设置了,用通过软件发送数据包登录,也显示登录成功了,但是点测试配置,都是失败,显示下面这些<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>织梦内容管理系统 V57_GBK</title>
<link href="css/base.css" rel="stylesheet" type="text/css" />
<link href="css/login.css" rel="stylesheet" type="text/css" />
<script src="../include/js/jquery/jquery.js" language="javascript" type="text/javascript"></script>
<script type="text/javascript">
$ = jQuery;
function changeAuthCode() {
var num = new Date().getTime();
var rand = Math.round(Math.random() * 10000);
num = num + rand;
$('#ver_code').css('visibility','visible');
if ($("#vdimgck")[0]) {
$("#vdimgck")[0].src = "../include/vdimgck.php?tag=" + num;
}
return false;
}
</script>
</head>
<body>
<div id="login-box">
<div class="login-top"><a href="../index.php" target="_blank" title="返回网站主页">返回网站主页</a></div>
<div class="login-main">
<form name="form1" method="post" action="login.php">
<input type="hidden" name="gotopage" value="/zaizai/article_add.php?my_u=wqzzsky&my_p=5245255" />
<input type="hidden" name="dopost" value="login" />
<input name='adminstyle' type='hidden' value='newdedecms' />
<dl>
<dt>用户名:</dt>
<dd><input type="text" name="userid"/></dd>
<dt>密 码:</dt>
<dd><input type="password" class="alltxt" name="pwd"/></dd>
<dt> </dt>
<dd><button type="submit" name="sm1" class="login-btn" onclick="this.form.submit();">登录</button></dd>
</dl>
</form>
</div>
<div class="login-power">Powered by<a href="http://www.dedecms.com" title="DedeCMS官网"><strong>DedeCMSV57_GBK</strong></a>© 2004-2011 <a href="http://www.desdev.cn" target="_blank">DesDev</a> Inc.</div>
</div>
<div class="dede-iframe"><iframe name="loginad" src="login.php?dopost=showad" frameborder="0" id="loginad" scrolling="no" marginwidth="0" marginheight="0" width="100%"></iframe></div>
</body>
</html>
但是我 在内置浏览器中登录,点测试配置,可以成功
但是2种方式都无法正式发布成功,不知道是什么原因 |
|