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

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
  #342  
Old 09-25-2011, 04:53 PM
g0rdy g0rdy is offline
 
Join Date: Oct 2003
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by byalik View Post
There is a problem with the mod for version 4. Does anyone have a fix?
You're in the wrong thread. Go here: https://vborg.vbsupport.ru/showthread.php?t=258898
Reply With Quote
  #343  
Old 05-20-2012, 06:27 AM
G0F0RBR0KE G0F0RBR0KE is offline
 
Join Date: Mar 2005
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<font face="Georgia">When using this modification. For some reason. I cannot have a paragraph.

Example what I want

Test
Test
Test

But, what I get is
Test Test Test. How do I fix this?

Version: 3.7.1</font>
Reply With Quote
  #344  
Old 12-17-2013, 06:54 PM
Digital Jedi's Avatar
Digital Jedi Digital Jedi is offline
 
Join Date: Oct 2006
Location: PopCulturalReferenceLand
Posts: 5,171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Supposedly there's a syntax error when trying to access a category.

Code:
Invalid SQL:

			SELECT SQL_CALC_FOUND_ROWS *
			FROM vb_vbglossar_entry AS entry
			
			WHERE categoryid = 3
				AND status IN (0,1)
				
				
			ORDER BY entry.name ASC
			LIMIT 0,;

MySQL Error   : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 9
Error Number  : 1064

I'm not familiar with this error, but these seem to be the offending lines in vbglossar.php:
PHP Code:
    do
    {
        if (!
$page)
        {
            
$page 1;
        }

        
$limitlower = ($page 1) * $perpage;

        
// fetch all entries of defined category
        
$hook_query_fields $hook_query_joins $hook_query_where '';

        (
$hook vBulletinHook::fetch_hook('vbglossar_query_allentriesofcat')) ? eval($hook) : false;

        
$entrylist $db->query_read_slave("
            SELECT SQL_CALC_FOUND_ROWS *
            FROM " 
TABLE_PREFIX "vbglossar_entry AS entry
            
$hook_query_joins
            WHERE categoryid = " 
intval($catid) . "
                AND status IN (" 
. (($permissions['groupvbglossar'] & $vbulletin->bf_ugp['groupvbglossar']['canadminvbglossar']) ? "0,1" "1") . ")
                
$condition
                
$hook_query_where
            ORDER BY " 
$sqlsortfield " " $sortorder "
            LIMIT 
$limitlower$perpage
        "
);

        
$entriestotal $db->found_rows();
        if (
$limitlower >= $entriestotal)
        {
            
$page ceil($entriestotal $perpage);
        }
    } 
But it seems to check out. Unless there's a deprecated function in here somewhere, I can't find it.
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 06:50 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04411 seconds
  • Memory Usage 2,259KB
  • Queries Executed 19 (?)
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_code
  • (1)bbcode_php
  • (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
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (4)post_thanks_box
  • (4)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit_info
  • (3)postbit
  • (4)postbit_onlinestatus
  • (4)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