Version: 1.2.1, by SS9267547
Developer Last Online: Jun 2009
Category: Major Additions -
Version: 3.6.4
Rating:
Released: 11-26-2006
Last Update: 01-14-2007
Installs: 130
DB Changes Uses Plugins Template Edits
Additional Files
No support by the author.
Development of this mod is on hold due to lack of time and development of Mindestic Gaming CMS Lite. No support will be given at this time.
Mindestic GlosPro Description
Mindestic GlosPro is an advanced yet simple to use system to create a glossary of terms for your website along side with vBulletin 3.6.X series. Loaded with features, Mindestic GlosPro is a great tool for any sized website!
Mindestic GlosPro Information
Current Version Number: 1.2.2
vBulletin Test Version(s): 3.6.4
Queries to run: 5
File Edits: 0
New Files: 12
New Phrases: 225
New Templates: 21
New Plugins: 10
Template Edits: 4
Last Edited: January 14, 2007
Edited By: Lucas Pawelczyk
Install Time: 2 minutes
Difficulty: Easy
Current Planned Features For Version 1.2.3
Add import/export system. (50% Complete)
Fix additional problems with crosslinking feature. (0% Complete)
I forgot to mention, that I can change the content when I'm in the AdminCP (that worked all the time), its just the 'normal user way' that doesn't work.
Okay well then you can just remove the check all together for now if you can get it working. Find the following (2 in glossary.php and 2 in admin_glossary.php):
PHP Code:
$checkglossaryresults = $db->query("SELECT glossaryname,glossaryid FROM " . TABLE_PREFIX . "glossary");
while ($checkname = $db->fetch_array($checkglossaryresults))
{
Delete it and everything under it until the last '}'. There should be about 8 lines altogether to be deleted. Try that for the time being until the next release.
A suggestion: better MySQL slave/master server support. There are a lot of old $vbulletin->db->query queries. Replace all those with $vbulletin->db->query_read, $vbulletin->db->query_write or $vbulletin->db->query_first
Another suggestion: query optimimalisation. Mindestic GlosPro is using too much queries than necessary:
Add the amount of terms in a category to the glossarycategory table. That's very easy to do with the product file (just a while loop with a count counter etc.) and changing the value after adding or removing a file.
This would remove the need of one query on the glossary home (showglossaries) and the list glossary page.
Use the datastore cache feature for the category info and the custom fields. The datastore is very easy to use and you can remove some queries with caching these things.
Also, please move the product file to outside the uploads folder. I think a minority is using the possibility to give up the server location of the file to install the product. I also don't want it on my server (normal people shouldn't have access to it), it's private and after importing it isn't necessary any more.