vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Moderator Application System 2.0 (https://vborg.vbsupport.ru/showthread.php?t=102506)

dc pringle 01-10-2007 08:01 AM

Is there anyway to alter the code so it is only viewable for supermoderators and higher? The supermoderators on the site also have admin ability on the site.. just not all the ftp info and stuff.. so perhaps if easier is there anyway to alter it just to be viewable by admins?

Everything seems to be working fine, but i dont want mods to have access to rating potential applicants, i want that reserved for the supermods and the admins

Something like an if statement before printing the cp header?

cheers mate

JuGgOlOw22 01-15-2007 06:32 PM

The requested URL /admincp/mas_delapp.php was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request

i cant delete the members app

dc pringle 01-17-2007 03:53 AM

If anyone wants it only accessible ONLY by supermods or admin, here is what to do.. very simple..


You'll just have to edit/add a few things to mas_rateapp.php that you uploaded to ./modcp/mas_rateapp.php

First, find the following 3 lines:
Code:

// ########################## REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_databuild.php');

and put them at the top (but below the ?php entry tag)


Then...

under the back-end lines add:

Code:

if ($vbulletin->userinfo[usergroupid] == '6' ||
$vbulletin->userinfo[usergroupid] == '5')

{Usergroup 5 = Smods, and Usergroup 6 = Admins, but change as needed.




Then go all the way to the end of the file and above the ending php (below print_cp_footer(); ) tag add:

Code:

}
else {
print "Permission denied\n\n"; //Customize error message here
}


VTXCafe.com 01-26-2007 06:15 AM

Quote:

Originally Posted by Sai01 (Post 893889)
so, how do you go about changing the moderators rules/ agreements and all the form questions?

Anyone know where this can be edited? I want to use this for another position and it's not a mod position so I want to change the wording of the "Moderator Rules" agreement....anyone?

AcidX 01-28-2007 01:42 PM

I'm having problems installing this mod too.
The author really needs to edit his installation MANUAL.

Shazz 01-28-2007 01:50 PM

Quote:

Originally Posted by AcidX (Post 1168998)
I'm having problems installing this mod too.
The author really needs to edit his installation MANUAL.

What part of the instructions are you having trouble with?
I thought it was pretty basic

AcidX 01-28-2007 01:56 PM

Part one:

"forums/modcp/maf.. rahdy rar etc"

maf.. rahdy rar etc? wtf?

"maf_delmodapp.php"

I don't see a file named "maf_delmodapp.php" anywhere in the "Moderator Application System 2.0.0c" zip file.

Maf, Mas... Files that don't even exists or have been renamed - it's kind of confusing, you know.

IsMaR 03-10-2007 04:04 PM

does this work with 3.6.5

GekkoPixie 03-11-2007 04:25 PM

... All I can say is THANK YOU! I have been looking for something like this. I can't believe I didn't see it before...

brookelyn 03-18-2007 09:56 PM

any change of getting this for vb 3.6?

djjeffa 04-14-2007 01:56 AM

is there anyway to add a non staff groupe to be able to rate the apps?

ZomgStuff 04-15-2007 04:36 AM

1 more vote for transform to 3.6 ;)

djjeffa 04-15-2007 03:01 PM

I use on 3.6.5 with no problem im just tring to figer out how to make a non staff group able to vote

Mrdby 04-18-2007 01:18 PM

this worth having?

djjeffa 04-20-2007 12:49 AM

Quote:

Originally Posted by Mrdby (Post 1230410)
this worth having?

yes if you want an organize way of getting staff

Shazz 04-20-2007 01:26 AM

Quote:

Originally Posted by Mrdby (Post 1230410)
this worth having?

Thread title and the first post explaining the FAQ:
Says it all.

MikeSF 04-21-2007 04:55 PM

can this be done for 3.6? its great and want to install it on 3.6 :D

4x4 Mecca 04-23-2007 04:18 AM

I searched the thread for the word "emails" and nothing relivant came back. My system is sending out over a hundred emails to the applicant after 2 weeks. What could be causing this? BTW I know this was made for 3.5.X and I'm using 3.6.4, that seems like the obvious answer, but is it? Or is it something fixable?

Mrdby 05-23-2007 02:17 AM

3.6.7???

UltimateOreo! 06-08-2007 05:05 PM

Testing for 3.6.7 right now, Will be back with an answer shortly.

Taipa 06-13-2007 06:10 PM

Works for me on 3.6.7


Is there a better way to delete applications? It's very tedious to have to type (or copy/paste) individual applications just to delete them, especially if you have a lot at one time!

ChU v2 07-02-2007 10:22 PM

Getting this error when submitting an application

Fatal error:

* No Users Matched Your Query
* You did not specify a username for your post.

Unable to proceed with save while $errors array is not empty in class vb_datamanager_thread_firstpost in /includes/class_dm.php on line 765

Mrdby 07-18-2007 02:26 AM

any updates?

Mrdby 07-18-2007 02:43 AM

Database error in vBulletin 3.6.7:

Invalid SQL:
SELECT * FROM vb_mas_application WHERE userid = 1;

MySQL Error : Table '***_vbull.vb_mas_application' doesn't exist
Error Number : 1146
Date : Tuesday, July 17th 2007 @ 10:37:26 PM
Script : http://*****.net/forum/modapp.php?
Referrer :
IP Address : ******
Username : ******
Classname : *****


ANYBODY?

Mrdby 07-18-2007 02:52 AM

Quote:

Originally Posted by cOuNtErFiET (Post 1137391)
ok here is what i did to fix it might help some of ya

1. Edit the mas_ratings.php file like Ntfu2 said
in the modcp/mas_rateapp.php file line 29 looks like
Code:

FROM mas_application
To This
Code:

FROM vb_mas_application
2. GoTo phpmyadmin and then selcet your db that vbulletin is in, then click the SQl tab, then in the input box enter this below then click Go
Code:

RENAME TABLE mas_application TO vb_mas_application,
            mas_rating TO vb_mas_rating;

3. go set your vBulletion Options for this hack, then test the application by going to /modapp.php and see if it works, working for me!!!

of course changing the all the vb_ to YOUR boards table prefix!!!



Error

SQL query:

RENAME TABLE mas_application TO vb_mas_application, mas_rating TO vb_mas_rating

MySQL said: Documentation
#1017 - Can't find file: './****_vbull/mas_application.frm' (errno: 2)

Censtudios 07-18-2007 08:48 AM

So it automatically makes the user moderator after 2 weeks when all current moderators vote 7+?

or will the admin (me) get an email that everybody voted 7+ and I can choose for myself if I make him one....?

please answer

salata 08-14-2007 03:11 AM

i tried modifying the questions asked but then i click submit i get this error, anyone know where i made this error and how can i correct this


Invalid SQL:

INSERT INTO mas_application(userid, email, fullname, nicknames, age, experience, height, location, occupation, position answers, application_time)
VALUES (3, 'jkibbs@hotmail.com', 'Jay', 'kibbs', '23', '', '', 'ssffsf', 'sfsfsfs', 'sffsfff', '', 'a:33:{i:0;s:9:\"fame2004\";i:1;s:18:\"hdsajhddhld hsadhdl\";i:2;s:13:\"gsfdgfgaggsag\";i:3;s:9:\"sga sggags\";i:4;s:9:\"sagsagggg\";i:5;s:9:\"sgsgasgga \";i:6;s:11:\"sagsagsagag\";i:7;s:12:\"sfgagsgsgsa g\";i:8;s:10:\"sagasgsags\";i:9;s:8:\"sagsgsag\";i :10;s:9:\"gsagagasg\";i:11;s:8:\"gsgsgasg\";i:12;s :7:\"sgsagsg\";i:13;s:10:\"gsagsagasg\";i:14;s:8:\ "sgsagsag\";i:15;s:7:\"sgsgsag\";i:16;s:11:\"gsfag sagsag\";i:17;s:9:\"gsgsaggsa\";i:18;s:12:\"gsgsag sagsag\";i:19;s:13:\"fsggsagsagsag\";i:20;s:11:\"s fgsagsagag\";i:21;s:8:\"gsgsagag\";i:22;s:9:\"sfag sgsag\";i:23;s:11:\"gsfagsagsag\";i:24;s:9:\"gsags agas\";i:25;s:7:\"saggsag\";i:26;s:4:\"ffhf\";i:27 ;s:9:\"gsagsagsa\";i:28;s:5:\"gsasg\";i:29;s:4:\"f jfj\";i:30;s:12:\"sagagsgagasg\";i:31;s:6:\"gsagga \";i:32;s:6:\"sgggsa\";}', 1187034630);

MySQL Error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'answers, application_time)
VALUES (3, 'jkibbs@hotmail.com', 'adfds', 'fafffa' at line 1
Error Number : 1064
Date : Monday, August 13th 2007 @ 03:50:30 PM
Script : http://xxxxxxxx.com/forums/modapp.php
Referrer : http://xxxxxxxxx.com/forums/modapp.php
IP Address : 24.57.117.68
Username : Jkibbs
Classname : vb_database

JaggedEdge 09-02-2007 12:40 PM

Will this work with 3.6.8?

djdonx 09-02-2007 04:35 PM

JaggedEdge, I just installed and all appears to be fine

However, not all of my staff will be rating the apps so how can I just see the average rating without all staff looking at it?

Shazz 09-02-2007 04:57 PM

Quote:

Originally Posted by JaggedEdge (Post 1330725)
Will this work with 3.6.8?

Theres many bugs ;)

Mrdby 09-19-2007 03:43 AM

so anybody have a updated version?

Mrdby 09-21-2007 11:08 AM

anybody? lol

sabret00the 09-21-2007 11:17 AM

Quote:

Originally Posted by Shazz (Post 1330851)
Theres many bugs ;)

what bugs? if someone can collate all the bugs. i'll look into an updated version.

Lolliedollie 09-21-2007 12:05 PM

A copy of the problem with mine
In the Mod app CP :

Database error in vBulletin 3.6.8:

Invalid SQL:

SELECT mas.*, u.username
FROM teenshel_mas_application mas
LEFT JOIN teenshel_user u ON (u.userid = mas.userid);

MySQL Error : Table 'teenshel_forum.teenshel_mas_application' doesn't exist
Error Number : 1146
Date : Friday, September 21st 2007 @ 09:04:48 AM
Script : xxxxxxxxxxxxxxxxxxxxxx/forums/modcp/mas_rateapp.php?do=list
Referrer :xxxxxxxxxxxxxxxxxxxxx/forums/admincp/index.php
IP Address : EDITED OUT
Username : Bluetwinkles
Classname : vb_database

helppp??

Mrdby 09-24-2007 11:34 AM

Quote:

Originally Posted by Lolliedollie (Post 1343799)
A copy of the problem with mine
In the Mod app CP :

Database error in vBulletin 3.6.8:

Invalid SQL:

SELECT mas.*, u.username
FROM teenshel_mas_application mas
LEFT JOIN teenshel_user u ON (u.userid = mas.userid);

MySQL Error : Table 'teenshel_forum.teenshel_mas_application' doesn't exist
Error Number : 1146
Date : Friday, September 21st 2007 @ 09:04:48 AM
Script : xxxxxxxxxxxxxxxxxxxxxx/forums/modcp/mas_rateapp.php?do=list
Referrer :xxxxxxxxxxxxxxxxxxxxx/forums/admincp/index.php
IP Address : EDITED OUT
Username : Bluetwinkles
Classname : vb_database

helppp??

same problem

Mrdby 10-07-2007 12:43 AM

bump

sabret00the 10-07-2007 06:08 AM

is that the only problem?

sabret00the 10-07-2007 09:43 AM

i'll be releasing 2.1 tonight which will get a new thread in the 3.6 releases. The only changes will be the bug fix and the fact that this version is fully phrased, with a few tweaks to the phrases. if there were suggestions/requests that i've missed, now would be the best time to report them as i'm taking a break to watch the footie.

sabret00the 10-07-2007 05:20 PM

3.6.x version here: https://vborg.vbsupport.ru/showthread.php?t=159704

Anique 03-09-2009 06:19 PM

i m using 3.8.1 i get blank page when i run installer :( please help me


All times are GMT. The time now is 11:24 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.01756 seconds
  • Memory Usage 1,819KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete