You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 295 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Mod Ported: Approve Posts mod [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
Endeavour
Corporal
Corporal


Joined: Oct 22, 2006
Posts: 59


PostPosted: Mon Oct 23, 2006 9:15 am Reply with quoteBack to top

Hi,

I've just finished porting the PHPBB "Approve Posts" mod to Nuke 7.x (dev done on 7.6).

This mod allows you to specify forums, topics and users to place on moderation (ie: to have their posts approved by a moderator before being publicly viewable). You can moderate new posts, replies and edits. Other options include notification of moderators when a post needs approval and notification of users when their post is approved. You can see the original PHPBB port here.

Use at your own risk and test it first please, but you are entitled to a full refund of the price you paid for it Smile

Download the Nuke port here

Not sure where to put this post or if it should be an announcement - moderators please move or make a news item as appropriate. Thanks!
Find all posts by EndeavourView user's profileSend private message
v3x
Support Mod
Support Mod


Joined: Oct 19, 2004
Posts: 1041

Location: UK

PostPosted: Thu Oct 26, 2006 4:37 am Reply with quoteBack to top

Great work!
Find all posts by v3xView user's profileSend private messageVisit poster's website
nuevonuke
Corporal
Corporal


Joined: Aug 30, 2005
Posts: 64


PostPosted: Fri Nov 03, 2006 2:48 pm Reply with quoteBack to top

Thank you very much by the work. It took to time looking for a MOD of this type to moderate some conflicting users. He is very interesting and I am going to prove if it works.
Find all posts by nuevonukeView user's profileSend private message
mike1985
Nuke Cadet
Nuke Cadet


Joined: Dec 18, 2006
Posts: 6


PostPosted: Mon Dec 18, 2006 2:14 am Reply with quoteBack to top

very nice and easy to install mod, work 99.9%, except when the mod/admin receives a PM telling him there is a topic they need to approve of, the linking system is wrong, it seems alot like the regular linking to what phpbb has, and not to what bbtonuke forums use, can you help me on that? i think that the problem is in the posting.php file where the code to send the link out is...


thanks
Find all posts by mike1985View user's profileSend private message
mike1985
Nuke Cadet
Nuke Cadet


Joined: Dec 18, 2006
Posts: 6


PostPosted: Tue Dec 19, 2006 7:20 pm Reply with quoteBack to top

anyone know what i am talking and willing to help please?

Thanks
Find all posts by mike1985View user's profileSend private message
Endeavour
Corporal
Corporal


Joined: Oct 22, 2006
Posts: 59


PostPosted: Wed Dec 20, 2006 8:37 am Reply with quoteBack to top

Oh, yes, I noticed that too. I'll fix it tonight and post a fix for it in this thread.

_________________
Stand up for courtesy and decency in the Nuke community, don't support nukeforums.
Find all posts by EndeavourView user's profileSend private message
Endeavour
Corporal
Corporal


Joined: Oct 22, 2006
Posts: 59


PostPosted: Wed Dec 20, 2006 12:09 pm Reply with quoteBack to top

Right, I know what the fix is but it's going to take me more time than I have right now to rewrite the code block.

I'll do it sometime over christmas and re-release the mod.

But in the meantime, if you're handy with PHP, open the Install-Nuke.txt included in the zip and find:

// Begin Aprove_Mod Block : 5

in there you'll see the code that generates the emails and private messages.

To specifically, quick-hack fix the moderator pm notification find:

Code:
$privmsg_message = $lang['approve_notify_link'] . "\n" . $server_protocol . $server_name . $server_port . $script_name . '?'. POST_POST_URL . '=' . $post_id . '#' . $post_id;


and change it to:

Code:
$privmsg_message = 'http://www.YOURSITE.COM/modules.php?modules.php?name=Forums&file=viewtopic&p='.$post_id;


obviously changing the domain to your own website.

And of course this only changes the installation mod file, you'll need to make this mod to your forum code.

I'll post a full fix shortly, if you don't understand what I'm on about.

_________________
Stand up for courtesy and decency in the Nuke community, don't support nukeforums.
Find all posts by EndeavourView user's profileSend private message
mike1985
Nuke Cadet
Nuke Cadet


Joined: Dec 18, 2006
Posts: 6


PostPosted: Wed Dec 20, 2006 2:17 pm Reply with quoteBack to top

as a quick fix it works fine, looking forward to the full fix of the linking, also noticed that in the admin panel, there are some bad links when trying to add a user to moderate, or viewing there profile in the admin panel of this mod.

thanks...
Find all posts by mike1985View user's profileSend private message
LadyCherry
Lieutenant
Lieutenant


Joined: Aug 12, 2003
Posts: 190


PostPosted: Tue Mar 22, 2011 6:16 am Reply with quoteBack to top

I know this post is ages old but here is the fix for the E-Mail Links (Mind you the moderate link takes you to login first, its what is required on my site):

Open: Forums/posting.php

Replace:
Code:

 $emailer->msg = $board_config[\'sitename\'] . \"\\n\" . $lang[\'approve_notify_link\'] . \"\\n\" . $server_protocol . $server_name . $server_port . $script_name . \'?\'. POST_POST_URL . \'=\' . $post_id . \'#\' . $post_id;
//                                                      $emailer->msg .= \"\\n\\n\" . $lang[\'approve_notify_approve_link\'] . \"\\n\" . $server_protocol . $server_name . $server_port . $script_name . \'?\'. POST_POST_URL . \'=\' . $post_id . \'&app_p=\' . $post_id . \'#\' . $post_id;




With this:
Code:

 $emailer->msg = $board_config[\'sitename\'] . \"\\n\" . $lang[\'approve_notify_link\'] . \"\\n\" . $server_protocol . $server_name . $server_port . \'modules.php?name=Forums&file=viewtopic&p=\'. $post_id;
                                                        $emailer->msg .= \"\\n\\n\" . $lang[\'approve_notify_approve_link\'] . \"\\n\" . $server_protocol . $server_name . $server_port .\'modules.php?name=Your_Account\';
Find all posts by LadyCherryView user's profileSend private message
LadyCherry
Lieutenant
Lieutenant


Joined: Aug 12, 2003
Posts: 190


PostPosted: Tue Mar 22, 2011 6:20 am Reply with quoteBack to top

not sure why the board is tossing backslashes into my post grrr
Find all posts by LadyCherryView user's profileSend private message
Slackervaara
Captain
Captain


Joined: Sep 13, 2003
Posts: 355


PostPosted: Sat Apr 02, 2011 9:36 pm Reply with quoteBack to top

Thanks, LadyCherry!

Your fix worked fine!
Find all posts by SlackervaaraView user's profileSend private message
doffer
Nuke Soldier
Nuke Soldier


Joined: Nov 02, 2007
Posts: 17

Location: Holland

PostPosted: Thu Jul 14, 2011 11:01 am Reply with quoteBack to top

I just finished the installation of this mod.. I have enabled the options in the cp of the forum.. so everything seems to be okey

but the users still can post without my approve.. the new topics and replay are being on the forum before I can approve...

do I have to do somthing els except enable the options in the forum cp ? the installatie of the mod went good and I dont see errors.

any help would be great

thanks
Find all posts by dofferView user's profileSend private message
Slackervaara
Captain
Captain


Joined: Sep 13, 2003
Posts: 355


PostPosted: Thu Jul 14, 2011 6:49 pm Reply with quoteBack to top

First you have to enable this mod in the Forum administration for each forum part, which is pretty labourius, if you have many sections in the forum.

Then to initiate the Mod you have to click om Moderate user for a certain user or activate it for a certain thread. After that it worked for me, but Moderators had to use SubSilver theme of the forum, because older forum themes for older themes for PHP-Nuke did not work for my moderators.

Also for me initially this Mod did not work properly, so I uploaded the files again and after that it worked. I had a test site on my PC, where I tested the files first, so I knew they were working.
Find all posts by SlackervaaraView user's profileSend private message
doffer
Nuke Soldier
Nuke Soldier


Joined: Nov 02, 2007
Posts: 17

Location: Holland

PostPosted: Fri Jul 15, 2011 11:26 am Reply with quoteBack to top

it works now.. but I see many broken icons/links... and I wonder how can I refuse a new topic/post ? Sad

I wish the maker can make a fixed version because it is a great mod
Find all posts by dofferView user's profileSend private message
xiaozhengmmm



Joined: Sep 23, 2014
Posts: 0


PostPosted: Mon Sep 22, 2014 11:53 pm Reply with quoteBack to top

coach outlet store online
louis vuitton bags
oakley glasses
red shoes
cheap nfljerseys
cheap jerseys
Coach Outlet
kate spade purses
fitflops clearance
louis vuitton outlet
polo ralph lauren
cheap toms
mont blanc legend
louis vuitton outlet
hermes delivery
coach factory
used louis vuitton
hair straightener
louis vuitton shoes
louis vuitton
marc jacobs handbags
louis vuitton purses
gucci shoes
mont blanc pens
insanity workout
Coach Factory Online
nfl jerseys wholesale
michael kors outlet
louis vuitton outlet
fitflop footwear
mont blanc pen
mont blanc legend
cheap jordan for sale
mont blanc fountain pens
michael kors handbags
fendi purses
ray ban aviators
cheap ray ban sunglasses
louis vuitton purses
bottega veneta bags
trye religion outlet
louis vuitton purses
fitflops
trye religion outlet store
prada handbags
jordan retro
Coach Factory
coach factory
fendi handbags
gucci handbags
fitflop footwear
louboutin shoes
discount ray ban sunglasses
michael kors outlet
fitflop shoes
ralph lauren
oakley outlet
cheap louis vuitton
www.louisvuitton.com
hollister co
michael kors outlet
christian louboutin outlet
mont blanc mountain
prada shoes
louis vuitton uk
burberry outlet
cheap jordans
juicy couture
polo outlet
christian louboutin
nfl jerseys
fitflop shoes
michael kors handbags
tory burch shoes
fitflop sandals
fitflop sandals outlet
michaelkors outlet store
cheap jordans
fitflops online
chi straightener
abercrombie fitch
ray ban wayfarer
ray ban
toms sale
true religion jeans outlet
chanel handbags
coach outlet
toms shoes outlet
louis vuitton outlet
ralph lauren outlet
hermes bracelet
toms shoes sale
workout routines
cheap ray bans
true religion jeans men
louis vuitton speedy
louis vuitton wallet
designer handbags
oakley suglasses cheap
coach factory
fendi
joe abercrombie
cheap jerseys from china
true religion outlet
burberry bags
cheap true religion jeans
ray ban sunglasses wholesale
marc jacobs
red bottom shoes
louis vuitton bags
louis vuitton outlet
louis vuitton handbags
louis vuitton outlet store
fendi bags
jordan sneakers
toms outlet
michael kors outlet online
coach factory online
louis vuitton outlet
mont blanc fountain pen
nfl jerseys
chi hair straightener
toms shoes
louis vuitton sunglasses
hermes belt
gucci outlet store
true religion
kate spade outlet
oakley outlet
louis vuitton handbags
bottega veneta outlet
jordan shoes
michael kors handbags
kate spade
chanel bags
michael kors bags
prada bags
kate spade outlet online
louis vuitton
burberry handbags
louis vuitton backpack
coach outlet store online
coach factory outlet
kate spade outlet store
kate spade factory outlet
ray bans
true religion jeans outlet
jordan 13
louis vuitton
louis vuitton belt
true religion sale
fendi outlet
true religion jeans outlet
bottega veneta
hollister outlet
christian louboutin
louis vuitton handbags
jordan retro
louis vuitton belts
christian louboutin outlet
michael kors outlet online
prda outlet
coach factory online
michael kors purses
louis vuitton
fitflop sale
Coach Factory Store[/url
[url=http://www.insanity-workout.cc]ab workouts

louis vuitton bags
hollister kids
louisvuitton
toms outlet
oakley sunglasses
celine outlet
hollister promo code
michael kors backpack
abercrombie and fitch
louis vuitton neverfull
juicy couture outlet
louis vuitton
kate spade handbags
michael kors outlet online
kate spade outlet
cheap nfl jerseys
toms wedges
hair dryer
cheap oakley sunglasses
christian louboutin sale
workout plans
jordan 11
nfl football jerseys
jordan for women
crossfit workouts
hollister clothing
christian louboutin shoes
true religion jeans
abercrombie and kent
mont blanc pens
ray ban sunglasses
chanel online shop
christian louboutin shoes
chanel outlet
louis vuitton wallet
louis vuitton handbags
louis vuitton outlet stores
louis vuitton handbags
jordans for sale
true religion outlet
tory burch flats
louis vuitton outlet store
coach outlet
hermes outlet
trye religion outlet
cheap jerseys
true religion outlet store
ray ban outlet
mont blanc pen
ralph lauren home
coach factory outlet
hermes birkin
football jersey
oakley sunglasses wholesale
air jordan shoes
cheap jordans
kate spade handbags
louis vuitton outlet
louis vuitton outlet
ray ban outlet stores
jordan shoes
marc jacobs outlet
gucci outlet
chi flat iron
fitflop outlet
fitflops clearance
gucci bags
fitflop outlet
tory burch outlet
michael kors bags
oakley sunglasses wholesale
ray bans
louis vuitton purses
bottega veneta outlet online
cheap oakleys
bottega veneta handbags
ray ban sunglasses outlet
Coach Factory Outlet
louis vuitton speedy
louis vuitton handbags
red bottoms
viva la juicy
louis vuitton purses
jordan shoes
marc by marc jacobs
louboutin
ray ban outlet
celine bag price
kate spade
true religion jeans
toms shoes
louis vuitton usa
coach factory online
louis vuitton handbags
p90x workout schedule
ray ban sunglasses
coach factory outlet online
louis vuitton outlet stores
louis vuitton officail website
louis vuitton purses
christian louboutin sneakers
tory burch outlet online
ray ban sunglasses
red heels
true religion
true religion jeans
louis vuitton outlet
coach factory outlet
celine handbags
celine paris
burberry scarf
tory burch handbags
abercrombie
ray ban glasses
coach outlet
juicy couture perfume
true religion jeans
celine luggage tote
louis vuitton bags
oakley sunglasses
fitflop outlet
toms promo code
Find all posts by xiaozhengmmmView user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next 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



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by TOGETHER TEAM srl ITALY http://www.togetherteam.it - DONDELEO E-COMMERCE http://www.DonDeLeo.com - TUTTISU E-COMMERCE http://www.tuttisu.it
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 4.953 Seconds - 350 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::