Log in

View Full Version : Whats wrong?


CAMS
01-17-2009, 04:04 PM
how do i show the number of current subscribers?

tryed to make an old simple hack work to show the numbers but cant work it out...

heres the code i have... any help would be great?

<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
<plugin active="1" product="vbulletin">
<title>Subscriber Count</title>
<hookname>global_start</hookname>
<phpcode><query_read("SELECT * FROM subscriptionlog WHERE status = 1");
$totalsub = mysql_num_rows($query1);]]></phpcode>
</plugin>
</plugins>


doesnt work tho... just shows blank...

Lynne
01-17-2009, 04:19 PM
So many things...... you aren't using the correct query syntax - take a look at any vbulletin page. Do you really want to do this query on every single page? That is what will happen if you use the global_start hook. You do a num_rows on $query1 which isn't even defined.

CAMS
01-17-2009, 06:50 PM
So many things...... you aren't using the correct query syntax - take a look at any vbulletin page. Do you really want to do this query on every single page? That is what will happen if you use the global_start hook. You do a num_rows on $query1 which isn't even defined.


LOL that will be why then :P

am not a coder.. just was going by what the other plugin xml had inside it.


looked simple enough and small but guess its more complicated than i thought :)


Cheers anyway :)
Chris

Dismounted
01-18-2009, 03:30 AM
Your XML is incorrectly formed in the first place. You should not edit files by hand, but rather, add/edit plugins through the Admin CP and export them when done.