Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 53
3 members and 50 guests
buynm6ymobcha8b, cliaw9cckhereto, int5nwernetmarx
Most users ever online was 611, 03-21-2008 at 10:10 PM.
» .::.
» .:.

Go Back   Nukemods Forum > NM Staff > Purged Topics

Reply
 
LinkBack Thread Tools Display Modes
Latest Downloads Module
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 3
Join Date: Oct 2002
Location: USA
Latest Downloads Module - 10-26-2002, 08:32 AM

I can't seem to find one.
They use one @ http://www.vigilantegamers.com/

Does anyone know where I can't get this?
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
11-07-2002, 08:13 PM

I don't know if this is th esame thing, but Nuek already has a default Top 10 Downloads block.

Go to Nuke Admin, Blocks and add the one called Top10 Downloads.

mikem
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 3
Join Date: Oct 2002
Location: USA
11-08-2002, 06:25 AM

Thanks for the reply Mike.
I do know about the "Top 10" mod.
What I'm looking for is a block or module that will show the last downloads I have added to the database though, not the top downloads.

But thanks for the help.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Moderator
 
dar63's Avatar
 
Status: Offline
Posts: 473
Join Date: Oct 2002
Location: UK
11-08-2002, 11:28 AM

Code:
<?php

/************************************************************************/
/* PHP-NUKE: Web Portal System                                          */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2001 by Francisco Burzi (fbc@mandrakesoft.com)         */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/*                                                                      */
/* PHP-Nuke Version: 5.4                                                */
/************************************************************************/

if (eregi("block-Downloads_10New.php",$PHP_SELF)) {
    Header("Location: index.php");
    die();
}

$modname = "Downloads";
global $prefix, $dbi;

$a = 1;
$result = sql_query("select lid, title from $prefix"._downloads_downloads." order by date DESC limit 0,10", $dbi);
while(list($lid, $title) = sql_fetch_row($result, $dbi)) {
    $title2 = ereg_replace(" ", "_", $title);
    $content .= "$a<big>&middot;</big> <a href=\"modules.php?name=Downloads&amp;d_op=viewdownloaddetails&amp;lid=$lid&amp;ttitle=$title2\">$title</a>
";
    $a++;
}

?>
Save as block-Downloads_10New.php and put it in your blocks dir.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#5 (permalink))
Junior Member
 
Status: Offline
Posts: 3
Join Date: Oct 2002
Location: USA
11-08-2002, 11:04 PM

Thanks a million dar63.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Downloads Module bug? - How To? prekill Nuke 7.x - Modules 1 11-22-2006 02:37 AM
Downloads Module Andrew87 Nuke 7.x - Modules 0 05-20-2005 04:56 PM
Downloads module Javed Nuke 6.5 to 6.9 - Modules 2 06-22-2003 09:07 PM
Downloads Module: Streaming downloads pacozorro Nuke 6.5 to 6.9 - Modules 2 06-10-2003 04:20 PM
help with downloads module! darkdan Purged Topics 2 01-02-2003 02:57 PM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31