vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - vBulletin-Glossary (https://vborg.vbsupport.ru/showthread.php?t=258898)

naisho 04-01-2011 06:54 AM

Very good mod, thanks.

I issue though: crosslinks popup display well in forum posts, but in cms article it doesn't display on mouseover.
I checked the source file and noticed that the vbglossar_headinclude template didn't seem to be called in the cms (call for overlib_vbglossar.js).
The solution I found to make it work properly was to manually add it in vbcms_page template:

Code:

{vb:cssfile glossary.css}       
<script type="text/javascript" src="clientscript/overlib_vbglossar.js"></script>
<!-- overLIB (c) Erik Bosrup -->
<script type="text/javascript">
<!--
ol_timeout={vb:raw ol_timeout};
ol_width={vb:raw ol_width};
ol_fgcolor="{vb:raw ol_fgcolor}";
ol_textcolor="{vb:raw ol_textcolor}";
ol_vbglossar_delay={vb:raw ol_vbglossar_delay};
//-->
</script>

There must be a better solution to automatically add this..

naisho 04-04-2011 12:16 PM

I now notice that this mod is conflicting with Tapatalk Mod.
When we browse the forum on a mobile phone (iphone) with tapatalk, the text stops displaying at the first crosslinked word. It's a real pity!

naisho 04-05-2011 06:40 AM

Quote:

I now notice that this mod is conflicting with Tapatalk Mod.
I found a solution in tapatalk mod's forum.
Disabling hooks did it in mobiquo.php (tapatalk file)

Code:

define('DISABLE_HOOKS', true);

project-Buckfas 04-06-2011 04:54 PM

1 Attachment(s)
Hi,

Been using this mod for a few months now. Some issues I've come across are as follows.

Crosslinked words in CMS break RSS feeds. See attachments for more info....

NarutoFTW 04-09-2011 10:01 PM

Added on Today 07:00 PM and
Username Today 07:00 PM appears multiple times.

project-Buckfas 04-24-2011 06:27 AM

The crosslinking also breaks the iPhone app. I have not checked out the android yet.

Quote:

Originally Posted by project-Buckfas (Post 2181587)
Hi,

Been using this mod for a few months now. Some issues I've come across are as follows.

Crosslinked words in CMS break RSS feeds. See attachments for more info....


kho91 04-24-2011 11:34 AM

i want hide the author and de date in the entry ??

kho91 04-24-2011 12:31 PM

how can i install the widget?

Ricsca 04-24-2011 07:37 PM

How to install the contunuto inside the folder vBulletin-CMS ?

Thanks

project-Buckfas 05-10-2011 08:44 PM

Quote:

Originally Posted by project-Buckfas (Post 2181587)
Hi,

Been using this mod for a few months now. Some issues I've come across are as follows.

Crosslinked words in CMS break RSS feeds. See attachments for more info....

Quote:

Originally Posted by project-Buckfas (Post 2188008)
The crosslinking also breaks the iPhone app. I have not checked out the android yet.

Another cross linking problem. vBseo relevant replacements are broken when a cross link is encountered.

clathrop 05-10-2011 08:56 PM

Any near term plans for a release that fixes the images not showing up bug?

toxin 05-22-2011 09:28 AM

Has anyone found out how to use the widget_statistic.php file?

"[a module] which shows a random entry of the glossary"

RS_Jelle 06-12-2011 12:30 PM

vBulletin-Glossary doesn't seem to be compatible with vBulletin 4.1.4. I get blank UserCP pages.

From our Apache error log:
Quote:

PHP Fatal error: Declaration of vB_Attachment_Store_vBGlossary_GlossaryEntry::veri fy_permissions() must be compatible with that of vB_Attachment_Store::verify_permissions() in .../packages/vbglossary/attach/glossaryentry.php on line 265

schuhby 06-13-2011 06:32 PM

Hi Vossi

I have had the blank settings pages and user PM's aren't working also - I have disabled the glossary and all worked fine. I really like this mod and use it a lot and wonder will you be issuing a patch please?

Vossi 06-14-2011 12:17 PM

I'm going to release 4.1.4-Version of my addons, but it'll take a few days. Besides the problem with the new editor there are also problems with the attachments as vBulletin also changed things in packages. :(

MagicThemeParks 06-14-2011 01:17 PM

Good to hear that new releases are coming out. Will you also be updating the 3.8x version of vBulletin Glossary with the fixes needed for that version?

schuhby 06-14-2011 07:45 PM

Quote:

Originally Posted by Vossi (Post 2207577)
I'm going to release 4.1.4-Version of my addons, but it'll take a few days. Besides the problem with the new editor there are also problems with the attachments as vBulletin also changed things in packages. :(

Thank you very much for you reply.

Philip

alaska_av8r 06-15-2011 05:29 AM

Vossi, do entries have to be placed under a category? In other words I would like to be able to just enter entries without creating categories. I am doing a boating terminology glossary and I like the idea of a user searching for items....or selecting the alphabetical list you have running across the top.

But it won't let me put any entries in without a category.

thanks

tim

Vossi 06-17-2011 02:42 PM

I just uploaded Version 2.0.6. This Version is for 4.1.4 and higher only (changes to attachment system and ck-editor, also it includes some bug fixes).

CoZmicShReddeR 06-18-2011 05:51 PM

I just tride to install this recieved a database error

Code:

Database error in vBulletin 4.1.4:

Invalid SQL:
CREATE TABLE vbglossar_category (
        id int(11) NOT NULL auto_increment,
        parentid int(11) NOT NULL default '0',
        displayorder int(11) NOT NULL default '0',
        name varchar(255) NOT NULL default '',
        description text,
        status smallint(5) NOT NULL default '0',
        defaulticon smallint(5) NOT NULL default '1',
        definedicon varchar(255) NOT NULL default '',
        groupshow smallint(5) NOT NULL default '1',
        groupshowlist varchar(255) NOT NULL default '',
        PRIMARY KEY (id)
) TYPE=MyISAM;


MrD 06-18-2011 06:01 PM

Hi,
why you post a half Error Message?
Whos the Rest?

RS_Jelle 06-19-2011 08:43 AM

You're probably running MySQL 5.5 I guess?

You need to replace
Code:

TYPE=MyISAM
with
Code:

ENGINE=MyISAM
TYPE is deprecated in MySQL 5.5.

ccr 06-19-2011 03:47 PM

I've updated to 2.0.6, but when i try to access to general settings/Edit profile, the forum says me:

Fatal error: Declaration of vB_Attachment_Store_vBGlossary_GlossaryEntry::veri fy_permissions() must be compatible with that of vB_Attachment_Store::verify_permissions() in...packages/vbglossary/attach/glossaryentry.php on line 363

With the previous version (2.0.5) i had the same problem.

Thanks

project-Buckfas 06-20-2011 12:10 PM

Are the bugs with RSS Feeds and the Mobile App fixed?

paulket 06-21-2011 12:33 AM

Quote:

Originally Posted by ccr (Post 2209942)
I've updated to 2.0.6, but when i try to access to general settings/Edit profile, the forum says me:

Fatal error: Declaration of vB_Attachment_Store_vBGlossary_GlossaryEntry::veri fy_permissions() must be compatible with that of vB_Attachment_Store::verify_permissions() in...packages/vbglossary/attach/glossaryentry.php on line 363

With the previous version (2.0.5) i had the same problem.

Thanks

I get this same error with a fresh install of 2.0.6 on vBulletin 4.1.4

I added an entry and received a notice, the error occurred when I tried to view the notice for the new entry.

iask 06-29-2011 04:39 PM

Fatal error: Declaration of vB_Attachment_Store_vBGlossary_GlossaryEntry::veri fy_permissions() must be compatible with that of vB_Attachment_Store::verify_permissions() in /home/xxxxxxx/domains/xxxxxx.com/public_html/packages/vbglossary/attach/glossaryentry.php on line 363

taxman 07-01-2011 03:18 PM

I have same error when trying to add an attachment

iask 07-01-2011 04:37 PM

Update ?

taxman 07-01-2011 06:35 PM

having to disable it, I cant even access member settings.... get the same error...

Tried rebuilding attachments and that is just Full of errors... you cant PM, or edit settings etc with the Glossary running...

ccr 07-04-2011 07:57 AM

Any solution please?

8thos 07-06-2011 10:36 AM

I clicked on 'Edit Profile'

and got this error:


Fatal error: Declaration of vB_Attachment_Store_vBGlossary_GlossaryEntry::veri fy_permissions() must be compatible with that of vB_Attachment_Store::verify_permissions() in /home/thethleg/public_html/packages/vbglossary/attach/glossaryentry.php on line 264

Uninstalling for now.

taxman 07-10-2011 03:29 PM

This such a shame.. anyone know of a similar mod... :(

8thos 07-10-2011 06:00 PM

Please fix this modification!

byalik 07-12-2011 07:36 PM

Several issues - please help

1.
On this page
http://legalhelp.org/forum/private.php

Fatal error: Declaration of vB_Attachment_Store_vBGlossary_GlossaryEntry::veri fy_permissions() must be compatible with that of vB_Attachment_Store::verify_permissions() in /home/legalhel/public_html/forum/packages/vbglossary/attach/glossaryentry.php on line 363


2. I noticed when I downloaded the zip that there were other files/folders including "CMS" but no instructions for any of those?

3. What is crosslinking?

This is for www.legalhelp.org

taxman 07-14-2011 03:01 PM

Byalik,,, we all have the same error im afraid,,, its not just that one page buddy... but it is the same error thoughout.

byalik 07-14-2011 03:02 PM

Yes I see that now. I just got a programmer to help me out so hopefully he can fix it. It seems a lot of the mods I have downloaded have bugs so I am going to need some work done on them.

taxman 07-14-2011 05:20 PM

If you find a fix................. Please post it :)

byalik 07-14-2011 05:33 PM

That programmer wasn't able to figure it out so I posted in the paid section looking for a new one

byalik 07-15-2011 03:38 AM

My programmer fixed the issue, I will upload the files tomorrow. You can see at www.legalhelp.org. If anyone needs any thing fixed or custom work, you can contact the programmer - alexmarkov@gmail.com

taxman 07-15-2011 08:56 AM

Thank you VERY much thats awsome...


All times are GMT. The time now is 09:26 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.01436 seconds
  • Memory Usage 1,819KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete