PHP Web Host - Quality Web Hosting For All PHP Applications Sign up for PayPal and start accepting credit card payments instantly
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
Author Message
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 1:34 pm Reply with quote Back to top

Hello,
I'm pretty new to all this. I've got my PHPNuke site up and running, but am having trouble adding new groups in the groups module.
I'm using the most recent version of RavenNuke 76. I understand it comes with NSN groups built in, correct? Is that module automatically active?

When I go to create a new group from the main admin, it appears to let me. On the reload of the groups page, there are no groups listed.
It states:
'There are no groups in the database.'
The groups I create do show up in the forum administration page.
As well, when I try to add a group from the forum administration page, the fields are unnamed, so I can't tell what field does what.

I have tried to reinstall (ftp'd nsngroups again) but still have the same problem. Any ideas? Anything I need to change in phpMyAdmin?

PLEASE HELP!!!!!!!!!

mopho
View user's profile Send private message Send e-mail
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 4853

PostPosted: Mon Apr 17, 2006 3:51 pm Reply with quote Back to top

Are the groups public or private? If they're all private, nothing will show on the groups page.
View user's profile Send private message
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 3:57 pm Reply with quote Back to top

I tried to add a public group. Still not showing up.
mopho
View user's profile Send private message Send e-mail
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 4853

PostPosted: Mon Apr 17, 2006 3:59 pm Reply with quote Back to top

There are 2 groups functions - standard Nuke groups and NSN Groups. Are you sure the groups function you're using is the correct one (i.e. NSN Groups)? If so, there should be a copyright there.
View user's profile Send private message
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 4:03 pm Reply with quote Back to top

From the Main Admin page, I go to edit groups. Once I am there, there is no copyright info. How do I access the NSN Group module?
mopho
View user's profile Send private message Send e-mail
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 4853

PostPosted: Mon Apr 17, 2006 4:34 pm Reply with quote Back to top

That might be the correct way to edit groups (the url ends with admin.php?op=NSNGroups). How are you trying to view the groups where they do not appear?
View user's profile Send private message
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 4:41 pm Reply with quote Back to top

Ya, I just looked at the URL and it says NSNGroups at the end. So, I'm assuming it is using NSN Groups.
After I add a test group
group name: test group x
group mod: mopho
group decription: test group x
public: i've tried yes and no.
limit: 0

I hit 'add group'
It pulls up the group list and states 'There are no groups in the database.'

As well, if I go to 'View groups' I get the same message: There are no groups in the database.
View user's profile Send private message Send e-mail
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 4853

PostPosted: Mon Apr 17, 2006 4:45 pm Reply with quote Back to top

Ahhh... Did you run the installation routine and / or verify that the table was created in your database?
View user's profile Send private message
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 4:45 pm Reply with quote Back to top

How do I do that?
I'm assuming I would do that in phpMyAdmin correct?
View user's profile Send private message Send e-mail
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 4853

PostPosted: Mon Apr 17, 2006 4:53 pm Reply with quote Back to top

You could, but all NSN scripts come with a web-based installation routine. Very simple. Check the readme.
View user's profile Send private message
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 5:01 pm Reply with quote Back to top

Can you direct me to the specific read me you are referencing? I don't see anything in the nsngroups folder. I did find under the installation/sql rn76_nsngroups.sql

I also did a complete search in the Raven76 folder for 'readme' and could not find what you are referring to.

Thanks!
mopho
View user's profile Send private message Send e-mail
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 5:50 pm Reply with quote Back to top

I also went to nukescripts.net to dl the nsn groups 71-78 package. It is in the form of a .tar.tar file. I had to dl two different extractors, neither worked.

Please help!
Thanks!
View user's profile Send private message Send e-mail
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4821

PostPosted: Mon Apr 17, 2006 6:04 pm Reply with quote Back to top

If you can use phpmyadmin, check the table 'nuke_blocks' and see if you have a field called 'groups' this may be the quickest way to determine if you have installed the groups tables.
View user's profile Send private message Send e-mail Visit poster's website
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 6:07 pm Reply with quote Back to top

I do not have a field called 'groups' in the 'nuke_blocks' table.
Now what?
Thanks!
View user's profile Send private message Send e-mail
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4821

PostPosted: Mon Apr 17, 2006 6:11 pm Reply with quote Back to top

In phpmyadmin use the SQL menu and copy/paste this into it and then run it.
This asumes your table prefix is 'nuke'.
Code:
DROP TABLE IF EXISTS `nuke_nsngr_config`;
CREATE TABLE `nuke_nsngr_config` ( `config_name` varchar(255) NOT NULL default '', `config_value` text NOT NULL, PRIMARY KEY  (`config_name`) ) TYPE=MyISAM;

INSERT INTO `nuke_nsngr_config` VALUES ('perpage', '50');
INSERT INTO `nuke_nsngr_config` VALUES ('date_format', 'Y-m-d');
INSERT INTO `nuke_nsngr_config` VALUES ('send_notice', '1');
INSERT INTO `nuke_nsngr_config` VALUES ('version_number', '1.7.1');

DROP TABLE IF EXISTS `nuke_nsngr_groups`;
CREATE TABLE `nuke_nsngr_groups` ( `gid` int(11) NOT NULL auto_increment, `gname` varchar(32) NOT NULL default '', `gdesc` text NOT NULL, `gpublic` tinyint(1) NOT NULL default '0', `glimit` int(11) NOT NULL default '0', `phpBB` int(11) NOT NULL default '0', `muid` int(11) NOT NULL default '0', PRIMARY KEY  (`gid`) ) TYPE=MyISAM;

INSERT INTO `nuke_nsngr_groups` VALUES (1, 'Moderators', 'Moderators of this Forum', 0, 0, 3, 5);

DROP TABLE IF EXISTS `nuke_nsngr_users`;
CREATE TABLE `nuke_nsngr_users` ( `gid` int(11) NOT NULL default '0', `uid` int(11) NOT NULL default '0', `uname` varchar(25) NOT NULL default '', `trial` tinyint(1) NOT NULL default '0', `notice` tinyint(1) NOT NULL default '0', `sdate` int(14) NOT NULL default '0', `edate` int(14) NOT NULL default '0' ) TYPE=MyISAM;

INSERT INTO `nuke_nsngr_users` VALUES (1, 5, '', 0, 0, 2005, 0);

ALTER TABLE `nuke_blocks` ADD `groups` TEXT NOT NULL AFTER `view`;
ALTER TABLE `nuke_message` ADD `groups` TEXT NOT NULL AFTER `view`;
ALTER TABLE `nuke_modules` ADD `groups` TEXT NOT NULL AFTER `view`;
View user's profile Send private message Send e-mail Visit poster's website
mopho
New Member
New Member


Joined: Apr 17, 2006
Posts: 20

PostPosted: Mon Apr 17, 2006 6:22 pm Reply with quote Back to top

If no one has told you before: YOU ARE A GENIUS!!!!!!!!!!!
It's working now. THANK YOU!!!

One other question:
Can you tell me how it integrates with the 7.6Nuke bb?
Thanks!
mopho
View user's profile Send private message Send e-mail
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 4853

PostPosted: Mon Apr 17, 2006 6:27 pm Reply with quote Back to top

It might be called installation or something like that... The intallation php file is usually called like nsngr.php, and it's in the root directory after the
Only registered users can see links on this board!
Get registered or login to the forums!
You must be signed on as a Nuke admin to run it. After installing, you should delete it.
View user's profile Send private message
Guardian2003
Site Admin


Joined: Aug 28, 2003
Posts: 4821

PostPosted: Mon Apr 17, 2006 7:14 pm Reply with quote Back to top

Just in case - mopho, did you mean how do you use NSN Groups?
Best way to learn is to tinker Wink
View user's profile Send private message Send e-mail Visit poster's website
kguske
Site Admin


Joined: Jun 04, 2004
Posts: 4853

PostPosted: Mon Apr 17, 2006 8:14 pm Reply with quote Back to top

Yes, tinkering is good. Actually, NSN Groups is directly integrated with phpBB groups. Just make sure you maintain the groups using NSN groups (it's much easier than using phpBB admin anyway).
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2008 by Raven
Proud to be listed at Lobo Links Web Directory

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::

:: fisubice Theme Recoded To 100% W3C CSS & HTML 4.01 Transitional Compliance by Raven and 64bitguy ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum