» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 45
1 members and 44 guests
doctornuke
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Oral Chelation - initial cleansing of your veins & arteries

Register Now! Contact Us

About this Page
This is a discussion on Downloads no downloading within the Nuke 6.5 to 6.9 - Modules forums, part of the PHP-Nuke 6.5 to 6.9 category; Hey guys the downloads section will not accept and show the downloads that I add as a registered user. I ...


Go Back   Nukemods Forum » PHP-Nuke 6.5 to 6.9 » Nuke 6.5 to 6.9 - Modules

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-07-2003, 12:10 PM
Junior Member
 
Join Date: Jun 2003
Location: San Clemente, Ca. Orange
Posts: 137
Send a message via MSN to paycheck
Downloads no downloading
Hey guys the downloads section will not accept and show the downloads that I add as a registered user. I have set all permissions to allow registered users to add downloads. The only way I can get a download to take is to do it through the admin section myself, otherwise no go.

I have recently installed Nuke 6.5 and am using the advanced downloads module. All seems to be in the correct spot and working. I have two icons in my admin section, Nuke advanced downloads icon and downloads. Any help is appreciated.

JM
__________________
Logos for free at http://www.jsm-inc.com

Be cool!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 07-08-2003, 07:57 PM
Moderator
 
Join Date: Nov 2002
Posts: 737
I'm not sure if this will make a difference or not, but do you have the regular downloads module invisible but active?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 07-08-2003, 08:44 PM
Junior Member
 
Join Date: Jun 2003
Location: San Clemente, Ca. Orange
Posts: 137
Send a message via MSN to paycheck
Ok I am not quiet following you on this one. I have in my admin section an icon called downloads, the round circle with the down arrow in the center in black. When I uploaded the Nuke Styles Downloads I got another icon in the admin section however no link in the modules section of modules. I have but one link in the modules section called downloads and it is currently activated.

Is that what you are asking me?

JM
__________________
Logos for free at http://www.jsm-inc.com

Be cool!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 07-08-2003, 10:45 PM
Moderator
 
Join Date: Nov 2002
Posts: 737
Is there a downloads listed under inactive?

What happens when you click on the nukestyles downloads icon?

Do you have the most recent vs of it?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 07-09-2003, 01:52 AM
Junior Member
 
Join Date: Jun 2003
Location: San Clemente, Ca. Orange
Posts: 137
Send a message via MSN to paycheck
No the only download listed is active. I am unclear what the nuke styles downloads does. when I click it I get a set up screen that has the following heading sections on it:

NukeStyles.com Extra Downloads Settings
Featured Link Box Settings
More Download Settings
New Downloads Options
Popular Downloads Options
Top Rated Downloads Options
Add & Modify Download Options
Vote & Rating Options

Each of these categories has several options in it. I have set them to my liking and am not really seeing the duty behind this. Still I am unable to get the downloads to work in just a registered state when I aadd a download. No e-mail notification to webmaster, no link submisssion showing in admin etc. etc.

THanks for your help.

JM
__________________
Logos for free at http://www.jsm-inc.com

Be cool!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 07-09-2003, 02:10 AM
Moderator
 
Join Date: Nov 2002
Posts: 737
Can you upload conntest from Nukecops and post a link please.

If we still can't find the problem and you want to give me admin access I'll take a look at it, and see if I can find what the problem is. I believe I'm already signed up on your site.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 07-09-2003, 02:34 AM
Junior Member
 
Join Date: Jun 2003
Location: San Clemente, Ca. Orange
Posts: 137
Send a message via MSN to paycheck
OK here is the link for the conntest.php

http://www.jsm-inc.com/nuke/html/conntest.php

And here is a snippet of the sql file I used for creating DB

#
# Table structure for table `nuke_downloads_categories`
#

CREATE TABLE nuke_downloads_categories (
cid int(11) NOT NULL auto_increment,
title varchar(50) NOT NULL default '',
cdescription text NOT NULL,
parentid int(11) NOT NULL default '0',
PRIMARY KEY (cid),
KEY cid (cid),
KEY title (title)
) TYPE=MyISAM;

#
# Dumping data for table `nuke_downloads_categories`
#

# --------------------------------------------------------

#
# Table structure for table `nuke_downloads_downloads`
#

