Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons

Reply
 
Thread Tools
vBulletin-Glossary Details »»
vBulletin-Glossary
Version: 1.1.0, by Vossi Vossi is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.7.x Rating:
Released: 08-14-2008 Last Update: 12-09-2008 Installs: 144
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations  
No support by the author.

What is vBulletin-Glossary:

A professional glossary with features like :
  • crosslinking
  • attachments in entries
  • edit-history
  • synonyms
  • optional entryfields
  • vb-SEO compatible
  • etc.
Installation:

- Upload all files in 'upload' to your server

- set 777-permission for the following directories:
  • /vbglossar
  • /vbglossar/backup
  • /vbglossar/temp
- Import 'product-vbglossar.xml' in AdminCP as Add-On.

Right after the import of the productfile, go and set the usergroups. Afterwards edit the setting in AdminCP (Settings and Crosslinking). Now go to 'manage categories' and create the wanted cats.

Now the glossary should be configured and ready to use.

Update from version 1.0.0 to version 1.0.1/version 1.0.1 to version 1.1.x:

Follow the instruction of a new installation, also check the file permissions. After importing the product (overwrite: yes), check the grouprights and the settings of the glossary as there are some new features. In case the entries won't show up, please rebuild the datastore in the tools-section of the glossarin in admincp.

General:

This addon has been developed by the follwing people (a-z): Andreas, Captainslater, G?rome, Surviver and me. We spent every free minute for this project (coding, translation, tests, etc). Also MrD and Ragtek have tested during the time when this addon got developed.

In directory '/tools' you might find a usefull Script by G?rome. User of vBCMS will find a module for their portal in directory 'vbcms' which shows a random entry of the glossary.

History:
  • 1.0.0 - First version
  • 1.0.0 PL 1 - Fixed Version by G?rome, users can't write unwnated entries anymore.
  • 1.0.1 - overwork of the code, now working with datastore and datamanager. Also we included some small new features into the addon (e. g. revert entries, inlinemod, etc).
  • 1.0.2 - overwork of the code, bugs removed, a lot of new features
  • 1.0.3 - fixed more small bugs and added new functions (create threads for discussions, more options for crosslinking, better options for mods/admins, etc).
  • 1.0.4 - bugfix-release.
  • 1.1.0 - added more main-features (synonyms can be used now, optional use of entryfields within categories, PDF-functions included, vB-SEO kompatible, TOC-list, etc)

Languages:

By default you will find the complete germany and english phrases in the product (look at ZIP-file), done by Captainslater. The turkish translation has been done by t?rkg?rc?.

More translations are welcome and it would be nice if those will be published here.

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #82  
Old 09-07-2008, 12:58 PM
akulion's Avatar
akulion akulion is offline
 
Join Date: Nov 2005
Location: Canada
Posts: 259
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi im getting this error on the top of my glossary page

"Warning: Division by zero in [path]/vbglossar.php on line 3208"

Can you please look into this?

Thanks

Aku
Reply With Quote
  #83  
Old 09-09-2008, 07:37 AM
imedic's Avatar
imedic imedic is offline
 
Join Date: Mar 2008
Location: Romania
Posts: 178
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by i156 View Post
...I''ve got it working with vbSeo but it would be even better if it had the keywords from the category.

http://www.usacarry.com/forums/glossary-1/

Same with the term links if possible.
How did you made it work?
Reply With Quote
  #84  
Old 09-09-2008, 08:44 AM
romolus romolus is offline
 
Join Date: Aug 2005
Location: Luxemburg
Posts: 34
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hallo,

i have installed the version 1.0.1 and now i have an error:

Warnung: Division by zero in [path]/vbglossar.php (Zeile 3208)

please help
Reply With Quote
  #85  
Old 09-11-2008, 07:22 AM
katilkuzu's Avatar
katilkuzu katilkuzu is offline
 
Join Date: Feb 2006
Location: Istanbul
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

installed but i got this error:

Quote:
Warning: Division by zero in /vbglossar.php on line 3208
Reply With Quote
  #86  
Old 09-11-2008, 07:39 AM
ShiZoPhreN ShiZoPhreN is offline
 
Join Date: Apr 2008
Location: Germany/Hamburg
Posts: 85
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by akulion View Post
hi im getting this error on the top of my glossary page

