The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
Table coming up blank. Everything else was peachy.
I kind of troubleshot it down to roughly where it is, seems my fetch_template() calls aren't doing their job properly. Called from DB, if my query wasn't successful, surely it'd have fetched the error template (no num_rows) Anyway... the stuff. File: guild.php Incompleted. PHP Code:
Code:
$stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> <title>$vboptions[bbtitle]</title> $headinclude </head> <body> $header $navbar <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="tcat" colspan="6" style="text-align: center; vertical-align: middle"> <strong>$vbphrase[guild_memberlist]</strong> </td> </tr> <tr> <td class="tcat" colspan="1" style="text-align: center; vertical-align: middle"> <strong>$vbphrase[guild_desc_username]</strong> </td> <td class="tcat" colspan="1" style="text-align: center; vertical-align: middle"> <strong>$vbphrase[guild_desc_rank]</strong> </td> <td class="tcat" colspan="1" style="text-align: center; vertical-align: middle"> <strong>$vbphrase[guild_desc_class]</strong> </td> <td class="tcat" colspan="1" style="text-align: center; vertical-align: middle"> <strong>$vbphrase[guild_desc_profession]</strong> </td> </tr> $endtemplate <tr> <td class="tcat" colspan="7" style="text-align: center; vertical-align: middle"> <strong>$vbphrase[guild_memberlist]</strong> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> $footer </body> </html> Code:
<tr> <td style="text-align: center; vertical-align: middle"> <a href="member.php?u=$memberlist[userid]">$memberlist[musername]</a> </td> <td style="text-align: center; vertical-align: middle"> <if condition="$memberlist[field5]"> $memberlist[field5] </if> <if condition="!$memberlist[field5]"> Undisclosed. </if> </td> <td style="text-align: center; vertical-align: middle"> <if condition="$memberlist[field6]"> $memberlist[field6] </if> <if condition="!$memberlist[field6]"> Undisclosed. </if> </td> <td style="text-align: center; vertical-align: middle"> <if condition="$memberlist[field7]"> $memberlist[field7] </if> <if condition="!$memberlist[field7]"> Undisclosed. </if> </td> </tr> Code:
<tr><td>There are no members in this group.</td></tr> Outcome: See attachment screenshot. |
#2
|
||||
|
||||
![]()
It's probably not it, but you're missing <tr>'s around the two tcat rows.
Also, look in your database for how many rows should be returned. |
#3
|
|||
|
|||
![]()
If there are no rows retrieved, you will not see the error. Right after you set "$endtemplate" to the error message you set it to the empty string in the line:
$endtemplate = ''; Also, I would do the check for an empty $_REQUEST['do'] so that it is set before including global.php. This will allow it to pre-cache the $actiontemplates. Finally, as Colin pointed out, I would fix your <TR>/<TD> tags before debugging much further. |
#4
|
|||
|
|||
![]()
OK well I did everything listed (check the code above).
The SQL in phpmyadmin returns 1 user (me) I'm still getting nothing, not even an error message. edit.- Could it be I need something else included? Maybe I've set the $actiontemplates or $globaltemplates wrong? After all I don't understand what either do so I'm not sure if they're right or not. |
#5
|
||||
|
||||
![]()
Try adding a $DB_site->data_seek(0,$memberlistquery); after the if(blabla =='0'){ bla }
|
#6
|
||||
|
||||
![]()
No wonder, put all this inside the if($_REQUEST['do']... bit:
PHP Code:
|
#7
|
|||
|
|||
![]()
@Dean C:
Are you sure?? The nav bits is nothing to do with listing the members. It does output the page, it just doesn't output what it needs to. If you look in the vBulletin 3 files, that is all at the bottom. In the 'if($_REQUEST['do']...' bit, there is a bit at the end: $templatename = 'template_name';//replace "template_name" with name of template. @Colin F: $test = $DB_site->data_seek(0,$memberlistquery); echo $test; Returns '1'.. (whatever that means, lol) |
#8
|
|||
|
|||
![]()
Oh and Dean, I did what you said...
PHP Code:
|
#9
|
||||
|
||||
![]()
Ok then debug it like so:
PHP Code:
![]() |
#10
|
|||
|
|||
![]()
I didn't try that because I figured out the problem. I assume it would have echo()'ed "one" in the browser.
![]() That bit is working fine. Code:
<tr> <td style="text-align: center; vertical-align: middle"> <a href="member.php?u=1">Davey</a> </td> <td style="text-align: center; vertical-align: middle"> Founder </td> <td style="text-align: center; vertical-align: middle"> Warrior </td> <td style="text-align: center; vertical-align: middle"> Carpentry </td> </tr> edit.- I have to eval() the $memberlist variable, no..? |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|