Forums Index > Mewsoft Products > Auctionawy > EditProfile - problem
AuctionWeb First Post Posted on: 04-03-08 08:57 PM
EditProfile - problem

Hi,
User can edit his profile and set his email to be other user email.
This causes problem while using "forgot your username?".
Can it be fixed?

Thanks,

Auction Web
mewsoft Reply #: 1 Posted on: 04-05-08 12:20 AM
Re: EditProfile - problem

Not sure what is the relation. User can change his confirmed email. So what you need in the forgot your username?. The program uses the updated email for any info.

Mewsoft Support
www.mewsoft.com

AuctionWeb Reply #: 2 Posted on: 04-05-08 11:19 AM
forgot my password

Sorry, i wanted to write "forgot your password?".
In this case if there are 2 users with the same email, the system will find the first one and sends him his password and he didn't ask for, but the second user will not get his password that he asked for.

Auction Web
AuctionWeb Reply #: 3 Posted on: 04-10-08 11:20 AM
Re: EditProfile - problem

This problem, also causes double or more accounts to one user.
How can we prevent it?

Auction Web
adi_novac Reply #: 4 Posted on: 04-29-08 02:46 PM
Re: EditProfile - problem

Any answers to this? You should not be able to change your email to an email of a registered user. That address receives OR IT SHOULD receive the new account infos.

Why OR IT SHOULD?

'Cause in my copy of auction software at least I have the editprofile.pm language file the next line:

********
edit_profile_email_message~==~Dear <!--Name-->,<BR>Your registration information has changed as follows. <BR>Thank You
*********

No new registration infos is sent. It's just an useless email.
Anonymous Reply #: 5 Posted on: 04-29-08 03:55 PM
Re: EditProfile - problem

edited
adi_novac Reply #: 6 Posted on: 04-29-08 06:18 PM
Re: EditProfile - problem

I have this problem with editprofile.pm. I tried inserting the tags in the variable you mentioned adi_novac, but it did not work.

<!--FName-->
<!--LName-->
<!--Company-->
<!--Job_Title-->
<!--Street-->
<!--City-->
<!--State-->
<!--Zip-->



Now there are available only 3 tags:
<!--Name-->
<!--User_ID-->
<!--Password-->

If you want, you may edit your editprofile.pm (not the language file).
Find this:
$Msg = $Language{edit_profile_email_message};
$Msg =~ s/<!--Name-->/$Param{FName}/g;
$Msg =~ s/<!--User_ID-->/$Param{User_ID}/g;
$Msg =~ s/<!--Password-->/$Param{Password}/g;

Below add your needed tags:
Ex:
$Msg =~ s/<!--LName-->/$Param{LName}/g;
.........etc
and then edit the editprofile.pm language file with <!--Lname-->

HTH,
Anonymous Reply #: 7 Posted on: 04-29-08 07:32 PM
Re: EditProfile - problem

edited