"Warning: Division by zero in [path]/vbglossar.php on line 3208"

Can you please look into this?

Thanks

Aku
Quote:
Originally Posted by Vossi
Search in vbglossar.php (line 3208)
PHP Code:
$stats['average'] = vb_number_format(($stats['totalsize'] / $stats['count']), 1true); 
and replace with:
PHP Code:
if ($stats['count'])
{
    
$stats['average'] = vb_number_format(($stats['totalsize'] / $stats['count']), 1true);
}
else
{
    
$stats['average'] = vb_number_format(01true);

Here Dude
Reply With Quote
  #87  
Old 09-12-2008, 06:39 PM
akulion's Avatar
akulion akulion is offline
 
Join Date: Nov 2005
Location: Canada
Posts: 259
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks ShiZoPhreN that solved my problem completely

thanks
Reply With Quote
  #88  
Old 09-13-2008, 11:42 PM
WildSoftCat WildSoftCat is offline
 
Join Date: Mar 2007
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Problem with popup showing in different coding (seems as unknown language ) fixed.

Edit functions_vbglossar.php in include folder :

1. Find

PHP Code:
function fetch_glossar_items()
{
    global 
$vbulletin
Replace with :

PHP Code:
function fetch_glossar_items()
{
    global 
$vbulletin$stylevar
2. Find :

PHP Code:
$item['description'] = htmlentities($item['description']); 
Replace with :

PHP Code:
$item['description'] = htmlentities($item['description'], ENT_COMPAT,  "$stylevar[charset]); 
Done
Reply With Quote
  #89  
Old 09-14-2008, 02:25 AM
inciarco's Avatar
inciarco inciarco is offline
 
Join Date: Mar 2007
Posts: 758
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello. Great Mod, Hoping for it to be More Flexible on the Time to Choose in what Forum and in what Posts do I want to Include Crosslinkings.

One Question: On the Crosslinking "Active Pages" Options, I can see Four Options. Could you please Explain what do those Options mean and how do they Work?

Single Post: Is it to select crosslinking for a single post? How can this be done? (I tried but didn't find any option to activate the crosslinking on an individual post).

All Posts: I sow that on all New Posts and Edits the Crosslinking appeared. I'd prefer to be able to choose if I want to include Crosslinking or not, like to have an Option Below the Post and Click on it to Select it and then when Posting the Crosslinking to be Applied, or if I don't Select it then Nothing will happen, (like on the "Automatically parse links in text" Option that works Individually for each Post.

Private Messages?

Glossar?

It'd also be nice to Select which Usergroups can Crosslink and which ones Cannot. I can see Options for Accesing Categories, but would also be nice to have Usergroup Permissions for Crosslinking (I'm imagining my Posts all Crosslinked by any User and the process to Un-Crosslink is Hard (has to be done post by post).

I Appreciate Your Answers.

My Best Regards.

Reply With Quote
  #90  
Old 09-14-2008, 07:40 PM
inciarco's Avatar
inciarco inciarco is offline
 
Join Date: Mar 2007
Posts: 758
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For now I can see that if I Set "Enable Crosslinking" to Yes, "Enable Crosslinking Global" to NO, and in "Additional Page (THIS_SCRIPT)" I introduce showthread, then the Crosslinking is Displayed on the Words of the Threads without Editing the Posts, (which Happens if the Global Crosslinking is ON or when is Off and the Option "All Posts" is Activated).

I'd Appreciate More Complete Details about this Functions from the Developpers, of the Questions Posted on my Previous Post.

My Best Regards.

Reply With Quote
  #91  
Old 09-14-2008, 07:46 PM
Vossi Vossi is offline
 
Join Date: Mar 2005
Location: Germany
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The problem with the crosslinking is nearby solved. We released version 1.0.2 last friday on vBGo and we will release 1.0.3 within the next few days. 1.0.3 will be more stable as 1.0.1/1.0.2, we fixed some major problems and added new functions.

Version 1.0.3 will be uploaded here as soon as we ZIP'ed the package.
Reply With Quote
Reply

Thread Tools

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:28 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.05816 seconds
  • Memory Usage 2,328KB
  • Queries Executed 26 (?)
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
  • (6)bbcode_php
  • (4)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
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (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_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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • 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