Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
HelpDesk v1.63 Details »»
HelpDesk v1.63
Version: 1.63, by WhSox21 WhSox21 is offline
Developer Last Online: Apr 2014 Show Printable Version Email this Page

Version: 3.0.7 Rating:
Released: 02-26-2005 Last Update: 04-29-2005 Installs: 230
DB Changes
 
No support by the author.

Feature Request...
If you're interested in requesting a feature please use the form on this page:
http://www.hackvb.com/helpdesk.php

Description:
This is a ticket support system. Your members can now open up tickets rather than email you all the time.

Features
  • No File Edits!
  • Ability to turn the HelpDesk off.
  • Ability to turn the New Ticket option off.
  • Automated Response to users when tickets are submitted by email or private message.
  • Ability to select which usergroups have access to creating Departments and managing the other usergroup's HelpDesk settings.
  • Departments / Ticket Categories.
  • Limit usergroups to handle certain department tickets.
  • Limit usergroups by the following actions: new tickets, edit tickets, delete tickets, resolve / unresolve tickets, claim/unclaim ownership of tickets.
  • New Tickets since last visit to forums.
  • New Replies since last visit to forums.
  • Unresolved / Resolved Tickets.
  • WYSIWYG Editor for replies.
No File Edits!
When upgrading your forums there will be no problems. This will not give you any headaches because it almost runs separate of vBulletin..

1 Template Modification
This only has one template modification and that is to the navbar if you want a link there.

How-tos:
Giving Access to the Departments and Usergroup Settings
Usergroup Settings
Managing Departments

Installed?
Please click install if you install so you get notifications of all the latest bug fixes and feature addons.


Bug Fixes / Feature Additions:
v1.00 - Initial Release
v1.01 - Added template caching for a slight performance increase. Thanks to: princeton
v1.02 - Install script updated to create databases with table prefixes. Also added the ability to select which usergroups have access to the administer options.
v1.03 - Uninstall section added to the install script.
v1.50 - Ton of features added. Will update this with a link to the post where I named all the features added.
v1.51 - Bug fix. This fixes the problem with sending PMs for the auto responder.
v1.52 - Bug fix. This fixes the problem where the creator of tickets cannot reply to the ticket and a cosmetic fix to the installer.
v1.53 - Bug fixes. Fixes the problem with the PM pop-up, database errors for some people and the delete errors.
v1.54 - Bug fixes. Fixes the problem with the install script with one table.
v1.55 - Bug fixes. Fixes the problem with the Usergroup Settings page loading half the way down the page in IE.
v1.60 - Bug fixes. Fixes the security hole pointed out by xYarub. This also adds the send a new PM on ticket update feature.
v1.61 - Bug fixes.
v1.62 - Parse error fix.
v1.63 - Really fixed the permission errors.

Donations:
Hacks like these takes up enormous amounts of time and energy. This hack is entirely free to use. Please help me, help the vBulletin community by donating. Donations will keep me releasing hacks for free rather than doing custom work. A donation of any amount is much appreciated! Tell me this hack isn't work a couple bucks?

Show Your Support

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

Comments
  #312  
Old 03-15-2005, 12:24 PM
red_baron2000's Avatar
red_baron2000 red_baron2000 is offline
 
Join Date: Jul 2002
Location: EU
Posts: 88
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i made a litle mod that will allow given department mods to recieve pms about new tickets that submitted to their dep.

note
this mod will add a few queries .



run this query to add option to the CP:
Code:
INSERT INTO setting (varname, grouptitle, value, defaultvalue, optioncode, displayorder, advanced, volatile) VALUES ('helpdesk_pm_notify', 'helpdesk', '1', '0', '<select name=\\\"setting[$setting[varname]]\\\" tabindex=\\\"1\\\" class=\\\"bginput\\\">
<option value=\\\"0\\\" \" . iif($setting[\'value\']==0,\'selected=\"selected\"\') . \">$vbphrase[none]</option>
<option value=\\\"1\\\" \" . iif($setting[\'value\']==1,\'selected=\"selected\"\') . \">$vbphrase[private_message]</option>
<option value=\\\"2\\\" \" . iif($setting[\'value\']==2,\'selected=\"selected\"\') . \">$vbphrase[email]</option>
</select>'
,'51', '0', '0')
open helpdesk.php
find
Code:
	// lets send an email instead
$vboptions['helpdesk_auto_repsonse'] = 2;
}
}
add below it
Code:
if ($vboptions['helpdesk_pm_notify'] == 1)
{		 // send PM to department group
	 if ($bbuserinfo['permissions']['pmquota'] != 0)
{
$toemail = $bbuserinfo['email'];
		 eval(fetch_email_phrases('helpdesk_auto_pm', iif(isset($newpost_lang["$toemail"]),		 $newpost_lang["$toemail"], 0)));
	 sendprivatemessage_group($vboptions['helpdesk_department_access'], $message, $subject);
}
}
find
Code:
$DB_site->shutdown_query("UPDATE ".TABLE_PREFIX."user SET pmtotal = pmtotal + 1, pmunread = pmunread + 1, pmpopup = " . $userinfo['pmpopup'] . " WHERE userid = '" . $userinfo['userid'] . "'");
}
add below it
Code:
function sendprivatemessage_group ($group_ids, $message, $subject)
{
global $DB_site;
$groups_ids = split(',', $group_ids);
foreach($groups_ids as $group_id)
	{
	 $users_ret= $DB_site->query("SELECT username,userid,pmpopup FROM " . TABLE_PREFIX . "user where usergroupid='$group_id'");
while($users_arr=mysql_fetch_array($users_ret))
	 sendprivatemessage ($users_arr, $message, $subject); //send pm to each user in the give group_id
	}
}
find
Code:
function sendprivatemessage_group ($group_ids, $message, $subject)
{
global $DB_site;
$groups_ids = split(',', $group_ids);
foreach($groups_ids as $group_id)
	{
	 $users_ret= $DB_site->query("SELECT username,userid,pmpopup FROM " . TABLE_PREFIX . "user where usergroupid='$group_id'");
while($users_arr=mysql_fetch_array($users_ret))
	 sendprivatemessage ($users_arr, $message, $subject); //send pm to each user in the give group_id
	}
}
add below it
Code:
	$bbuserinfo[m_subj]=addslashes(htmlspecialchars_uni($_REQUEST['title']));
	$bbuserinfo[messa]=addslashes($message);
	$bbuserinfo[tick_id]=$ticketid;
