vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Add-On Releases - PS - HelpCenter (https://vborg.vbsupport.ru/showthread.php?t=176367)

Hostboard 04-29-2008 12:02 AM

Auto close after X amount of days of in activity as defined in the ACP? This would then generate a PM to the user...


Title: Your Support Ticket XXX is Now Closed
Body: AUTOMATED NOTICE: Your support ticket has been closed due to X days of inactivity. However, if you require any further assistance, please:
  • Open a "link to new ticket", OR
  • "Link to Re-open" your ticket.
Your Support Team:
Link to Profiles of Admin | Link to Profiles of Admin | And so on...

Links support team could also be a new user group "support team" or one defined in the ACP

mikexxx 04-29-2008 05:22 AM

Quote:

Originally Posted by PaulSonny (Post 1501752)
Further update, try this one guys and let me know.

With regards to the DB error, remove previous version and import this as fresh.

Thanks, Paul.

Better ;)
In usergroep manger the name of the table is still missing.

And when i submit a new ticket i get a database error.

-----------------------

Database error in vBulletin 3.7.0 Release Candidate 4:

Invalid SQL:
INSERT INTO helpcenter_ticket(departmentid, tickettitle, message, priority, ownerid, ownerusername, lastreplyusername, lastreplyuserid, datelogged, datelastupdate, ipaddress, threadnum) VALUES ('1','test','test test test','3','1','Mike','Mike','1','1209449977','1209 449977','0.0.0.0','0');

MySQL Error : Unknown column 'threadnum' in 'field list'
Error Number : 1054
Request Date : Tuesday, April 29th 2008 @ 08:19:37 AM
Error Date : Tuesday, April 29th 2008 @ 08:19:38 AM
Script : http://www.xxxxxxxnl/helpcenter.php?do=newticket
Username : Mike
Classname : vB_Database
MySQL Version : 5.0.45-enterprise-gpl

GoTTi 04-29-2008 06:11 AM

i just upgraded to beta 5 due to a error, so i uninstalled and reinstalled the mod, and looking in the usergroup under admin, there is no title on the help center area of options, its blank. but the radio buttons and options are there.

GoTTi 04-29-2008 06:13 AM

i had this same error. i uninstalled the mod, and reinstalled it and the error is gone. i think if u upgrade to the current version you will get the error...

as far as the title bar in the usergroup missing, mine is missing also.

Quote:

Originally Posted by mikexxx (Post 1502056)
Better ;)
In usergroep manger the name of the table is still missing.

And when i submit a new ticket i get a database error.

-----------------------

Database error in vBulletin 3.7.0 Release Candidate 4:

Invalid SQL:
INSERT INTO helpcenter_ticket(departmentid, tickettitle, message, priority, ownerid, ownerusername, lastreplyusername, lastreplyuserid, datelogged, datelastupdate, ipaddress, threadnum) VALUES ('1','test','test test test','3','1','Mike','Mike','1','1209449977','1209 449977','0.0.0.0','0');

MySQL Error : Unknown column 'threadnum' in 'field list'
Error Number : 1054
Request Date : Tuesday, April 29th 2008 @ 08:19:37 AM
Error Date : Tuesday, April 29th 2008 @ 08:19:38 AM
Script : http://www.xxxxxxxnl/helpcenter.php?do=newticket
Username : Mike
Classname : vB_Database
MySQL Version : 5.0.45-enterprise-gpl


PaulSonny 04-29-2008 12:25 PM

I will sort the HelpCenter table phrase when I get home, with regards to the "MySQL Error : Unknown column 'threadnum' in 'field list'" I think there is something wrong within the product file for altering the table.

I will update the product so that it creates the table with the new field name, but it may mean everyone has to uninstall and re-install to get it working correctly.

If anyone could have a look at the product file and check the SQL Query (version 0.5) then i'd be grateful.

Thanks, Paul.

GoTTi 04-29-2008 01:27 PM

paul that error is only duplicating itself on upgrade. i tested it on 2 forums. must uninstall and reinstall mod to not have errory.

PaulSonny 04-29-2008 04:03 PM

ah right I understand now GoTTi and thanks for letting me know, I will fix the Usergroup phrase now.

Thanks, Paul.

IR15H 04-29-2008 06:47 PM

I figured out the DB error. The problem occurred with reading the table, rather than creating it, so the problem wasn't in the product file. Once I realised that I stopped looking in the wrong place and had a quick look in helpcenter.php. I figured out the error, and managed to fix it myself :D. If anyone else has prefixes on their SQL tables then do the following in helpcenter.php

SEARCH FOR;
Code:

$departmenttitle = $vbulletin->db->query_read("SELECT department FROM helpcenter_department WHERE departmentid = '" . intval($_REQUEST['departmentid']) . "'");
REPLACE WITH;
Code:

