Page 1 of 1

customize

Posted: Sun Sep 09, 2007 7:03 pm
by elitedreamr
Script URL: internal
Version of script: .094
Hosting company: self
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:

Write your message below:

Is there a way to mask out the passwords that it lists on the admin console? I tinkered with the code in manage_users.php but I could not seem to find it. Also, is there a way to change "customer" to "user" and "Staff" to something else?



Thanks in advance, and thanks for the cool script.

Posted: Sun Sep 09, 2007 10:05 pm
by rbbigdog
Try this...

Change the bolded wording here in your english.inc.php file to whatever you like.

$hesklang['staff']='Staff';
$hesklang['customer']='Customer';

You can just put some asteriks here in your manage_users.php file (replacing the SQL call)

echo <<<EOC
<tr>
<td class="$color">$myuser[name]</td>
<td class="$color"><a href="mailto:$myuser[email]">$myuser[email]</a></td>
<td class="$color">$myuser[user]</td>
<td class="$color">*******</td>
<td class="$color">$myuser[isadmin]</td>
<td class="$color" align="center">$edit_code</td>
<td class="$color" align="center">$remove_code</td>
</tr>

Always save a copy of your files before you make changes to them (that way you can go back to a working copy in case something gets messed up when your editing the files).

Hope this helps!

RB

Posted: Mon Sep 10, 2007 2:05 am
by elitedreamr
That worked! Thanks man!