also create attached phrases .

enjoy
Reply With Quote
  #313  
Old 03-15-2005, 06:34 PM
WhSox21 WhSox21 is offline
 
Join Date: Feb 2004
Posts: 328
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Live Demo has been updated.

red_baron2000 - I'll install this and see how she works. If it works good and if there is no way for me to optimize the code (which there might be) I'll release an update tomorrow.
Reply With Quote
  #314  
Old 03-15-2005, 09:17 PM
Bloodlust's Avatar
Bloodlust Bloodlust is offline
 
Join Date: Sep 2004
Location: Quakertown, PA
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Wow that looks really good. Great work. Could be useful for me in the future.
Reply With Quote
  #315  
Old 03-16-2005, 11:55 PM
HC. HC. is offline
 
Join Date: Mar 2004
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok,
coming in late on this hack
could some one tell me which one to install and what to edit
step by step please
thanks
hc
Reply With Quote
  #316  
Old 03-16-2005, 11:58 PM
WhSox21 WhSox21 is offline
 
Join Date: Feb 2004
Posts: 328
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Obviously you're goign to want to download the latest version. I'll remove the old one. I left it up there for people before. Like stated in the first post there are no file edits! The installation can be found in the zip file.
Reply With Quote
  #317  
Old 03-17-2005, 02:14 PM
mfowler70 mfowler70 is offline
 
Join Date: Apr 2004
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I need to upgrade, but want to wait until the moderator notification from the last page is incorporated into the mod. Any idea when (if) that will be ready? Also, are there any other additions planned for the next rollout?

Awesome, awesome work.
Reply With Quote
  #318  
Old 03-17-2005, 05:37 PM
TopeeGuy TopeeGuy is offline
 
Join Date: May 2004
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible for the person who submitted the original ticket to receive an email when his or ticket receives a reply from a mod/admin?
Reply With Quote
  #319  
Old 03-22-2005, 12:59 PM
Reef Reef is offline
 
Join Date: May 2003
Location: USA
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice addon WhSox21 but, I have a permissions problem I can't get sorted out... All members can see the Administer Block and view tickets other than their own.. Also Tickets that I have claimed ownership of are never listed in "My Tickets"

example:
My Registered Users Group permissions are set to only;

Can Create Tickets = Yes
Can Resolve Tickets = Yes
All others = No

Registered users can still view every ticket... Any Ideas??
Reply With Quote
  #320  
Old 03-22-2005, 04:09 PM
Blackbeard Blackbeard is offline
 
Join Date: Mar 2003
Posts: 187
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blackbeard
Is it possible to set it so registered users can reply to anyones helpdesk post but dont have access to the settings section.

In the add depatments area i have put there usergroup in , they can post but not reply to other members post, just we have alot of helpful members and we want to use this as a general helpdesk aswell as a bug reporting center.


Quote:
Originally Posted by WhSox21
It would take a little bit of editing of the actual code to accomplish this. If you really wanted to do that you could modify the helpdesk.php file and remove the part of the queries where it checks for the userid. Depending on how tomorrow goes I'll see if I can help you out and post a file for you to use. I'll try to release this as a release too.

I really need to start a list of feature requests. I'll try to get something organized here shortly. This week is pretty hectic for me so once I do get something I'll let everyone know.
Quote:
Originally Posted by Blackbeard
I know you not had much sleep but have you had any time to look into this m8 - Sorry for pushing my luck, but its such a great idea and hack want to use it to its full potential on my forum.
Quote:
Originally Posted by WhSox21
I'll be able to help after tomorrow...

On another note... We made HotM for March!

I'd really appreciate the votes! That is if you absolutely love this hack!

Vote Here!
Have you had any luck on this topic m8, sorry to keep asking, bet u wish i would go away.

cheers for all the hard work
Reply With Quote
  #321  
Old 03-23-2005, 04:26 AM
WhSox21 WhSox21 is offline
 
Join Date: Feb 2004
Posts: 328
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Reef
Very nice addon WhSox21 but, I have a permissions problem I can't get sorted out... All members can see the Administer Block and view tickets other than their own.. Also Tickets that I have claimed ownership of are never listed in "My Tickets"

example:
My Registered Users Group permissions are set to only;

Can Create Tickets = Yes
Can Resolve Tickets = Yes
All others = No

Registered users can still view every ticket... Any Ideas??
Are you using the latest version?

In your AdminCP then to vBulletin Options then HelpDesk...
Usergroups With Department Access - make sure this list (seperated by commas) only gives the usergroups you want to have access to those areas.
Reply With Quote
Reply


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 01:36 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04880 seconds
  • Memory Usage 2,330KB
  • Queries Executed 27 (?)
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
  • (7)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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_postinfo_query
  • fetch_postinfo
  • 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