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)

Vossi 02-23-2011 05:57 AM

Quote:

Originally Posted by way2xtreme (Post 2165606)
Another switch somewhere?

Did you activate vBSEO-support for the glossary in admincp -> vBulletin-GLossary -> External addons?

RS_Jelle 02-23-2011 07:15 AM

Great mod! I guess you have the only vB4 mods with search integration :)

I found two small bugs:
  1. In the vbglossar_mailtofriend template replace
    Code:

    {vb:raw entryname}
    with
    Code:

    {vb:raw entry.name}
  2. The mod doesn't work with CSS as files. In the vbglossar_showcat template you have for example:
    HTML Code:

            <vb:if condition="$vboptions['storecssasfile']">
                    {vb:cssfile forumdisplay-rollup.css}
            <vb:else />
                    {vb:cssfile toolsmenu.css,forumbits.css,forumdisplay.css,threadlist.css,memberlist.css,postlist.css,showthread.css,postbit.css,attachment.css,poll.css,lightbox.css,options.css}
            </vb:if>

    But forumdisplay-rollup isn't enough. That rollup doesn't contain all CSS files listed in the else clause. For example memberlist.css is missing in it.
    The same goes for the vbglossar_home template. For example toolsmenu.css is missing in it when you have CSS as files.

    Solution: create custom glossary rollup xml's with all necessary templates listed in them.

And a suggestion: add custom meta descriptions (and keywords) to the vbglossar_showentry template. Now all entries have the same, default meta information. You need to disable the default ones in headinclude for that with a plugin setting $show['threadinfo'].

clathrop 02-24-2011 11:08 PM

Please disregard any of my prior posts on this thread. An uninstall/reinstall of a few plugins resolved all prior issues.

The only strange thing I'm seeing is that images using the IMG BB code tag are being rendered as links instead of images. Attachments show fine, just not inline images.

This is a great MOD BTW.

Vossi 02-25-2011 07:07 AM

Quote:

Originally Posted by clathrop (Post 2166536)
The only strange thing I'm seeing is that images using the IMG BB code tag are being rendered as links instead of images. Attachments show fine, just not inline images.

This is going to be fixed in the next version.

Thanks for the donation ;)

Saviour 03-01-2011 01:23 AM

Any way to make this mod work with words that were entered before the Glossary was installed?

It's working for all new entries, but not the old ones. Say...the word "computer" is in the Glossary, all new threads/posts with that particular word work, but the words that were there, prior, do not.

Any help?

BTW...excellent mod! Two thumbs up!

Saviour 03-01-2011 02:29 AM

Also,

Now getting this error when trying to edit an entry:

Code:

Warning: htmlentities() [function.htmlentities]: charset `ANSI_X3.4-1968' not supported, assuming iso-8859-1 in [path]/includes/class_dm_vbglossar_entry.php on line 377
Something I did wrong? Bug? Is there a fix?

Vossi 03-01-2011 04:25 AM

That means, that you are using the 'ANSI_X3.4-1968'-charset and that this charset does not support the htmlentities function.

Just try to open 'class_dm_vbglossar_entry.php' and check line 377, outsource
PHP Code:

# $popup = htmlentities($popup, ENT_COMPAT,  "$stylevar[charset]" ); 

by adding # at the beginning of the line.

You might find another part of the addon where this error appears; just do this again at the specific parts. That might fix this.

Saviour 03-01-2011 04:53 AM

With the space included? This "might" fix this? Or will fix it?

Saviour 03-01-2011 05:09 AM

Seems to be working...so far. Thanks.

Vossi 03-01-2011 06:18 AM

Quote:

Originally Posted by Saviour (Post 2168116)
With the space included? This "might" fix this? Or will fix it?

It will ;)

Alp Ozdemir 03-01-2011 08:48 AM

Vossi, when will you release new version of vbb-glossary? :)

Vossi 03-01-2011 09:14 AM

Quote:

Originally Posted by Alp Ozdemir (Post 2168167)
Vossi, when will you release new version of vbb-glossary? :)

Why the hassle? ;)

Saviour 03-01-2011 03:28 PM

Quote:

Originally Posted by Vossi (Post 2163857)
Admincp -> vBulletin-GLossary -> Crosslinking -> Exclude crosslinks within the same entry

This doesn't seem to be working. When I set that condition to "Yes" and preview the post, it shows the same word cross-linked twice.

Saviour 03-01-2011 05:19 PM

Vossi,

As you can see by visiting the following thread: http://www.glitchpcforums.com/forum/...g-the-Glossary

It appears the afore mentioned setting does not prevent the same word from being automatically parsed more than once.

Is this a bug? I'd like to know, please...because it would really be annoying if the same word within a post is parsed more than once.

Also, I had asked, previously, about words that are in the Glossary, but were used in threads/posts before the mod was implemented. How do we make sure these words are parsed, as well. It would seem only new threads/posts are parsed...and not older ones.

Thanks for taking a look.

clathrop 03-01-2011 11:59 PM

Is there a particular reason that the links are being converted to this type of character encoding? When I hit view source the linked word (physically between the a tag) doesn't say "Widget Here" but instead shows the amp code or whatever the name for that is. While it displays fine my guess is that google would rather follow a text link than this.

Code:

& #76;& #97;& #107;& #101; & #72;& #97;& #118;& #97;& #115;& #117;

Vossi 03-02-2011 04:26 AM

Quote:

Originally Posted by Saviour (Post 2168283)
This doesn't seem to be working. When I set that condition to "Yes" and preview the post, it shows the same word cross-linked twice.

Quote:

Originally Posted by Saviour (Post 2168331)
It appears the afore mentioned setting does not prevent the same word from being automatically parsed more than once.

Is this a bug? I'd like to know, please...because it would really be annoying if the same word within a post is parsed more than once.

In Preview of the entry or the entry view itself?
Quote:

Originally Posted by clathrop (Post 2168476)
Is there a particular reason that the links are being converted to this type of character encoding?

Yep, it has a reason as the display would screw up otherwise. ;)

Saviour 03-03-2011 11:57 PM

Quote:

Originally Posted by Vossi (Post 2168580)
In Preview of the entry or the entry view itself?

Yes...both. You did follow the link I provided (above) to see the same word "computer" being parsed more than once, correct?

way2xtreme 03-04-2011 08:21 PM

Hi, is there a way to change the "Glossary" link in the navbar from relative linking to full url linking? I have custom pages and the link in my custom pages doesn't work properly.

Thanks,
w

example

from: vbglossar.php
to: mysite.com/vbglossar.php

Saviour 03-05-2011 09:01 AM

Vossi...

Remember me? Any update?

Vossi 03-07-2011 05:51 AM

Quote:

Originally Posted by way2xtreme (Post 2169617)
Hi, is there a way to change the "Glossary" link in the navbar from relative linking to full url linking? I have custom pages and the link in my custom pages doesn't work properly.

With the build-in function of vB or vBSEO?
Quote:

Originally Posted by Saviour (Post 2169780)
Vossi...

Remember me? Any update?

I didnt find a bug, maybe you should check the settings again as it works fine for me.

smnet 03-08-2011 11:44 AM

Can I make a small suggestion? I would like to prevent cross linking from linking back to the current page. eg. I'm viewing a glossary page all about 'potatoes', the word 'potatoes' and the synonyms 'potato' and 'spuds' should not be autolinked within the glossary definition / description because I am already on that page. Is it possible to add this feature or suggest where I might begin looking to edit the PHP?

Fantastic mod.... best for a long while :)

Saviour 03-08-2011 11:56 PM

Quote:

Originally Posted by Vossi (Post 2170459)
With the build-in function of vB or vBSEO?

I didnt find a bug, maybe you should check the settings again as it works fine for me.

I did check the settings...that's why I posted here. Are there any known conflicts with other mods?

I made a post today, using one of the words I had in my Glossary and it didn't crosslink. It would seem this mod has a mind of its own.

Saviour 03-09-2011 12:24 AM

Take a look at this post on my board: http://www.glitchpcforums.com/forum/...&p=157#post157

I just started this thread. It has two different glossary words...one has been used twice and it is crosslinked twice.

These were the settings I had when I made that post.

1. Crosslinking is enabled
2. Global crosslinking is disabled
3. Restrict crosslinks in forums is set to "Yes"
4. Active Pages: All posts, single posts, Glossary are checked
5. Exclude crosslinks within the same entry is set to "No"

Now...I started another thread here: http://www.glitchpcforums.com/forum/...&p=158#post158

The only change I made to the settings was:

1. Exclude crosslinks within the same entry is set to "Yes"

It still crosslinked the same word three different times.

Now...if it works fine for you...that's great. However, it's not working for me. I'd just like to know if any of the mods I list here will interfere with this mod:

1. AddonChat
2. Auto Check Remember Me & Rules Boxes
3. GlowHost - Spam-O-Matic
4. Profile Fields in a Postbit Dropdown
5. SevenSkins Image Resizer
6. Skimlinks Plugin
7. vBadvanced Links Directory
8. vBulletin CMS
9. VSa - Advanced Forum Statistics
10. VSa - PayPal Donate
11. Wired1's Extra Profile Field Page
12. Wired1's Extra Profile Fields Tab

If it's any of the above...I'd have to assume it's the Skimlinks Plugin. However, it's installed but not enabled through the mod's settings. It comes with vbulletin 4.1.2.

Any other suggestions?

Saviour 03-09-2011 12:31 AM

I've also just found out that this mod does not work with Quick Reply. You have to use "Go Advanced". I posted a reply to one of the 4 different threads I've started on my board...and all of them are crosslinking the same word...more than once...within the same thread.

If you can't help me with this...no biggie...I'll just uninstall it...and look elsewhere for something similar. If I can't find one...that's no biggie, too.

Thanks for the help.

Saviour 03-10-2011 02:08 AM

Uninstalled...

way2xtreme 03-14-2011 04:25 AM

Quote:

Originally Posted by Vossi (Post 2170459)
With the build-in function of vB or vBSEO?

I have vBSEO installed...

way2xtreme 03-14-2011 04:26 AM

Also, how do you submit a sitemap to google for this section?

clathrop 03-14-2011 05:39 PM

1 Attachment(s)
Kinda an odd little bug. Doesn't seem to hurt anything. I just removed two entries and the "Moderation Tools" button still shows "2" next to it. See photo.

clathrop 03-14-2011 05:44 PM

1 Attachment(s)
OK, just found a conflict issue with the AME CP Plugin (auto links youtube videos). When you post a youtube video to the same thread as something with a cross link all the crosslinks show as HTML code instead of properly rendered text with a link. (See screen shot or link to my test post http://www.performanceboats.com/test...ml#post1370233

I am going to go look into this conflict now but any help would be appreciated.

I suppose that changing the execution order of the Glossary plugin so that it executes after the AME plugin might help. Both are set to execute at 5. Can anyone tell me which plugins I would have to move to 6 (the parser plugins).

Vossi 03-14-2011 08:38 PM

Just try to place it at 6 and see what happens. Maybe that works.

ketan9 03-15-2011 04:02 AM

after installation, I can't view the glossary page, it says you do not have permission to access this page

Vossi 03-15-2011 06:08 AM

You need to set the usergroup permissions first just like it says in the instructions on how to install this addon ;)

clathrop 03-15-2011 07:15 PM

Quote:

Originally Posted by Vossi (Post 2173385)
Just try to place it at 6 and see what happens. Maybe that works.

Didn't help, I am going to go bug the AME guys about it and see if they have any ideas. If it was any other plugin other than AME (or VBSEO) I would say that I would just live with out it.

It appears that AME is going through the whole post and converting < characters into &lt. This breaks the whole display of course.

It would help my debugging a bit if you could explain how the cross linking function renders just a little. Specifically I looked at the database and a cross linked word is not stored with any sort of markup around it so I assume that the markup is added when the post is called or it is stored in another table other than post.

Rckcrwlr 03-15-2011 08:29 PM

Tagged

Randomm 03-16-2011 12:06 AM

tagged

way2xtreme 03-19-2011 07:56 AM

Three questions:

1, How do I submit my glossary to google search engine?

2, How do I change the "Glossary" navtab from relatiive linking ( /glossary/ ) to abs linking ( mysite.com/glossary/ ), I have vbseo

3, How do I add drop navbar menus?

Thanks in adv
w

fahris 03-19-2011 11:49 AM

Hello

I completed the installation. Turkish words in the description of characters, but I add a popup error. How do I fix it?

MagicThemeParks 03-19-2011 01:43 PM

Vossi, any update on the BBCode showing on preview popup and description field on main page?

(Other questions)

SoloX 03-20-2011 07:53 PM

Quote:

Originally Posted by SoloX (Post 2164707)
can some of the common words be excluded for crosslinking?

yes/no ?

fahris 03-29-2011 09:11 AM

1 Attachment(s)
Hi

I'm sorry because of corrupted language ,

Glossary vbulletin forum, but I've eklentinizi 60000 sql through this process that performed the word .

Turkish characters in the word problem in the forum is divided into words . Example:

I added the attached images

Square got into the wrong words? Turkish characters you if you notice an error before coming ...

Another problem is: a large-sized messages on page opening speed is very slow.

Thank you for helping to make ..


All times are GMT. The time now is 01:20 AM.

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.01646 seconds
  • Memory Usage 1,842KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_html_printable
  • (1)bbcode_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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