$departmenttitle = $vbulletin->db->query_read("SELECT department FROM " . TABLE_PREFIX . "helpcenter_department WHERE departmentid = '" . intval($_REQUEST['departmentid']) . "'");
...or just wait for Paul to update the zip :).

PaulSonny 04-29-2008 09:19 PM

Thanks Irish I have fixed this for the next release.

Thanks, Paul.

MikeHolohan 04-30-2008 03:45 PM

Quote:

Originally Posted by IR15H (Post 1502613)
I figured out the DB error. The problem occurred with reading the table, rather than creating it, so the problem wasn't in the product file. Once I realised that I stopped looking in the wrong place and had a quick look in helpcenter.php. I figured out the error, and managed to fix it myself :D. If anyone else has prefixes on their SQL tables then do the following in helpcenter.php

SEARCH FOR;
Code:

$departmenttitle = $vbulletin->db->query_read("SELECT department FROM helpcenter_department WHERE departmentid = '" . intval($_REQUEST['departmentid']) . "'");
REPLACE WITH;
Code:

$departmenttitle = $vbulletin->db->query_read("SELECT department FROM " . TABLE_PREFIX . "helpcenter_department WHERE departmentid = '" . intval($_REQUEST['departmentid']) . "'");
...or just wait for Paul to update the zip :).

Well done, works well... Mike.

Tolas 04-30-2008 04:33 PM

Thanks for the DB fix IR15H, and great Mod Paul!

My Helpcenter is now up and functional

Tom_S 04-30-2008 04:58 PM

What is the last update?

PaulSonny 04-30-2008 04:59 PM

Further Enchanged Some Admin Functions.
Enhanced My Tickets Interface.
Paginated Results.
Fixed More bugs, such as Guest Tickets Problem. (Temporary Measure!)
Other small features added.

Tom_S 04-30-2008 05:01 PM

Kewl..thanks :)

Tom_S 04-30-2008 06:24 PM

Paul I have 1.0. Should I uninstall first or should I wait for your next update then uninstall and update? I think from what I read you already addressed all the 3.7.0 bug issues right?

KeyStalker 04-30-2008 07:47 PM

A good suggestion / idea to this hack would be: Let the support Tickets goto a forum (so the mods and administrators) get notified. X (Forum ID) the tickets get placed in.

PaulSonny 04-30-2008 08:10 PM

I strongly suggest uninstalling and updating to the latest version.

KeyStalker, this is already an implemented feature. You can define a Forum ID in the AdminCP settings.

Thanks, Paul.

PaulSonny 04-30-2008 09:52 PM

Beta 6 Just Released!

This is going to be the final Beta for HelpCenter, from now it is just going to be bug fixes, if any.

I'm sorry, but for the final time, you are going to have to uninstall any previous version and re-install with Beta 6.

Thanks, Paul.

Hostboard 05-01-2008 02:50 AM

Reuploaded all files. Uninstall plugin, reinstall plugin. 2 problems...

1. HelpCenter Main settings appear under the left menu option "HelpCenter" as well as under VBulletin Options. Should it not be only in 1 place to avoid confusion?

2. Under HelpCenter Statistics Help Center Statistics Version is showing as 1.0 Beta 5

jellybaby 05-01-2008 05:59 AM

Is it possible to get an email when a ticket is submitted

Thanks, great mod.

PaulSonny 05-01-2008 06:37 AM

Quote:

Originally Posted by Hostboard (Post 1504097)
Reuploaded all files. Uninstall plugin, reinstall plugin. 2 problems...

1. HelpCenter Main settings appear under the left menu option "HelpCenter" as well as under VBulletin Options. Should it not be only in 1 place to avoid confusion?

Most modifications are like this, HelpCenter is no different.

2. Under HelpCenter Statistics Help Center Statistics Version is showing as 1.0 Beta 5.

Thanks for pointing this out, I will fix this for next release.

Notifications are going to be a paid feature.

Thanks, Paul.

PaulSonny 05-01-2008 08:39 AM

Screenshots have been updated.

Thanks, Paul.

GoTTi 05-01-2008 02:04 PM

paul can you update your main post, it says beta 6 is not released yet.

Black Tiger 05-01-2008 02:28 PM

This looks as a great mod, even better then another alike mod I found here.
I've tagged it for now, but I'm sure I will install it when a stable release version is brought out.
My forums have a lot of mods and I can't have bugs at te moment or at least if possible.:)
But it already looks great!

PaulSonny 05-01-2008 02:29 PM

Quote:

Originally Posted by GoTTi (Post 1504571)
paul can you update your main post, it says beta 6 is not released yet.

Sorted, thanks GoTTi.

Paul.

ssvp 05-01-2008 11:53 PM

Anyone else getting "Unknown column 'ticketview' in 'field list'" via the Database Error Script

I installed 1.5 and then re-installed 1.6.

Tom_S 05-02-2008 01:22 AM

Paul..I need to change font color Tickete ID. It dosen't show up the Ticket ID number on mine with my theme. I did that in the last version in the template but I can't find the one for this one. Or I'm blind..but that isn't new either LOL

PaulSonny 05-02-2008 06:42 AM

Quote:

Originally Posted by ssvp (Post 1505166)
Anyone else getting "Unknown column 'ticketview' in 'field list'" via the Database Error Script

I installed 1.5 and then re-installed 1.6.

the ticketview field is a new field in the ticket table, sounds like you havent uninstalled 1.5 before you installed 1.6.

Quote:

Originally Posted by Tom_S (Post 1505233)
Paul..I need to change font color Tickete ID. It dosen't show up the Ticket ID number on mine with my theme. I did that in the last version in the template but I can't find the one for this one. Or I'm blind..but that isn't new either LOL

I'm not entirely sure myself, ill have a good look later on today and find out for you and will send a PM and update my templates.

Thanks, Paul.

IR15H 05-02-2008 07:17 AM

Quote:

Originally Posted by Tom_S (Post 1505233)
Paul..I need to change font color Tickete ID. It dosen't show up the Ticket ID number on mine with my theme. I did that in the last version in the template but I can't find the one for this one. Or I'm blind..but that isn't new either LOL

If you're talking about the "ABC1" Ticket ID on helpcenter home, then the colour is defined by your style's CSS. ADMIN CP > Styles & Templates > Style Manager > Main CSS > Body > Normal Links CSS/Visited Links CSS > Font Color.


EDIT: If you're talking about on an actual ticket, where it says Ticket ID: ABC1 then; ADMIN CP > Styles & Templates > Style Manager > Main CSS > Small Font > Font Color.

Namaless 05-02-2008 02:12 PM

Is possible to use cache template??

Tom_S 05-02-2008 03:47 PM

Quote:

Originally Posted by IR15H (Post 1505461)
If you're talking about the "ABC1" Ticket ID on helpcenter home, then the colour is defined by your style's CSS. ADMIN CP > Styles & Templates > Style Manager > Main CSS > Body > Normal Links CSS/Visited Links CSS > Font Color.


EDIT: If you're talking about on an actual ticket, where it says Ticket ID: ABC1 then; ADMIN CP > Styles & Templates > Style Manager > Main CSS > Small Font > Font Color.

Yes..the ABC1

PaulSonny 05-02-2008 04:36 PM

Quote:

Originally Posted by Namaless (Post 1505776)
Is possible to use cache template??

Currently only 1 template is cached. I will cache the rest for the next release.

Thanks, Paul.

Virtualshiner 05-02-2008 11:29 PM

I was wondering, how do you set who post the thread when someone makes a support ticket?

dancue 05-02-2008 11:37 PM

What text could I insert under HelpCenter Main Settings for the Automatic Template edit if I wanted to include this within the quicklinks?

dancue 05-03-2008 12:26 AM

1 - When I go to helpcenter statistics it says its beta 5.

2 - Can I make the width of the navigation wider?

3 - When managing departments there is not a field for inserting a forumid. I would prefer to have it there rather than in the main settings.

I am using vb version 3.7.0 Gold
This is a fresh install done about an hour ago.

Suggestions:
1 - Replies made to the ticket should also post on the thread posted within the forum specified.
2 - A thread prefix should be created with the thread automatically. Should say Open/Closed or Open/Solved.
3 - An area for sensitive data should be submitted. When posted by the user this data should only be seen by the admin. This is very important. Some sites have online stores where issues with payment could arise...requiring credit card info. Many other examples too.

Hostboard 05-03-2008 12:40 AM

Footer credit reads beta 5 even when you have beta 6 installed.

Jase2 05-03-2008 11:36 AM

Yes, sorry - seems that we forgot to update that. It will be fixed for next release.

dancue 05-03-2008 02:02 PM

Jase,
Will you consider the suggestions I made in my post earlier?

Also, How do I make the width of the navigation wider?

John3971 05-03-2008 02:13 PM

Quote:

Originally Posted by dancue (Post 1506870)
Jase,
Will you consider the suggestions I made in my post earlier?

Also, How do I make the width of the navigation wider?

to make it wider edit the template named HCENTER_SHELL

dancue 05-03-2008 02:43 PM

I took a look at it and it says width=100%.

I don't see where I need to adjust it. I'd like to make it the same width as the navigation on usercp.

It's not a big deal, but I'd appreciate anyone's help with it.


All times are GMT. The time now is 03:59 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.01906 seconds
  • Memory Usage 1,832KB
  • 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
  • (4)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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