Glossary

Started by slinouille, December 24, 2008, 10:33:47 AM

Previous topic - Next topic

Bruno36

Hello!

The bbcode is not working
Bruno36 the French
SMF 2.0.9

Antes

HTML codes working awsome :)

<span style="color: red;">Piston</span>

Eclipse16V

Is there a Update to 2.0 RC2 ?
I worked with:
SMF 2 in German

Shop:
SID Giessen

Bigguy

Haas anyone installed this on RC2 to see if it works. ???

Kindred

I have it working on RC 1.2 (Dev edition, between 1.2 and 2.0)

I will be updating the site to 2.0 next weekend...   so I'll let you know then. :)
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Costa

Hugo "Costa" Fernandes - PT SMF
Todas as MP's a pedir ajuda são sujeitas a radioactividade, microondas, queimadas e atiradas borda fora.

"At least someone appreciates the fact that I am doing and not thinking..."
"Laziness is counter-revolutionary."

Bigguy

Sounds good Kindred. I was just about to install it but was wondering if the database had changed much between RC 1.2 and RC 2.0

Bruno36

Hello!

I have an error message

QuoteErreur de base de données
Table 'smf.smf_glossary_groups' doesn't exist
Fichier: C:\wamp\www\Sources\Glossary.php
Ligne: 422

//Build list of groups
$context['glossary_groups'] = array();
$data_groups = $smcFunc['db_query']('', '
SELECT *
FROM {db_prefix}glossary_groups
ORDER BY title ASC',
array()
);
Bruno36 the French
SMF 2.0.9

Kindred

that means that the database tables were not created when you installed the mod.  find the database file, put it in your forum root and run it... or manually create the tables...
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Bruno36

Notice: Undefined index: fm_adminbutton in C:\wamp\www\Sources\Subs.php on line 3950


Erreur de base de données
No database selected
Fichier: C:\wamp\www\installDatabase.php
Ligne: 99
Retour
Bruno36 the French
SMF 2.0.9

Antes

Quote from: Bruno36 on December 02, 2009, 09:28:51 AM
Notice: Undefined index: fm_adminbutton in C:\wamp\www\Sources\Subs.php on line 3950


Erreur de base de données
No database selected
Fichier: C:\wamp\www\installDatabase.php
Ligne: 99
Retour

simply open phpmyadmin you 'll see db tables about Glosarry add smf_ as prefix it solves :)

CvH

im trying to install it on RC2 (updatet install routine) get this error , if i try to add an word in glossary O_o

Unknown column 'synonyms' in 'field list'
Datei: /htdocs/Sources/Glossary.php
Zeile: 80

Kindred

it looks like the database install did not complete.
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Nibogo

I´m having some serious issues with this mod, I don't know if anyone else has this problem but if I try to add a new term the form to create it just appear a few seconds and them it close, I have the same with the administrator dropdown menu. Anyone else have this??

Browser: Firefox, SMF 2.0 RC2 (I made the convertion and it works in one forum but in the other one I have this issue)

Kindred

I had that problem before...   copy all of the glossary files into your custom theme directory/
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."


t3ngu

Any chance we'll be getting this on RC2.0? I'd really love to have this mod.

Kindred

hmmm....   it seems to work just fine for me with 2.0RC2.  I had to tell the system to install with a lesser version, but it installed fine.
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

marcozambi

#278
Today I have installed it on a clean, vanilla RC2.0. RC2
The installer warns you that is not possible to modify correctly Subs.php and Subs-Editor.php, so it is necessary to modify the installer in a couple of points to make it work.

Original install.xml, starting line 89

<file name="$sourcedir/Subs.php">
<operation>
<search position="after"><![CDATA[
'register' => array(
'title' => $txt['register'],
'href' => $scripturl . '?action=register',
'show' => $user_info['is_guest'],
'sub_buttons' => array(
),
'is_last' => true,
),]]></search>


Changed in this way

<file name="$sourcedir/Subs.php">
<operation>
<search position="after"><![CDATA[
'register' => array(
'title' => $txt['register'],
'href' => $scripturl . '?action=register',
'show' => $user_info['is_guest'],
'sub_buttons' => array(
),
'is_last' => !$context['right_to_left'],
),]]></search>


Then going on with original Subs-Editor.php, starting from line 255

<operation>
<search position="before"><![CDATA['quote' => array('code' => 'quote', 'before' => '[quote]', 'after' => '[/quote]', 'description' => $txt['bbc_quote']),]]></search>
<add><![CDATA[
'glossary' => array('code' => 'glossary', 'before' => '[glossary]', 'after' => '[/glossary]', 'description' => $txt['bbc_glossary']),]]></add>
</operation>


Change in this way

<operation>
<search position="before">
<![CDATA[
array(
'image' => 'quote',
'code' => 'quote',
'before' => '[quote]',
'after' => '[/quote]',
'description' => $txt['bbc_quote']
),
]]>
</search>
<add>
<![CDATA[
//Glossary Mod
array(
'image' => 'glossary',
'code' => 'glossary',
'before' => '[glossary]',
'after' => '[/glossary]',
'description' => $txt['bbc_glossary']
),
]]>
</add>
</operation>


After that I had no probs installing it.
Now I am working to trick some problem in regular expression recognition and on keywords that are appearing in capitol letters... I'll update soon.

I hope this could be useful for the developer to release a RC2.0 compatible version of Glossary Mod.

nexxuscorp

Hi everybody !!!

I use this wonderful mod, even if it has problems with rc2, but i've noticed a bug ( i don't know if it existed before).
Glossary doesn't work with AEVA .
When i use the glossary to works on my forum, My videos are not embed, but if i disable it, AEVA works.

Anyone has this problems?

Sorry for my english, i'm french :p

Advertisement: