Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
Moderator Application System 2.1 Details »»
Moderator Application System 2.1
Version: 2.1.1, by sabret00the sabret00the is offline
Developer Last Online: Apr 2010 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 3.6.8 Rating:
Released: 10-06-2007 Last Update: 10-06-2007 Installs: 231
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

FAQ:
What Does It Do? it enables your members to apply to be a mod, cuts down on all the asking and stuff

That It? basically

What about the cool back end? ooh yeah, so anyway it will email on the 14th day to either let em know they've been shortlisted or to try again at a later date

How will it know? mod ratings innit, if their under 7 their outta there

Anything else? nah i guess it starts a thread in your mod forum to tell your mods to rate em

How does it know what forum and who's the threadster? you tell em via the admincp options (where the rest of the vboptions are) theirs a handy little group for the MAF and i don't mean 2+2

Ok so that's gotta be it now? nope

What else does it do? it logs it all in the admincp schedules tasks and sends you a copy of the email

Damn who taught you all that? various folks, special thanks to Dean, Marco, OBK and Zero Tolerance who helped me on this specific hack though.

Ok so what's the install like? swift the long thing is the upload

Ok rumour is it needs to run a cron, what's a cron? :squint: it's the automated do-dad in the admincp

How do i set it up? it's so straight forward you could close your eyes and do it, the file you're cronning is called "mas-cron.php" and i recommend running it at 12.30 (that means leave the rest as stars)

Ok so if their an installer? there is indeed, a quick dirty one. no not like that

Well now that's sorted can i install it? please do!

How can i help you become cooler? click install and let's see if i can become hack of the month innit

Bye now? yes go :ermm:

Wait! ain't this the same as the last one? yes but this one runs on 3.5.x :ninja:

[hr]xxx[/hr]

To Upgrade just run install the new product.xml please see the upgrade.txt for more details

To Uninstall just remove the product

What's new? you can now add your own questions and stuff

For real? for real.

One more thing? sure.

What's the difference between 2.0 and 2.1? Not a whole lot, just phrased the front end and fixed a long standing db table prefix bug.


Screens: https://vborg.vbsupport.ru/showthread.php?p=1354989 Thanks to yoyoyoyo for making up for my laziness.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #132  
Old 02-05-2008, 07:02 PM
Mrdby Mrdby is offline
 
Join Date: Mar 2007
Location: Hades
Posts: 1,298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by pimpfelix View Post
I keep getting Hundreds of emails how do i stop this... no one new as applied
delete the applications for the ones you have denied and approved.
Reply With Quote
  #133  
Old 02-06-2008, 06:48 PM
pimpfelix pimpfelix is offline
 
Join Date: Apr 2005
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What if i have not denied or approved any?
Reply With Quote
  #134  
Old 02-12-2008, 01:34 PM
BBI-Ross BBI-Ross is offline
 
Join Date: Apr 2007
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there anyway of adjusting the size of the area that people have to type in? I have tried the obvious but it doesn't seem to work.

Cheers.
Reply With Quote
  #135  
Old 02-13-2008, 07:53 PM
Alibass's Avatar
Alibass Alibass is offline
 
Join Date: Mar 2007
Posts: 615
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I must have another hack conflicting with this, where do you goto to find the application to fill out? I figured it to be in the usercp, but I cant find it there. I have looked everywhere and I cannot not find it.

**EDIT** Never mind found a post where modapp suppose to go in quick links. I am running 368pl2 and templates are up to date and hack didn't add link, but no big thing I will add it myself. Would be nice if it was added in the hack instructions or info where the access to the application is suppose to be.
Reply With Quote
  #136  
Old 02-15-2008, 03:39 PM
blind-eddie's Avatar
blind-eddie blind-eddie is offline
 
Join Date: Apr 2006
Location: Michigan
Posts: 2,310
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by blind-eddie View Post
Wouldnt it be better if the form itself showed up in the forum after they hit submit, instead of the


Somewhat like This?
Quote:
Originally Posted by sabret00the View Post
would it be better? i'm not so sure. not for my needs at least, but maybe for yours. it would however cause problems with rating the applications.
I wont be rating the apps, they will be voted upon my all members. I dissected your hack, and am able to make it just the way I need it to be, however...I wish someone could help me to get the app to show in a Thread & not the " New App needs Rated" after they hit submit.

I also posted HERE regarding this question. Any help would be great...Thanks, Tim
Reply With Quote
  #137  
Old 02-15-2008, 10:03 PM
mred mred is offline
 
Join Date: Nov 2006
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi there is a fatal error in your mass_cron.php it spams moderator applicants with mails if they got less then 7 points and the application is older then 14 days.

see your code here:

PHP Code:
if ($day >= 14 AND $avg 7// Email users who we're declining.
    
{
        eval(
fetch_email_phrases('mas_feedback_failed'$user['languageid']));
        
vbmail($user['email'], $subject$messagetrue);
        echo(
"Declination Email Sent To  "$user['username'] ."<br />");

        
$declinationemail[] = $user['username'];

        
$getuser $db->query_first("
            SELECT u.userid, mas.appid
            FROM " 
TABLE_PREFIX "user u
            LEFT JOIN " 
TABLE_PREFIX "mas_application mas ON(u.userid = mas.userid)
            WHERE username = '" 
$username "'
        "
);

        
$vbulletin->db->query("DELETE FROM " TABLE_PREFIX "mas_application WHERE userid = " $userid);
        
$vbulletin->db->query("DELETE FROM " TABLE_PREFIX "mas_rating WHERE appid = " $getuser['appid']);
    } 
find this row

PHP Code:
$getuser $db->query_first(
and replace it with

PHP Code:
$getuser $vbulletin->db->query_first(
Reply With Quote
  #138  
Old 02-16-2008, 01:11 PM
qdin's Avatar
qdin qdin is offline
 
Join Date: Nov 2006
Location: Istanbul
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is a bug in it I think. When I tried to delete someone's aplication which doesnt exist i had an sql error. It is not a big problem but can be fixed. Thank you for this mod.
Reply With Quote
  #139  
Old 02-17-2008, 12:44 PM
sturdy sturdy is offline
 
Join Date: Aug 2005
Posts: 67
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sturdy View Post
Which criterium must be fulfilled that the applicant gets an mail of application status ??

Same question again ??
When does the applicant gets an mail of the status? And how can I also see this status?
Maybe I want to send the status by myself like "Your application is good but at the moment we dont need any further mods"
Reply With Quote
  #140  
Old 02-18-2008, 11:14 AM
Saviour's Avatar
Saviour Saviour is offline
 
Join Date: Apr 2007
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Too many bugs in the mass mailing end of this mod. Also, no emails are sent to admin when app has been denied.

On top of the above, this mod is not supported...

Sorry fellas...uninstalled.
Reply With Quote
  #141  
Old 02-20-2008, 05:31 AM
sturdy sturdy is offline
 
Join Date: Aug 2005
Posts: 67
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cant anybody tell me, when the user gets which message ???

I dont want that I tell the user that his application isnt good enough and then he receives a message that his application was rated great ....
Reply With Quote
Reply

Thread Tools

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

Forum Jump


All times are GMT. The time now is 08:57 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04848 seconds
  • Memory Usage 2,340KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete