vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   HelpDesk v1.63 (https://vborg.vbsupport.ru/showthread.php?t=77155)

WhSox21 02-26-2005 10:00 PM

HelpDesk v1.63
 
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.
https://vborg.vbsupport.ru/

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? ;)
https://vborg.vbsupport.ru/external/2010/02/12.gif

vBTotal 02-27-2005 07:19 PM

Great Work Bud :) Glad you released this! installed and working on my website

www.vbcore.com

WhSox21 02-27-2005 07:29 PM

Feature requests for this hack are welcome! ;)

shadiguy1 02-27-2005 07:37 PM

installed great job.

Creed 02-27-2005 08:00 PM

I'm installing now, if I find something that would make it better I will let you know!

vBTotal 02-27-2005 08:23 PM

I just created an Add-on, and it takes litterally 5 seconds to install ;)

Creed 02-27-2005 08:25 PM

Gonna go ahead add that one too :)

Mechanical Mind 02-27-2005 08:55 PM

I missed the directions part...:nervous:

WhSox21 02-27-2005 09:06 PM

All you have to do is upload the files in the correct file and run the helpdesk_install.php file in the admincp directory. Everything is done after that. Only like 5 clicks and it's installed! ;)

Princeton 02-27-2005 09:29 PM

I like it ... good job.

Some quick fixes..

Code:

define('NO_REGISTER_GLOBALS', 1);
define('GET_EDIT_TEMPLATES', true);

Code:

// pre-cache templates used by all actions
$globaltemplates = array(
        'HELPDESK_SHELL',
        'HELPDESK',
        'helpdesk_ticket',
        'helpdesk_ticketlist',
);

// pre-cache templates used by specific actions
$actiontemplates = array(
        'newticket' => array(
                'helpdesk_newticket',
        ),
        'mytickets' => array(
                'helpdesk_message',
        ),
        'newreplies' => array(
                'helpdesk_message',
        ),
        'ticket' => array(
                'helpdesk_quickreply',
                'helpdesk_reply',
        ),
);

Suggestions:

pagenav
search facility

WhSox21 02-27-2005 09:39 PM

I can't believe I forgot updating that. I usually update that before I finish a hack because it's easiest before I know the names. Anyways, search will be in next version along with departments.

I'll update the helpdesk.php file shortly and upload the new updated zip file.

Mechanical Mind 02-27-2005 09:43 PM

Quote:

Originally Posted by WhSox21
All you have to do is upload the files in the correct file and run the helpdesk_install.php file in the admincp directory. Everything is done after that. Only like 5 clicks and it's installed! ;)

I guess I am easily confused.

All I know is I have a zipped file that has a folder and a file in it. Inside the folder is a file with the same name as the loose file. One is 12 kB and the other is 18 kB. Not sure which one, if both, to upload and to where...

Hmmm... I'm a dumby!

WhSox21 02-27-2005 10:01 PM

Quote:

Originally Posted by Mechanical Mind
I guess I am easily confused.

All I know is I have a zipped file that has a folder and a file in it. Inside the folder is a file with the same name as the loose file. One is 12 kB and the other is 18 kB. Not sure which one, if both, to upload and to where...

Hmmm... I'm a dumby!

You upload the one named helpdesk.php to the forumroot and helpdesk_install.php to your admincp directory. That file is the one you run to install the hack.

rex_b 02-27-2005 10:22 PM

Is it easy to give permissions to Super Mods / Mods ?

WhSox21 02-27-2005 10:24 PM

It gives all users with any admin permissions access. So yes, it should give them access.

rex_b 02-27-2005 10:39 PM

It gives access to Admin and SuperMods.

*installed

WhSox21 02-27-2005 10:44 PM

Next version I'll make it so that you can set who has permissions.

AnthonyJR 02-27-2005 11:09 PM

I love it! But it needs to be more customizeable. i need to be able to manually give certain people/groups admin access to this.

and i need to be able to restrict certain groups from using it, and I need to be able to turn it on and off

TTG 02-27-2005 11:16 PM

Could be very useful .. Installed with no problems on 3.0.6
Clicked install :)

Mechanical Mind 02-27-2005 11:19 PM

* removed head from a$$ *

* realized just how easy it was *

* clicks install *

Thanks for a good hack! :classic:

WhSox21 02-27-2005 11:32 PM

Quote:

Originally Posted by AnthonyJR
I love it! But it needs to be more customizeable. i need to be able to manually give certain people/groups admin access to this.

and i need to be able to restrict certain groups from using it, and I need to be able to turn it on and off

Make sure you click install for next version as this will all be incorporated but will require file edits! ;)

WhSox21 02-28-2005 02:36 AM

Upgraded the zip file to fix SLIGHT bugs. This update is not required but will help the performance slightly. All you'll have to do is over write the helpdesk.php file and everything should be updated.

Polo 02-28-2005 02:47 AM

Excellent, will definetly install :) thank you whsox ;)

WhSox21 02-28-2005 03:21 AM

Quote:

Originally Posted by Polo
Excellent, will definetly install :) thank you whsox ;)

Not a problem. Glad to see people are enjoying it. Not only that but no bug fixes yet! :)

Well other than the performance fix! :surprised:

TunerNetwork 02-28-2005 03:37 AM

I installed it. nice hack, and simple to install. IS there a way to have it send...say, a pm to the admin or a designated person(s) to handle or answer the tickets. Or even add an email option this way the webmasters get the ticket and can address or it...or a drop down menu of what department they want the ticket to be addressed too,lol. Sorry, its a great basic hack, has alot more potential. Good Job.

WhSox21 02-28-2005 03:39 AM

Yes, everything you have mentioned is planned in the next version. I just wanted to give everyone a taste of it and release the rest. Be prepared that the next version will require file modifications.

shadiguy1 02-28-2005 03:39 AM

ive spoken with whsox he is adding a list of departments for tickets to the hack. Hell have the next version out soon. Give him some time. Im sure it wont be long.

ps- This should be considered for hack of the month as i know alot of people wanted a ticket system well here yah go.

TunerNetwork 02-28-2005 04:17 AM

Good job, *Clicks Insall*

Here it is on my board if you want to use it as an example or demo site:

http://www.tunernetwork.com/forums/helpdesk.php

If you look at the main page, http://www.tunernetwork.com, I made a "Support" link on the right side of the page, which goes to this page. Should prove helpful. GJ.

uae 02-28-2005 05:18 AM

Installed with no problems
** Clicked install **

uae 02-28-2005 05:24 AM

sorry, but the zip file showed HelpDesk v1.01.zip " Mod Version: 1.01" and php files says HelpDesk v1.0!
is that correct?

Deaths 02-28-2005 05:51 AM

Lol, it seems like more and more people are creating support ticket system right after I released the preview of my vBMA....

Lionel 02-28-2005 06:09 AM

Wondering... Is a ticket viewable only by its owner and admin, or everybody sees everybody's ticket?

Creed 02-28-2005 06:46 AM

Great update, does help with page load time and server strain (although its only slight) :)

Slave 02-28-2005 06:55 AM

Nice .. :)

Here are a few suggestions, in no real order, now that I've played with it a bit .. :)
  1. Ability for user to see who has taken ownership of ticket
  2. Ability for admins to see all resolved items
  3. Ability to delete entries/tickets
  4. PM/Mail to let people know an Admin has replied/taken ownership
  5. PM/Mail to let Admin know there is a new request/reply/ticket
  6. Tick box by Submit Reply to close ticket as you reply
  7. Departments (I know, already requested :) )
  8. Automated PM/Email to say someone will be looking into your ticket soon?

computer1 02-28-2005 07:03 AM

*LOL* this I like I have install this nowe and thats work to vb 3.0.7

but the zip file I download say is version 1.0 are this wright version ??

Slave 02-28-2005 07:06 AM

Quote:

Originally Posted by Lionel
Wondering... Is a ticket viewable only by its owner and admin, or everybody sees everybody's ticket?

It looks like you can only see tickets you've put onto the system yourself .. (admin can see all open tickets) .. not sure if one admin can see/take control of a ticket which has been "owned" by another admin ..

Even Admin at the moment can't see closed tickets .. although the user who created the ticket can ..

computer1 02-28-2005 07:09 AM

have try to create ticket nowe and I cant do that go for this url
http://forum.tanakawebb.com/helpdesk.php?do=newticket

have you eny iders about this ??

Freezerator 02-28-2005 07:35 AM

Can this be linked with the post report system? Then it would really rock :)

Creed 02-28-2005 07:36 AM

You have to be logged in to see that page, however I'm going out on a limb to say that you haven't set the usergroup permissions to create tickets yet ;)

computer1 02-28-2005 07:42 AM

And howe can I do that ??


All times are GMT. The time now is 04:31 AM.

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.01781 seconds
  • Memory Usage 1,824KB
  • 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
  • (2)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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