Sub Menu
Links Menu
Online Users

In total there are 312 users online :: 3 registered, 0 hidden and 309 guests

Most users ever online was 1091 on Wed Aug 16, 2023 5:27 pm

Registered users: Bing [Bot], Google [Bot], Majestic-12 [Bot] based on users active over the past 60 minutes

Firefox admin user mangement fix

General discussion of anything. Discuss a topic in and out of IntegraMOD

Moderator: Integra Moderator

Firefox admin user mangement fix

PostAuthor: Whisky » Thu Jan 04, 2007 6:21 am

Hi,

Most of firefox users know this annoying issue when you are in ACP user management and trying to save a modification on the user, Firefox populate the user password field with your own password and it's impossible to save your changes

I know this is a phpbb-related issue but would it possible to add the fix for it in the next IM release?

Just asking <img>

Tanks
Last edited by Whisky on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
I am the Lizard King, I can do anything

Whisky
Sr Integra Member
Sr Integra Member
 
Posts: 256
Likes: 0 post
Liked in: 0 post
Joined: Thu May 18, 2006 1:28 am
Cash on hand: 0.00
Location: Brussels

Re: Firefox admin user mangement fix

PostAuthor: tmotley » Thu Jan 04, 2007 7:11 am

I believe an updated FireFox fixes this issue. I am using 2.0.0.1 and it doesn't fill in my username and password in the management area...
Last edited by tmotley on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
User avatar
tmotley
IntegraMODerators
IntegraMODerators
 
Posts: 524
Likes: 0 post
Liked in: 0 post
Joined: Mon Mar 27, 2006 2:56 am
Cash on hand: 0.00
Location: Missouri, USA

Re: Firefox admin user mangement fix

PostAuthor: Whisky » Thu Jan 04, 2007 7:43 am

no I've got the same version than you and the problem occurs.

I had applied a fix for it but I lost my modifications after an update and now I am back with this bug, that's not handy to have to adapt your templates with this fix each time <img>

I can't figure out where to say to firefox to not storee the password for this page, apparently that's possible but that was probably on a previous version coz I've serached around all oprions and can't find anything relevant
Last edited by Whisky on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
I am the Lizard King, I can do anything

Whisky
Sr Integra Member
Sr Integra Member
 
Posts: 256
Likes: 0 post
Liked in: 0 post
Joined: Thu May 18, 2006 1:28 am
Cash on hand: 0.00
Location: Brussels

Re: Firefox admin user mangement fix

PostAuthor: obiku » Thu Jan 04, 2007 9:31 am

Maybe this wil help
Code: Select all
################################################################ MOD Title]http://opensource.org/licenses/gpl-license.php[/url] GNU General Public License v2################################################################ For security purposes, please check: [url=http://www.phpbb.com/mods/#]http://www.phpbb.com/mods/#[/url]# for the latest version of this MOD. Although MODs are checked## before being allowed in the MODs Database there is no guarantee## that there are no security problems within the MOD. No support## will be given for MODs not found within the MODs Database which## can be found at [url=http://www.phpbb.com/mods/#]http://www.phpbb.com/mods/#[/url]############################################################### Author Notes:##       Renames the 'username' field to 'user_name'##       while still providing the $HTTP_POST_VARS['username']##       array member for compatability with other MODs####       Tested with phpbb v2.0.19 , Firefox 1.5.0.1 , IE 6.0SP2################################################################## MOD History:####   2006-01-29 - Version 1.0.0##       - initial release####   2006-02-05 - version 1.0.1##       - fixed incorrect case in references to subSilver template##       - fixed bug causing 'Find A Username' to not work (search_username.tpl)####   2006-02-08 - version 1.0.2##       - fixed faulty find/replace actions####   2006-02-10 - version 1.1.0 (BETA)##       - beta fix for incompatability with other MODs that modify the user admin functions####   2006-02-11 - version 1.1.1 (BETA)##       - removed 'templates/subSilver/admin/user_select_body.tpl' changes (no longer needed)##       - made edit to 'templates/subSilver/admin/user_edit_body.tpl' a more specific IN-LINE FIND####   2006-02-13 - version 1.2.0##       - no functionality changes from 1.1.1 just changing the version number to indicate it's no longer beta####   2006-03-28 - version 1.2.1##       - fixed 'not saving changes to user account' bug when using PHP5 with 'register_long_arrays' set to OFF################################################################## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD##############################################################  ##-----[ OPEN ]------------------------------------------------#  admin/admin_users.php  ##-----[ FIND ]------------------------------------------------#  require('./pagestart.' . $phpEx);  ##-----[ AFTER, ADD ]------------------------------------------#  if ( ( isset($HTTP_POST_VARS['user_name']) ) & ( !isset($HTTP_POST_VARS['username']) ) ){     $HTTP_POST_VARS['username'] = $HTTP_POST_VARS['user_name'];}  ##-----[ OPEN ]------------------------------------------------#  admin/admin_ug_auth.php  ##-----[ FIND ]------------------------------------------------#  require('./pagestart.' . $phpEx);  ##-----[ AFTER, ADD ]------------------------------------------#  if ( ( isset($HTTP_POST_VARS['user_name']) ) & ( !isset($HTTP_POST_VARS['username']) ) ){     $HTTP_POST_VARS['username'] = $HTTP_POST_VARS['user_name'];}  ##-----[ OPEN ]------------------------------------------------#  templates/subSilver/admin/user_edit_body.tpl  ##-----[ FIND ]------------------------------------------------#  name="username"  ##-----[ IN-LINE FIND ]----------------------------------------#  name="username"  ##-----[ IN-LINE REPLACE WITH ]--------------------------------#  name="user_name"  ##-----[ OPEN ]------------------------------------------------#  templates/subSilver/search_username.tpl  ##-----[ FIND ]------------------------------------------------#       opener.document.forms['post'].username.value = selected_username;  ##-----[ REPLACE WITH ]----------------------------------------#       if (opener.document.forms['post'].user_name)     {         opener.document.forms['post'].user_name.value = selected_username;     }     else     {         opener.document.forms['post'].username.value = selected_username;     }  ##-----[ SAVE/CLOSE ALL FILES ]--------------------------------## EoM
Last edited by obiku on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
http://www.familie-smit.nl
http://portfolio.familie-smit.nl

