Log in

View Full Version : Invisable users?


sneakyc2e
06-12-2002, 03:12 AM
Is there a hack or a way to make all users visible? Sorry if this is common knowledge. I am new to this but having a blast!

Thanks!
S

:eek:

Admin
06-12-2002, 05:15 AM
UPDATE user SET invisible=0;

sneakyc2e
06-12-2002, 01:18 PM
where do i locate that string make a change to it?
and thanks for you help!

S

Xenon
06-12-2002, 01:27 PM
you habe to run this query per phpmyadmin

sneakyc2e
06-12-2002, 01:33 PM
Do i have to install php admin?
If so where do I get it?
Thanks!
S

Xenon
06-12-2002, 01:38 PM
normally it is preinstalled by your hostingprovider, if not you can find it here:
http://www.phpmyadmin.org

or you can simply install this hack and run the query from your adminc-cp:
https://vborg.vbsupport.ru/showthread.php?s=&threadid=26272

sneakyc2e
06-12-2002, 05:58 PM
I could not find this in my admin/index.php

<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2" id="navtable">
<?php maketableheader("Options"); ?>
</table>
<a href="options.php?s=<?php echo $session[sessionhash]; ?>&action=options"> Change options </a>
</td></tr>

S

Chris M
06-12-2002, 06:40 PM
That isnt the php code for admin/index.php as far as my index.php file goes...:confused:

You need to find this :


<?php
// *************************************************
makenavoption("vBulletin Options","options.php?t=0","<br>");
if($debug==1) {
makenavoption("Edit Settings","setting.php?action=modify","<br>");
makenavoption("Add Setting","setting.php?action=add","<br>");
makenavoption("Add Setting Group","setting.php?action=addgroup");
}
makenavselect("Options","<hr>");

and add underneath :

makenavoption("Run SQL Query", "query.php?t=0");
makenavselect("Database Maintanence");
// *************************************************

Satan

Xenon
06-12-2002, 07:24 PM
yeah, the index.php has had some changes from 2.0.x to 2.2.x

make what hellsatan told ya :)