Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Mindestic GlosPro 1.1.3 Details »»
Mindestic GlosPro 1.1.3
Version: 1.1.4, by SS9267547 SS9267547 is offline
Developer Last Online: Jun 2009 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 03-31-2006 Last Update: 11-26-2006 Installs: 111
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

Please note that version 1.1.4. of Mindestic GlosPro is the final version for vBulletin 3.5.X series and there will be no more development or support for this vBulletin series. However development for vBulletin 3.6.X series has start and at this time works for both versions.

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.5.X series. Loaded with features, Mindestic GlosPro is a great tool for any sized website!

Mindestic GlosPro Information
Current Version Number: 1.1.4
vBulletin Test Version(s): 3.5.4
Queries to run: 4
File Edits: 0
New Files: 8
New Phrases: 171
New Templates: 17
New Plugins: 7
Template Edits: 2
Last Edited: November 27, 2006
Edited By: Lucas Pawelczyk
Install Time: 2 minutes
Difficulty: Easy

Current Features
  1. Option to activate or disable glossary globally.
  2. Give permissions to whatever usergroup you want to be able to access this.
  3. Option for maximum number of entries to be displayed per page.
  4. Create unlimited basic categories.
  5. Basic search options.
  6. Sort glossary alphabetically.
  7. Supports html code, smiles, bbcode, imgcode.
  8. Auto convert url to bbcode.
  9. User submited glossary terms option.
  10. Glossary tools for user side inculding add, edit and delete terms.
  11. User submit flood control system.
  12. Moderate new glossary terms option.
  13. Moderate glossary terms via admincp and modcp.
  14. Email and/or PM options for admins.
  15. Sort list options in admincp / modcp.
  16. Search function for admincp / modcp.
  17. Enable/Disable 'Last Updated' information from glossary.
  18. Enable/Disable 'Submitted By' information from glossary.
  19. Crosslinking repeated glossary terms to other glossary terms with glossary tooltip feature as well crosslinking within forum posts.
  20. Enable/Disable crosslink image from glossary.
  21. Option to limit the number of replacements for each term for crosslinking.
  22. Navbar options for auto placement.
All Screenshots And Release Notes
  1. Screenshot For Version 1.1.1 (Part 1)
  2. Screenshot For Version 1.1.1 (Part 2)
  3. Screenshot For Version 1.1.2
  4. Screenshot For Version 1.1.3
Known Bugs For Version 1.1.3:
  • PM messages will not send if pm quota for any admins is full and/or their PM system is off.
  • Line breaks go missing with the Basic Editor.
Current Planned Features For Version 1.1.5 (vB 3.5.X)
  1. None
Additional Credits:
  • Orginal Navbar Plugin by Billspaintball. Thanks for the idea!
For those wanting the hack for the 3.6.X series please click visit:
https://vborg.vbsupport.ru/showthread.php?t=132632

For those wanting the hack for the 3.0.X series please click visit:
https://vborg.vbsupport.ru/showthread.php?t=111622

Remember if you use and like this hack make sure to click 'Install'. Thanks!

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
trotskid

Comments
  #132  
Old 05-05-2006, 02:54 PM
tbaleno tbaleno is offline
 
Join Date: Feb 2006
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Oddjob
I get the same error.
Ditto. After the upgrade I get the same error as well.
Reply With Quote
  #133  
Old 05-05-2006, 03:00 PM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If the function does not work on your server, at this time you'll need to disable the feature for now since I havn't figured out why it works and it doesn't work lol.
Reply With Quote
  #134  
Old 05-05-2006, 10:28 PM
tbaleno tbaleno is offline
 
Join Date: Feb 2006
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It has to do with text that contains invalid characters like ' or / and stuff like that. I saw some references to preg_quote, but not being that great with php I have no clue how to impliment it.

But thats the problem on my end anyway. I hope this helps you come up with a fix.
Reply With Quote
  #135  
Old 05-05-2006, 11:11 PM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks, yeah anything to help me figure out a fix is great lol. Still working on that bug still.
Reply With Quote
  #136  
Old 05-06-2006, 02:22 AM
tbaleno tbaleno is offline
 
Join Date: Feb 2006
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is what I came up with.

replace:

$findotherterms[] = "/(\s+|^)".$foundterms['glossaryname']."(\s+|$)/";

with:

$tmptrms=str_replace("'","\\'",$foundterms['glossaryname']);
$tmptrms=str_replace("/","\\/",$tmptrms);
$findotherterms[] = "/(\s+|^)".$tmptrms."(\s+|$)/";

Should be around line 43 of includes/function_glossary.php

Its realy a horrible hack and may have other issues because only ' and / are replaced.

It may point someone in the right direction for a proper fix.
Reply With Quote
  #137  
Old 05-07-2006, 03:10 PM
caliman's Avatar
caliman caliman is offline
 
Join Date: Jan 2005
Location: California
Posts: 256
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@SS9267547 - what are the steps to upgrade to the latest version? Do I need to upload all the files or just redo the plugin?

Also - should I be concerned about the php errors people are reporting with this version?

Thanks in advance..
Reply With Quote
  #138  
Old 05-07-2006, 09:58 PM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tbaleno: Thanks! I have come up with something so we will test it in the next few days.

caliman: What version are you running right now? Anyway I will upload all the version up today fo you. Just download each one and follow the steps if you want to upgrade. As for the errors they only show up when you enable crosslinking, if they show up just disable the feature. I have come up with a possiable fix for the next version set to be released in the next few days.
Reply With Quote
  #139  
Old 05-09-2006, 12:17 AM
ChErAbOo ChErAbOo is offline
 
Join Date: Jan 2006
Location: Eastern United States
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am also getting the same errors on 1.1.2

Warning: preg_replace(): Unknown modifier 't' in /includes/functions_glossary.php on line 49

Warning: preg_replace(): Unknown modifier 't' in /includes/functions_glossary.php on line 49

Warning: preg_replace(): Unknown modifier 'b' in /includes/functions_glossary.php on line 49

etc I am working with php 5.0.3 I have disabled that feature until a fix comes but its a nice add on
Reply With Quote
  #140  
Old 05-09-2006, 02:49 AM
SS9267547's Avatar
SS9267547 SS9267547 is offline
 
Join Date: Nov 2001
Location: Canada
Posts: 390
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A possiable fix wll be released later this week I hope
Reply With Quote
  #141  
Old 05-09-2006, 04:00 AM
Billspaintball's Avatar
Billspaintball Billspaintball is offline
 
Join Date: Sep 2003
Location: Bathurst, Au
Posts: 649
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ohh this looks nice.

Im currently using cinqs (paid) hack, but this looks like it might better suit my requirements.

Testing
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:23 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.05678 seconds
  • Memory Usage 2,314KB
  • Queries Executed 28 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete