English 中文(简体)
“请确认哪些用户正在改写密码”
原标题:"Please confirm which user you are changing the password for"

因此,我刚刚为我铁路的近况做了一个更改密码。 它就像任何其他非常典型的密码改动形式一样。

因此,在经过几次测试之后,我开始看到一个波动箱说。

<代码> 请确认哪些用户正在修改“的密码。

现在,这真的使我感到迷惑不解,因为我知道我没有写任何守则来做这样的事情,我当然不想让用户改变其他用户的密码。

我很快发现这名密码管理员。 因此,我现在平静下来,但现在我不想让使用我的场地的其他人去做。

恶英如何知道它改变了任何途径的密码? 难道这要打上我的密码领域的名称,或者甚至我的行动形式(/账户/变动——密码)? 是否有办法使之不这样做? 是否有其他经验?

最佳回答

当用户首次使用网站标识时,<>将问用户他们是否希望节省密码或不要。 如果他们说是的话,就可节省密码。

现在,如果用户改变其在网站的密码,则不会立即知道。 但是,当用户在新密码中的标识时,德国航天公司将认识到,所输入的密码不是其档案中的内容。 因此,它询问你是否希望节省,密码。

用户现在在网站上有两个账户,并将密码改为其中之一。 当这些用户与该用户登录时,德国航天公司试图更新其记录时,它可能会问“哪些用户正在改变密码?”

这是客户功能,是你能够真正改变的 is。 用户选择了能够跟踪其账户的浏览器,而不是可以防止的浏览器。

问题回答

当我有同样的问题(关于更改密码的形式,从来不采用标识形式)时,我可以避免这种人满为患的唯一办法就是对密码变更表格进行不可靠的自动核对:

<form autocomplete="off" onsubmit="..." ...>

Mozilla Development Network,但不幸的是,正如在所讨论的那样,你的“超声”。 Stack Overflow question。 用于确定大多数用户将承担的物品的低价是贵网站的缩影。

我们网站的用户只有在有多个账户时才会看到这一错误。 我不会根据这一行为改变你的申请。

其工作方式如下:

<input type ="text" name="username" value="" style="display:none">

这是一个“Fox”具体问题,很容易解决。

浏览器在形式上注意到多个密码领域,假设你正在改变密码,但可以轻而易举地工作,而用户却被搁置。 帮助其摆脱,将用户名列如下:

<INPUT TYPE=“hidden” 不结盟运动E=“username”VALUE=“<?php re(“$name”);?>

只要你把变数放到别点,那就象这样工作了。

我没有设法使其与含有用户名的隐蔽领域合作。 我需要一份包含相关用户名的文字材料,并赢得你希望改变密码的传票。 此外,这种案文投入可以利用基本的社会保障局隐藏。

<html>
<form action="#" method="post">
    <input type="text" name="user" value="chose" style="display: none" />
    Pass: <input type="password" name="old_pass"/>
    New pass: <input type="password" name="pass"/>
    <input type="submit"/>
</form>
</html>




相关问题
rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

SSL slowness in EC2

We ve deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web ...

Auth-code with A-Za-z0-9 to use in an URL parameter

As part of a web application I need an auth-code to pass as a URL parameter. I am currently using (in Rails) : Digest::SHA1.hexdigest((object_id + rand(255)).to_s) Which provides long strings like : ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

activerecord has_many :through find with one sql call

I have a these 3 models: class User < ActiveRecord::Base has_many :permissions, :dependent => :destroy has_many :roles, :through => :permissions end class Permission < ActiveRecord::...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签