Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

how to change the maximum character setting for password in firefox

  • 6 답장
  • 1 이 문제를 만남
  • 2 보기
  • 최종 답변자: cor-el

more options

i have a long password about 18 character to open an application from my desktop , but I cannot type in the 18 character password on my laptop using firefox browser. Is urgent can please help?

i have a long password about 18 character to open an application from my desktop , but I cannot type in the 18 character password on my laptop using firefox browser. Is urgent can please help?

모든 댓글 (6)

more options

Is the problem that the input box on the form stops accepting characters, the input box on the form is too narrow and therefore you can't see how many characters are being entered, or Firefox's password save feature won't save an 18-character password?

more options

Firefox should be able to handle 18-character long password.

Are you trying to log in to a web application (if so, what is the website)?

If you have the above problem, try the solutions presented on Fix login issues on websites that require a username and password.

If that solution doesn’t work, try Refresh Firefox - reset add-ons and settings.

more options

Hi, thanks for your help, how do I change the input box form to accept 18 characters. I'm desperate for solution

more options

Do you see any size restriction on that input form if you select that part of the screen and use View Selection Source in the right-click context menu or use the Inspector to check the code of that form?

more options

Yes ,I think is max 12, but yesterday I was able to change my password from 8 character to 18 character using desktop, but after that I could not log in from my laptop. Are you refer to the note below

<input name="c_pass" type="password" id="c_pass" size="40" maxlength="12"></td>

please advise

more options

You can try to increase the maxlength by running this code in the Scratchpad (Web Developer > Scratchpad;Shift+F4) or the command line of the Web Console (Web Developer > Web Console;Shift+Ctrl+K), but the server may not accept it.


N=document.querySelectorAll('input[maxlength]'),I;
for(i=0;I=N[i];i++){
 if(I.getAttribute('maxlength')=='12'){
  I.setAttribute('maxlength','20');
 }
}

글쓴이 cor-el 수정일시