Quote:
Originally Posted by ChrisTERiS
Honestly you surprised me. The only of my 50+ mods that I remember having them is sales were vbPhotovote (vb3), vbClubs(vb3), and eCommerce (vb4).
In no way, I mean that you're saying lies, just don't remember. I'll give a look to that post to see what features I had as Pro, and be sure that I'll include them. If I had them, means that they're important features.
EDITED: Just now I seen that the link is for vB3.x version. I thought that you're talking for vB4 version. And yes, as Project vB3 is already in development, I'll update it.
|
If you want copies I can provide them...
I have 2 versions of MicroSupport. The VB 3 version and then one that was packaged as a self extracting executable. I am not sure if that was a VB4 variant? Here is snippit of the XML from the self extracting executable...
Edit: Found a copy of the VB 4 version:
https://vborg.vbsupport.ru/showthrea...230112&page=22
Just not sure if it will work under 4.2.5
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<product productid="microsupport" active="1">
<title>microSUPPORT PRO</title>
<description>Site HelpDesk</description>
<version>10.3</version>
<url>http://www.totally-scripts.com</url>
<versioncheckurl>http://www.totally-scripts.com/script_version_check.php?product=microsupport</versioncheckurl>
<apm_releasedate>0</apm_releasedate>
<apm_author />
<apm_relatedurl />
<apm_extrainfo />
<apm_extraedit />
<dependencies>
</dependencies>
<codes>
<code version="1.0.0">
<installcode><![CDATA[ $vbulletin->db->query_write("
CREATE TABLE IF NOT EXISTS `". TABLE_PREFIX ."microsupport_categories` (
`id` int(11) NOT NULL auto_increment,
`parentid` int(11) unsigned NOT NULL default '0',
`name` varchar(50) NOT NULL default '',
`displayorder` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `displayorder` (`displayorder`)
) ENGINE=MyISAM
");