Clan Adverts

Sponsors

CT on Facebook

Latest Product

User Box

Anonymous
38.107.179.220
Nickname:

Password:

Security Code
Security Code
Type Security Code


PND Downloads Feed

Phpnuke Downloads
How to Delete or Reset yo...
How to Delete or Reset your PHPNuke Admin Account
Lost your admin password ?  Cant login to your admin account ? This s...
Back Online & Stuff
Back Online & Stuff
Look at us with our nifty website back up and running… Seriously...
How to edit the admins in...
How to edit the admins in the forums
Here is a way to make someone admin in your forums on your Evo site. I...
Demo Splash Screen
Demo Splash Screen
Ped @ Clan Themes has released a simple splash screen entrance hack. ...
Free Phpnuke Business The...
Free Phpnuke Business Theme 6
This is the 6th Business theme for Phpnuke that Clan Themes has releas...
Tricked Out Slider
Tricked Out Slider
We have seen some great new things come out of Tricked Out News and th...

Custom Work

PHP Nuke Custom Work

www.clanthemes.com :: View topic - Nuke admin section question
Nuke admin section question

4 Replies / 187 Views


Post new topic   Reply to topic  

   www.clanthemes.com Forum Index » General PhpNuke

View previous topic :: View next topic


KillerBee123
Reputation: 12.5 Add RepSubtract Rep
Local time: 7:35 AM
Location: England
uk.gif

Armour Whore
Armour Whore

0.04 posts per day
Medals: 0

Joined: May 14, 2009
Last Visit: 25 May 2012
Posts: 42
Points: 2242 

Post Nuke admin section question Posted: Mon Dec 05, 2011 7:07 pm

hi,

i am creating a admin account for one of our members who will be taking care of some of the day to day stuff of our website. the problem i have right now is i don't want to allow him full admin access as he will then be able to read PMs that are sent on the site. the problem is unless i set him to a super user he cannot see the Administration Menu he will only see the modules menu in the admin section.

kinda long winded but hopefully you will see what i mean.

is it possible to set the admin section so all admin areas are in the modules section, instead of being in the Administration Menu and Modules Menu. or is it possible so that i can select super user but disallow access to the forums?

i am running Platinum 7.6.b.5. sorry if it is confusing but if you have any questions please ask.
 

 
View user's profileSend private messageVisit poster's website Reply with quote

actnreactgaming
Reputation: 40.3 Add RepSubtract Rep
Local time: 12:35 PM

blank.gif

Stand-by Stand-by
Stand-by Stand-by

1.72 posts per day
Medals: 1 (View more...)
Site Supporter (Amount: 1)

Joined: Nov 09, 2011
Last Visit: 25 May 2012
Posts: 342
Points: 18017 

Post Nuke admin section question Posted: Mon Dec 05, 2011 9:08 pm

Shop Purchases:
Modern Gamer Multi Theme

I don't know for sure, but I think that Platinum doesn't have that kind of possibilities. Also I would like to point out that Platinum is hopelessly outdated.

The kind of thing you would want to do is most likely to be possible on Nuke Evolution-Extreme. As they use phpbb usergroups to set privileges on the website aswell as making people admins (at least from what I recall)

correct me if i'm wrong, but my best bet would be you migrating to Nuke Evolution-Extreme.

best regards,
actnreactgaming
 

 
View user's profileSend private message Reply with quote

KillerBee123
Reputation: 12.5 Add RepSubtract Rep
Local time: 7:35 AM
Location: England
uk.gif

Armour Whore
Armour Whore

0.04 posts per day
Medals: 0

Joined: May 14, 2009
Last Visit: 25 May 2012
Posts: 42
Points: 2242 

Post Re: Nuke admin section question Posted: Mon Dec 05, 2011 9:27 pm

well thats not news to me LOL. problem is i just do what is asked Angel

i dont suppose you have link for a d/load?

figure i will throw it on a test site, then try to persuade them to swap, the only thing i can see that will keep them back is the fact they will lose all the database files, forum users etc. unless there is a way you can merge? any ways not to big of a deal.
 

 
View user's profileSend private messageVisit poster's website Reply with quote


actnreactgaming
Reputation: 40.3 Add RepSubtract Rep
Local time: 12:35 PM

blank.gif

Stand-by Stand-by
Stand-by Stand-by

1.72 posts per day
Medals: 1 (View more...)
Site Supporter (Amount: 1)

Joined: Nov 09, 2011
Last Visit: 25 May 2012
Posts: 342
Points: 18017 

Post Nuke admin section question Posted: Mon Dec 05, 2011 10:13 pm

Shop Purchases:
Modern Gamer Multi Theme

i think that merging isn't too big of an issue, if you know where to look. Thing is I don't :P. However i've been having some database problems myself recently (corruption of one due to double install). I've learned a thing or two from it.

1. Yes you definitly want to throw it on a test site first.
2. what you could try is making a database dump, remove all the DROP TABLE commands from it, and only leave the insert commands intact. an example of how it would look like before:

--
-- Table structure for table `nuke_autonews`
--

DROP TABLE IF EXISTS `nuke_autonews`;
CREATE TABLE `nuke_autonews` (
`anid` int(11) NOT NULL auto_increment,
`catid` int(11) NOT NULL default '0',
`aid` varchar(25) NOT NULL default '',
`title` varchar(80) NOT NULL default '',
`time` varchar(19) NOT NULL default '',
`hometext` text NOT NULL,
`bodytext` text NOT NULL,
`topic` int(3) NOT NULL default '1',
`informant` varchar(25) NOT NULL default '',
`notes` text NOT NULL,
`ihome` int(1) NOT NULL default '0',
`alanguage` varchar(30) NOT NULL default '',
`acomm` int(1) NOT NULL default '0',
`associated` text NOT NULL,
PRIMARY KEY (`anid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `nuke_autonews`
--


/*!40000 ALTER TABLE `nuke_autonews` DISABLE KEYS */;
LOCK TABLES `nuke_autonews` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `nuke_autonews` ENABLE KEYS */;

and after:

/*!40000 ALTER TABLE `nuke_autonews` DISABLE KEYS */;
LOCK TABLES `nuke_autonews` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `nuke_autonews` ENABLE KEYS */;

This is done from my own Raven's Nuke 2.40.01 website. on the database in question I made a double install of Evo-Extreme. which didn't go too well :P got it all back so no harm done.

because the database structure of the Evo-Extreme and Raven's Nuke, and most likely Platinum aswell, are different from each other you would not want to drop the tables, but see if the insert statements hold true for the thing you want to do. But again, I ain't no MySQL hero, this is merely an idea. People can correct me if I'm wrong, but that is how I would start for now and see how far you can come.

Hope this helps anything,
let me know the outcome, I'm quite interested in how it will play out.

best regards,
actnreactgaming
 

 
View user's profileSend private message Reply with quote

actnreactgaming
Reputation: 40.3 Add RepSubtract Rep
Local time: 12:35 PM

blank.gif

Stand-by Stand-by
Stand-by Stand-by

1.72 posts per day
Medals: 1 (View more...)
Site Supporter (Amount: 1)

Joined: Nov 09, 2011
Last Visit: 25 May 2012
Posts: 342
Points: 18017 

Post Nuke admin section question Posted: Mon Dec 05, 2011 10:41 pm

Shop Purchases:
Modern Gamer Multi Theme

An idea just sprung to mind, you could try a clean install on evo extreme skip the configuration and dont make a god account just yet. Make a database dump of your live site and a database dump of the evo extreme site, compare de insert statements of one and another and see if they match in general lines, then copy the insert statements of your live website into the database dump file of the evo extreme one. That could theoretically work

Lmk the outcome!
Best regards,
actnreactgaming
 

 
View user's profileSend private message Reply with quote
Post new topic   Reply to topic  
   www.clanthemes.com Forum Index » General PhpNuke


 
4 Replies / 187 Views
Page 1 of 1
All times are GMT
Display posts from previous:   
 
Jump to:  
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
You cannot attach files in this forum
You can download files in this forum