The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Comments |
#202
|
|||
|
|||
Quote:
Maria |
#203
|
||||
|
||||
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 |
#204
|
|||
|
|||
Quote:
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 |
#205
|
|||
|
|||
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! |
#206
|
|||
|
|||
Quote:
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 |
#207
|
|||
|
|||
Quote:
2.- On the same way, if you're operating a shop, you can collect data like order nbr, license nbr etc. Quote:
Maria |
#208
|
|||
|
|||
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 |
#209
|
|||
|
|||
Maria, I still need to know how to add all the features into the sidebar instead of the navbar?
|
#210
|
|||
|
|||
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; } 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; } -Yiannis |
#211
|
|||
|
|||
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?
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|