CREATE TABLE nuke_downloads_downloads (
lid int(11) NOT NULL auto_increment,
cid int(11) NOT NULL default '0',
sid int(11) NOT NULL default '0',
title varchar(100) NOT NULL default '',
url varchar(100) NOT NULL default '',
description text NOT NULL,
date datetime default NULL,
name varchar(100) NOT NULL default '',
email varchar(100) NOT NULL default '',
hits int(11) NOT NULL default '0',
submitter varchar(60) NOT NULL default '',
downloadratingsummary double(6,4) NOT NULL default '0.0000',
totalvotes int(11) NOT NULL default '0',
totalcomments int(11) NOT NULL default '0',
filesize int(11) NOT NULL default '0',
version varchar(10) NOT NULL default '',
homepage varchar(200) NOT NULL default '',
PRIMARY KEY (lid),
KEY lid (lid),
KEY cid (cid),
KEY sid (sid),
KEY title (title)
) TYPE=MyISAM;

#
# Dumping data for table `nuke_downloads_downloads`
#

# --------------------------------------------------------

#
# Table structure for table `nuke_downloads_editorials`
#

CREATE TABLE nuke_downloads_editorials (
downloadid int(11) NOT NULL default '0',
adminid varchar(60) NOT NULL default '',
editorialtimestamp datetime NOT NULL default '0000-00-00 00:00:00',
editorialtext text NOT NULL,
editorialtitle varchar(100) NOT NULL default '',
PRIMARY KEY (downloadid),
KEY downloadid (downloadid)
) TYPE=MyISAM;

#
# Dumping data for table `nuke_downloads_editorials`
#

# --------------------------------------------------------

#
# Table structure for table `nuke_downloads_modrequest`
#

CREATE TABLE nuke_downloads_modrequest (
requestid int(11) NOT NULL auto_increment,
lid int(11) NOT NULL default '0',
cid int(11) NOT NULL default '0',
sid int(11) NOT NULL default '0',
title varchar(100) NOT NULL default '',
url varchar(100) NOT NULL default '',
description text NOT NULL,
modifysubmitter varchar(60) NOT NULL default '',
brokendownload int(3) NOT NULL default '0',
name varchar(100) NOT NULL default '',
email varchar(100) NOT NULL default '',
filesize int(11) NOT NULL default '0',
version varchar(10) NOT NULL default '',
homepage varchar(200) NOT NULL default '',
PRIMARY KEY (requestid),
UNIQUE KEY requestid (requestid)
) TYPE=MyISAM;

#
# Dumping data for table `nuke_downloads_modrequest`
#

# --------------------------------------------------------

#
# Table structure for table `nuke_downloads_newdownload`
#

CREATE TABLE nuke_downloads_newdownload (
lid int(11) NOT NULL auto_increment,
cid int(11) NOT NULL default '0',
sid int(11) NOT NULL default '0',
title varchar(100) NOT NULL default '',
url varchar(100) NOT NULL default '',
description text NOT NULL,
name varchar(100) NOT NULL default '',
email varchar(100) NOT NULL default '',
submitter varchar(60) NOT NULL default '',
filesize int(11) NOT NULL default '0',
version varchar(10) NOT NULL default '',
homepage varchar(200) NOT NULL default '',
PRIMARY KEY (lid),
KEY lid (lid),
KEY cid (cid),
KEY sid (sid),
KEY title (title)
) TYPE=MyISAM;

#
# Dumping data for table `nuke_downloads_newdownload`
#

# --------------------------------------------------------

#
# Table structure for table `nuke_downloads_votedata`
#

CREATE TABLE nuke_downloads_votedata (
ratingdbid int(11) NOT NULL auto_increment,
ratinglid int(11) NOT NULL default '0',
ratinguser varchar(60) NOT NULL default '',
rating int(11) NOT NULL default '0',
ratinghostname varchar(60) NOT NULL default '',
ratingcomments text NOT NULL,
ratingtimestamp datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (ratingdbid),
KEY ratingdbid (ratingdbid)
) TYPE=MyISAM;

#
# Dumping data for table `nuke_downloads_votedata`
#

# --------------------------------------------------------
__________________
Logos for free at http://www.jsm-inc.com

Be cool!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 07-09-2003, 03:00 AM
Moderator
 
Join Date: Nov 2002
Posts: 737
I was looking to see if there was a table created for NS downloads and there is.