Do not tsunami my inbox... instead use the forums...
Hard work may not kill me, but why take a chance?

[hr]
User avatar
obiku
Dev Team
Dev Team
 
Posts: 218
Likes: 0 post
Liked in: 0 post
Joined: Tue May 02, 2006 10:22 am
Cash on hand: 0.00
Location: level 8

Re: Firefox admin user mangement fix

PostAuthor: Whisky » Thu Jan 04, 2007 9:59 am

yes this is the fix I use and that I would like to see in the next version of IM <img>
Last edited by Whisky on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
I am the Lizard King, I can do anything

Whisky
Sr Integra Member
Sr Integra Member
 
Posts: 256
Likes: 0 post
Liked in: 0 post
Joined: Thu May 18, 2006 1:28 am
Cash on hand: 0.00
Location: Brussels

PostAuthor: tmotley » Thu Jan 04, 2007 10:07 am

Why don't I remember doing any mod for this?
Last edited by tmotley on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
User avatar
tmotley
IntegraMODerators
IntegraMODerators
 
Posts: 524
Likes: 0 post
Liked in: 0 post
Joined: Mon Mar 27, 2006 2:56 am
Cash on hand: 0.00
Location: Missouri, USA

Re: Firefox admin user mangement fix

PostAuthor: Whisky » Thu Jan 04, 2007 10:27 am

I don't know <img> I am using IM 1.4
Last edited by Whisky on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
I am the Lizard King, I can do anything

Whisky
Sr Integra Member
Sr Integra Member
 
Posts: 256
Likes: 0 post
Liked in: 0 post
Joined: Thu May 18, 2006 1:28 am
Cash on hand: 0.00
Location: Brussels

Re: Firefox admin user mangement fix

PostAuthor: Teelk » Thu Jan 04, 2007 2:22 pm

It's already added to 1.4.1 <img>
Last edited by Teelk on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
User avatar
Teelk
Dev Team
Dev Team
 
Posts: 1309
Likes: 0 post
Liked in: 0 post
Joined: Tue Mar 14, 2006 5:25 pm
Cash on hand: 0.00
Location: Canada

Re: Firefox admin user mangement fix

PostAuthor: Whisky » Fri Jan 05, 2007 12:14 am

I love you <img>
Last edited by Whisky on Wed Dec 31, 1969 4:00 pm, edited 1 time in total.
I am the Lizard King, I can do anything

Whisky
Sr Integra Member
Sr Integra Member
 
Posts: 256
Likes: 0 post
Liked in: 0 post
Joined: Thu May 18, 2006 1:28 am
Cash on hand: 0.00
Location: Brussels


Return to General Discussion

Who is online

Registered users: Bing [Bot], Google [Bot], Majestic-12 [Bot]