This topic is locked

change passwrod reminder and registration msgs

9/11/2013 9:51:29 AM
PHPRunner General questions
C
chrispa author

Hi,
how can i change password reminder and new registration msgs ?

i.e.
instead of
Password reminder

You asked to remind your username and password at http://localhost.com

Username: aaaaaaaa

Password :aaaaaa
to read something else ?
thanks

Sergey Kornilov admin 9/11/2013

You can change some wordings in C:\Program Files (x86)\PHPRunner6.2\lang\English.lng

<message tag="REMIND_MAIL1">Password reminder</message>

<message tag="REMIND_MAIL2">You asked to remind your username and password at</message>


If you need more changes you need to edit source PHP files. Files you looking for are register.php and remind.php.

Here is the password reminder part for example:

$message.= ##message REMIND_MAIL1##."\r\n";

$message.= ##message REMIND_MAIL2##." ".$url."\r\n";

$message.= ##message USERNAME##.": ".$data[$cUserNameField]."\r\n";

$message.= ##message PASSWORD##.": ".$password."\r\n";