What do you have listed in your inactive modules?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 07-09-2003, 10:48 AM
Junior Member
 
Join Date: Jun 2003
Location: San Clemente, Ca. Orange
Posts: 137
Send a message via MSN to paycheck
Here is the modules I have currently

__________________________________________________ ___________

Quote:
Addon_Sample Addon Sample Inactive Administrators Only [ Edit | Activate | Put in Home ]
AvantGo AvantGo Inactive All Visitors [ Edit | Activate | Put in Home ]
Content Content Inactive All Visitors [ Edit | Activate | Put in Home ]
CookBook CookBook Active All Visitors [ Edit | Deactivate | Put in Home ]
Donations Donations Active All Visitors [ Edit | Deactivate | Put in Home ]
Downloads Downloads Active All Visitors [ Edit | Deactivate | Put in Home ]
Encyclopedia Encyclopedia Inactive All Visitors [ Edit | Activate | Put in Home ]
FAQ FAQ Active All Visitors [ Edit | Deactivate | Put in Home ]
Feedback Feedback Active All Visitors [ Edit | Deactivate | Put in Home ]
Forums Forums Active All Visitors [ Edit | Deactivate | Put in Home ]
gallery gallery Active All Visitors [ Edit | Deactivate | Put in Home ]
Journal Journal Inactive All Visitors [ Edit | Activate | Put in Home ]
Members_List Members List Active Registered Users Only [ Edit | Deactivate | Put in Home ]
News News Active (In Home) All Visitors [ Edit | Deactivate | Put in Home ]
NuCalendar NuCalendar Active All Visitors [ Edit | Deactivate | Put in Home ]
Private_Messages Private Messages Active All Visitors [ Edit | Deactivate | Put in Home ]
REALVirtualStore REALVirtualStore Active All Visitors [ Edit | Deactivate | Put in Home ]
Recommend_Us Recommend Us Active All Visitors [ Edit | Deactivate | Put in Home ]
Reviews Reviews Active All Visitors [ Edit | Deactivate | Put in Home ]
Search Search Active All Visitors [ Edit | Deactivate | Put in Home ]
Sections Sections Inactive All Visitors [ Edit | Activate | Put in Home ]
Statistics Statistics Active All Visitors [ Edit | Deactivate | Put in Home ]
Stories_Archive Stories Archive Active All Visitors [ Edit | Deactivate | Put in Home ]
Submit_News Submit News Active All Visitors [ Edit | Deactivate | Put in Home ]
Surveys Surveys Active All Visitors [ Edit | Deactivate | Put in Home ]
The_Brotherhood The_Brotherhood Active All Visitors [ Edit | Deactivate | Put in Home ]
Top Top 10 Active All Visitors [ Edit | Deactivate | Put in Home ]
Topics Topics Active All Visitors [ Edit | Deactivate | Put in Home ]
Top_Sites Top_Sites Active All Visitors [ Edit | Deactivate | Put in Home ]
WebChat WebChat Active All Visitors [ Edit | Deactivate | Put in Home ]
WebMail WebMail Active Registered Users Only [ Edit | Deactivate | Put in Home ]
Web_Links Web Links Active All Visitors [ Edit | Deactivate | Put in Home ]
Your_Account Your Account Active All Visitors [ Edit | Deactivate | Put in Home ]
__________________
Logos for free at http://www.jsm-inc.com

Be cool!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 07-09-2003, 11:12 AM
Junior Member
 
Join Date: Jun 2003
Location: San Clemente, Ca. Orange
Posts: 137
Send a message via MSN to paycheck
OK Bro I found the error, for some reason I did not upload one of the case.ns_downloads.php file. Not sure what happened there but it seems to be in working order now. Sorry for the headaches.

JM
__________________
Logos for free at http://www.jsm-inc.com

Be cool!
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
downloading macd Purged Topics 1 06-13-2003 11:59 PM
Downloads Module: Streaming downloads pacozorro Nuke 6.5 to 6.9 - Modules 2 06-10-2003 05:20 PM
Downloads not showing up in 1.6 enhanced Downloads paycheck Purged Topics 0 06-04-2003 10:49 PM
Downloading fiBlack Theme AnGus Nuke 6.5 to 6.9 - Themes 3 06-01-2003 09:53 PM


All times are GMT -5. The time now is 11:50 PM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.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