Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑问] 您的请求来路不正确或表单验证串不符,无法提交。请尝试使用标准的web浏览器进行操作

[复制链接]
萝卜鱼 发表于 2009-3-11 19:35:55 | 显示全部楼层 |阅读模式
我先清空了  tpl文件下的 所有文件 然后登陆 出现 您的请求来路不正确或表单验证串不符,无法提交。请尝试使用标准的web浏览器进行操作。
   然后 我看FTP   TPL 就出现了 tpl_admin_tpl_showmessage.htm.php 文件,这样 清空 登陆反反复复的~~~
 楼主| 萝卜鱼 发表于 2009-3-11 19:50:34 | 显示全部楼层
谁帮帮忙啊~~~
回复

使用道具 举报

InLife 发表于 2009-3-12 00:04:18 | 显示全部楼层
是的,是IE6下有这个问题。郁闷啊。后来不知道怎么又好了。
回复

使用道具 举报

yh331071273 发表于 2009-3-14 10:40:21 | 显示全部楼层
batch.panel.php 用户登录程序第79行开始

$formhash = formhash();

print <<<END

。。。。。。

document.write('<input type="hidden" name="formhash" value="$formhash" />');

。。。。。。

END;



把上面那句去掉就好了
回复

使用道具 举报

杰丽 发表于 2009-3-21 20:54:48 | 显示全部楼层
您的请求来路不正确或表单验证串不符,无法提交。请尝试使用标准的web浏览器进行操作。
返回上一页
不知道7.0是高级了还是低级了,什么都是摸索着来!
回复

使用道具 举报

杰丽 发表于 2009-3-21 20:58:14 | 显示全部楼层
论坛上说的什么办法都用过,首页登陆是可以了,但是评论页面怎么也不行啊,真败了
回复

使用道具 举报

寒武楼 发表于 2009-4-6 13:49:24 | 显示全部楼层
官方默认的程序和模板。未改动-您的请求来路不正确或表单验证串不符,无法提交。
清空cache/tpl下的所有文件。

清空了,问题还是没有解决

------------
全部是官方默认的程序和模板。未做任何改动

您的请求来路不正确或表单验证串不符,无法提交。

给个测试。http://www.aiganyu.com/html/6/n-6.html
回复

使用道具 举报

szqq 发表于 2009-4-9 15:03:32 | 显示全部楼层
把上面那句去掉就好了
yh331071273 发表于 2009-3-14 10:40

没有这句啊,全部就这么几行
  1. <?php

  2. /*
  3.         [SupeSite] (C) 2007-2009 Comsenz Inc.
  4.         $Id: batch.panel.php 10898 2008-12-31 02:58:50Z zhaofei $
  5. */

  6. include_once('./common.php');
  7. include_once(S_ROOT.'./language/batch.lang.php');

  8. getcookie();

  9. $uid = $_SGLOBAL['supe_uid'];
  10. $bbshtml = '| <a href="'.$_SC['bbsurl'].'" target="_blank">闈掗潚璁哄潧</a>';
  11. $uchhtml = '| <a href="'.$_SC['uchurl'].'" target="_blank">闈掗潚瀹跺洯</a>';
  12. if(!empty($uid)) {
  13.         print <<<END
  14.         document.write('<div class="login_ext">');
  15.         document.write('<p>$blang[welcome],<a href="$siteurl/space.php?uid=$uid">$_SGLOBAL[supe_username]</a> [<a href="$siteurl/batch.login.php?action=logout">$blang[safe_logout]</a>]');
  16.         document.write('<a href="$siteurl/space.php?uid=$uid" target="_blank">$blang[my_space]</a> | <a href="$siteurl/batch.search.php">$blang[more_serach]</a>');
  17.         document.write('$bbshtml');
  18.         document.write('$uchhtml');
  19.         document.write('| <a href="$siteurl/admincp.php" target="_blank">$blang[management]</a>');
  20.         document.write('</div>');
  21. END;
  22. } else {
  23.         $siteurl = S_URL_ALL;
  24.         print <<<END
  25.         document.write('<form action="$siteurl/batch.login.php?action=login" method="post">');
  26.         document.write('<label>$blang[username]:</label> <input type="text"  name="username" class="input_tx" size="18" />');
  27.         document.write('<label>$blang[password]:</label> <input type="password" name="password" class="input_tx" size="18" />');
  28.         document.write('<input id="cookietime" type="checkbox" value="315360000" name="cookietime" class="input_remember"/>');
  29.         document.write('<label class="label_remember" for="cookietime">$blang[i_remember]</label>');
  30.         document.write('<input type="submit" name="loginsubmit" class="input_sub" value="$blang[login]" />');
  31.         document.write('</form>');
  32.         document.write('<div class="login_ext">');
  33.         document.write('<p><a href="$siteurl/do.php?action=register">$blang[registration]</a>| <a href="$siteurl/do.php?action=lostpasswd">$blang[find_passwords]</a>');
  34.         document.write('$bbshtml');
  35.         document.write('$uchhtml');
  36.     document.write('</div>');
  37. END;
  38. }

  39. ?>
复制代码
回复

使用道具 举报

xiaotaoxiaohan 发表于 2009-6-17 12:26:03 | 显示全部楼层
batch.panel.php 用户登录程序第79行开始

$formhash = formhash();

print <<<END

。。。。。。

document.write('<input type="hidden" name="formhash" value="$formhash" />');

。。。。。。

END;
把上面那句去掉就好了


把那句去点啊



没有那句啊

www.yerhu.com

JavaScript技术网
回复

使用道具 举报

308853477 发表于 2009-7-9 21:59:55 | 显示全部楼层
请使用 config 里面 siteurl 填写的那个完整地址访问 ss,其他绑定域名无法正常登录。


我的解决了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-4-20 19:14 , Processed in 0.274360 second(s), 16 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表