PDA

View Full Version : My site


sifuhall
02-14-2006, 08:25 AM
I have tried many CMSes for vBulletin in the past. I have tried vbAdvanced, SubDreamer, Nephp, etc. and when I found vbDrupal by tamarian it was so far above anything else I had ever used I couldn't believe it.

Here is my site running vbDrupal:

http://www.dragonslist.com

myetalk
02-14-2006, 08:36 AM
It's very good looking, nice job all the way :)

hammerFar
02-14-2006, 04:02 PM
Here is my site running vbDrupal:

http://www.dragonslist.com

Can I ask, what hack or modules you use for the review part? Is it a Drupal module or a vB hack?

myetalk
02-14-2006, 04:41 PM
Can I ask, what hack or modules you use for the review part? Is it a Drupal module or a vB hack?
chances are it's a Drupal mod :)

http://www.drupal.org

hammerFar
02-15-2006, 12:19 AM
he he, yeah but but ... looking at the Review part of his site and also the Arcade section, the design surely looks vB-ish - that's why I'm asking?

(please forgive me not to be vB 3.5 updated - maybe there is something in 3.5 I'm missing :-o )

sifuhall
02-17-2006, 10:18 AM
The review is review post from photo post, but we will be moving away from that. I created the blocks to display the reviews.

The arcade is ibProArcade for vBulletin

speedway
02-27-2006, 05:32 PM
Nice site, well done.

Would you mind sharing the code to display the image thumbnails, I assume they are from photopost....

Cheers
Bruce

sifuhall
02-28-2006, 12:48 PM
Nice site, well done.

Would you mind sharing the code to display the image thumbnails, I assume they are from photopost....

Cheers
Bruce
They are from photopost gallery, formerly vbadvance gallery.

Here is the code I am using:


<br />
<table align="center" border="0" cellpadding="6" cellspacing="1" width="100%">
<tr>
<td colspan="4" class="tborder"><strong>Latest Kung Fu Photos</strong></td>
</tr>
<tr>

<?php

$threads = pager_query(db_rewrite_sql("select *
from " . TABLE_PREFIX . "adv_gallery_images
where valid = 1
order by dateline desc"), 4);

while ($thread = db_fetch_object($threads)) {
$filepath = "/gallery/files/";
$count = 0;
while ($count <= strlen($thread->userid)) {
$filepath .= substr($thread->userid,$count,1) . "/";
$count ++;
}
// remove last slash
$filepath = substr($filepath,0,strlen($filepath)-1);
// get filename
$thread->thumbname = $filepath . $thread->thumbname;

print "
<td class=\"alt1\">
<table border=\"0\">
<tr>
<td align=\"center\" class=\"smallfont\">
<a href=\"/gallery/showimage.php?i=$thread->imageid\"><img src=\"$thread->thumbname\" border=\"1\" class=\"shadow\" alt=\"kung fu photo\" /></a>
<br />
$thread->title
<br /> by $thread->username
</td>
</tr>
</table>
</td>
";
}