vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - microSUPPORT for vB4 (https://vborg.vbsupport.ru/showthread.php?t=230112)

MaryTheG(r)eek 01-26-2010 05:09 PM

Quote:

Originally Posted by MandachuvA (Post 1967203)
I adm, I have all the permissions and still not see the full menu
I am interested in buying the pro version before it got to test it to see their efficiency

Your screenshoot does not shows the full screen. Could you please post a fullscreen?

Maria

mrt12345 01-28-2010 11:57 AM

Hello Maria
i see that you are doing a bang up job on this script but i was reading about you other mods in the earlier version of VB on kayako support and i just so happen to have a copy . i spent some good $$$ on that script and i hate to see it go to wast , is there by any chance that you would be making a integration script for this in the future. But the really nice thing about you script here is that it is part of vb so there is no template work that is a big plus. I wish you the best of luck on this script and if you come out with a product or a pro version for some $$$ i might be very interested. and i will just try to sell off my Kayako license .
thanks
Tracy:)

MaryTheG(r)eek 01-28-2010 01:17 PM

Quote:

Originally Posted by mrt12345 (Post 1968863)
Hello Maria
i see that you are doing a bang up job on this script but i was reading about you other mods in the earlier version of VB on kayako support and i just so happen to have a copy . i spent some good $$$ on that script and i hate to see it go to wast , is there by any chance that you would be making a integration script for this in the future. But the really nice thing about you script here is that it is part of vb so there is no template work that is a big plus. I wish you the best of luck on this script and if you come out with a product or a pro version for some $$$ i might be very interested. and i will just try to sell off my Kayako license .
thanks
Tracy:)

Hello Tracy,

First of all, thank you for your kind words. I totally understand you, as like you, I've spent thousant in PHP scripts (including Kayako). There is a PRO version, in my site for $50 (including Brand Free). Is not Kayako, but works fine, having the features that you'll really use and not toys to play. In addtional to Free version, it has extra ticket fields, predefinied replies, ability to post a ticket as FAQ (even in multiple categories), abitily to setup email address(es) per department (to inform for new tickets and replies), and more vB like interface.

Maria

vividbreeze 01-28-2010 11:08 PM

I bought the PRO version and I love it so far!

I do have a question though, how can I get sidebars like these: https://vborg.vbsupport.ru/attachmen...7&d=1260722783

Because I have a modified vb 4 and it does not show up in my navbar, i dont want it to.

thx!

Neptun 01-30-2010 09:58 PM

Quote:

Originally Posted by MicroHellas (Post 1968938)
Hello Tracy,

In addtional to Free version, it has extra ticket fields, predefinied replies, ability to post a ticket as FAQ (even in multiple categories), abitily to setup email address(es) per department (to inform for new tickets and replies), and more vB like interface.

Maria

I have installed this version now - and it works fine what i have tested in the short time.

What do you mean with the pro "it has extra ticket fields" -> what kinds of fields ?

What do you mean with the pro "and more vB like interface" -> can you explain this ?!

I am very interessed in a professional support ticket center for my system ;)

MaryTheG(r)eek 01-31-2010 04:10 AM

Quote:

Originally Posted by Neptun (Post 1970826)
What do you mean with the pro "it has extra ticket fields" -> what kinds of fields ?

1.- Let's say that you're runing a hosting company. You can setup extra fields to collect data like FTP username, FTP password etc

2.- On the same way, if you're operating a shop, you can collect data like order nbr, license nbr etc.

Quote:

Originally Posted by Neptun (Post 1970826)
What do you mean with the pro "and more vB like interface" -> can you explain this ?!

Nothing so special (in my opinion) but many users asked for it. I moved the menu options at navbar, I merged my navbar with vb's navbar and finally the sidebar is like vb's sidebar.

Maria

Tripolis 01-31-2010 08:22 AM

When i make a answer of a ticket, i get out of the board and must login again.

So i cant answer any ticket.
Close is going

vividbreeze 01-31-2010 12:49 PM

Maria, I still need to know how to add all the features into the sidebar instead of the navbar?

ysam 02-05-2010 10:06 PM

I found a bug that at least in my system exists. Every field that uses getRecordById() fails badly. I can't figure out why you are using direct mysql functions only in that function.

Anyway if anybody has problems not displaying Departments, Products and posters etc.. This is what you have to do.

in microsupport/includes/functions.php

replace
Code:

// Get record by Id
function getRecordById($tablename, $id, $rowname = 'id')
{
  global $db, $vbulletin;
  $result = $db->query_read("SELECT * FROM ".TABLE_PREFIX."".$tablename." WHERE ".$rowname."=".$id." LIMIT 1");
  if(!$result) return array ("id" => 0, "name" => '');
  if(mysql_num_rows($result) == 0) return array ("id" => 0, "name" => '');
  $ret = array();
  while($row = mysql_fetch_assoc($result)) {
    $ret = $row;
  }
  mysql_free_result($result);
  return $ret;
}

With..

Code:

// Get record by Id
function getRecordById($tablename, $id, $rowname = 'id')
{
  global $db, $vbulletin;
  $result = $db->query_read("SELECT * FROM ".TABLE_PREFIX."".$tablename." WHERE ".$rowname."=".$id." LIMIT 1");
  if(!$result) return array ("id" => 0, "name" => '');
  if($db->num_rows($result) == 0) return array ("id" => 0, "name" => '');
  $ret = array();
  while($row = $db->fetch_array($result)) {
    $ret = $row;
  }
  mysql_free_result($result);
  return $ret;
}

This is for 4.4.2 free version.

-Yiannis

below sea level 02-12-2010 06:22 PM

Quote:

Originally Posted by taffy056 (Post 1936660)
Okay Maria that fixed that problem - thanks :)

But have another now, you know when you go to the ticket in the todo section, when you reply to the ticket I get a

500 Internal Server Error

when I refresh the message it is there

I installed version 4.4.2 today and I'm also getting this problem. The ticket actually submits, but I get the error when the browser tries to go to the next page. Any ideas?


All times are GMT. The time now is 09:00 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.01304 seconds
  • Memory Usage 1,751KB
  • 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
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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