Log in

View Full Version : Spell checker: PHPSpell for vBulletin3 WYSIWYG and Standard mode


tamarian
05-31-2004, 10:00 PM
PHPSpell for vBulletin3 WYSIWYG and Standard mode

Intro: PHPSpell uses a MySQL based disctionary and requires no additional tools than your standard PHP/MySQL setup. One draw back to this hack is that while it works with vBulletin in WYSIWYG mode, the popup window will still display html and vBCode tags. But the advantages are numerous, such as the "learn" capability and the admin tool.

There is another hack https://vborg.vbsupport.ru/showthread.php?&threadid=65737 for PungoSpell that supports WYSIWYG mode disply on the spell check popup window. It has less features than PHPSpell, but it supports WYSIWYG display. Check it out, and compare which one is best for your forum.

Credit PHPSpell (http://www.master-technology.com/demos/spell/index.php) Was written for PHPBB, and then expanded to work for all major forum software, including vB2 and vB3. Due to vB3's WYSIWYG mode, PHPSpell only supports standard mode. This hack will allow it to work for both standard and WYSIWYG.

If you like this software, please click the PayPal button on the Author's site (http://www.master-technology.com/demos/spell/index.php), so they'll add more features. Their future plans so far include:

* PHPBB Template integration
* Other Languages (Currently supports English & Russian)
* Finish Language support so that hardcoded output is stored in language files
* Ability to delete Learned Words for the end user
* Ability for Admin to View/Edit/Delete words in installed dictionaries
* Ability for Admin to export Dictionaries
* Ability for end user to choose which Dictionary/Thesaurus Site to use
* Ability for end user to be able to change which Language to use
* Ability for end user to change # of words to find.
* Ability for Integrated Dictionary/Thesaurus
* Other Program Integration


Demo: http://www.master-technology.com/demos/spell/index.php

What this hack does This hack modifies the PHPSpell software package from PHPSpell (http://www.master-technology.com/demos/spell/index.php) to allow spell checking on vBulletin for both modes, WYSIWYG and standard mode.

Note: You will see tags like <br> and others in WYSIWYG and BBCode in standard mode. Edit the config file to ignore them. This happens in both WYSIWYG mode, and in standard mode. It will show the tags, but it will not spell check them. This hack does not add new features to the spell checker, it just makes it work, as designed, for vB3 in both WYSIWYG and standard mode.

Instructions

1. Download the attached file, and unpack into a new directory called "spelling" below your forum directory.

2. Edit the config file "spell_config.php" and enter your forum database username and password.

3. Find a dictionary and upload it to the "spelling" directory. A copy is provided in the zip file. PHPSpell's site has a couple of dictionaries for download: http://www.master-technology.com/demos/spell/download.php

4. Run "spell_admin.php" from your browser (URL/spelling/spell_admin.php) to create the dictionary datanbase table. When done, delete this file and the dictionary file.

5. You might want to modify the css files to have the look and feel of your forum and colours.

6. The rest is template edits for each template where you'd like to have the spell checker. For example:

newreply template

Find

</head>

Add above

<script language='javascript' src='spelling/spellmessage.js'></script>

Find the submit and preview buttons:

<input type="submit" class="button" name="sbutton" value="$vbphrase[submit_reply]" accesskey="s" tabindex="1" />
<input type="submit" class="button" name="preview" value="$vbphrase[preview_post]" accesskey="p" tabindex="1" />

Add below:
<if condition="DOTOOLBAR!=2">
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
</if>

And repeat the same steps for other templates like newthread etc.


Optional: Other Templates that contain edit boxes are:
USERCP_SHELL just add the first change here in above the </head section. Required for pm_newpm and modifysignature.
editpost
Calendar Templates: calendar_edit
New Posting Templates: newreply, newthread
Modify User Options Templates: modifysignature (add the the first change in USERCP_SHELL)
Private Message Templates: pm_newpm (add the the first change in USERCP_SHELL)

I may have missed a few, so let me know.

7. If it doesn't work, run the file "spell_diags.php" from your browser, it will test your setup and report any problems.

Enjoy

Boofo
06-01-2004, 03:17 PM
Any screenshots?

tamarian
06-01-2004, 03:29 PM
Any screenshots?

There's a demo link posted, but here's a couple screenshots. Correction, I'm having difficulty uploading PNG shots, so I'll try to add them later. In the mean time, visit the official homepage for PHPSpell for an online demo.

Boofo
06-01-2004, 04:21 PM
I was hoping to see how it looked integrated into vb. ;)

msimplay
06-01-2004, 04:34 PM
can someone do a list of templates to insert this code into because newbies will not so easily be able to find the templates

ok i just did it so i'll do the above

showthread_quickreply
newthread
newreply
pm_newpm

welo
06-01-2004, 04:49 PM
I have a meeting shortly so I'll be out of the loop for the rest of the afternoon. Will install it on my test board this evening though and post a few notes later. Cheers for this.

tamarian
06-01-2004, 04:58 PM
I was hoping to see how it looked integrated into vb. ;)

PM me your email and you can post them for me :)

vB.org apparently won't let me uplaod them, as the upload hangs. Might be due to the size of the disctonary taking up all my space allowance....

However, the "integration" part will just show a "spell check" button, next to the "preview" button. The online demo listed will be identical, as it's a popup window.

tamarian
06-01-2004, 04:59 PM
can someone do a list of templates to insert this code into because newbies will not so easily be able to find the templates

Great idea. I've listed them in step 6.

msimplay
06-01-2004, 05:20 PM
Thanks Tamarian :)

msimplay
06-01-2004, 05:38 PM
Big problem with the spellchecker

it seems to be picking up the html from the wyziwyg editor

Acido
06-01-2004, 05:41 PM
Is not working OK in wysiwyg :(

The spellchecker add tags like : <P style="MARGIN: 0px"> to the text :(

tamarian
06-01-2004, 05:52 PM
RE: HTML tags like <br>, add them in the config file to ignore.

Note, this happens in both WYSIWYG mode, and in standard mode. It will show the tags, but it will not spell check them.

This hack does not add new features to the spell checker, it just makes it work, as designed, for vB3 in both WYSIWYG and standard mode.

msimplay
06-01-2004, 06:09 PM
hmm its not what i had expected then :S
anyone got the if condition to make it only work for standard editor then coz parsing html will only confuse users

i used



<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="window.open('http://www.spellcheck.net','spellchecker','statusbar=no,m enubar=no, toolbar=no,scrollbars=yes,resizable=yes,width=647, height=391'); return false;"/>
</if>


instead of


<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="window.open('http://www.spellcheck.net','spellchecker','statusbar=no,m enubar=no, toolbar=no,scrollbars=yes,resizable=yes,width=647, height=391'); return false;"/>
</if>

because i wanted to compensate for the lack html stripping from spellchecker
this way both parties get to use a spell checker
otherwise i was planning to remove the spell checker for wyziwyg editor users altogether

insanctus
06-01-2004, 06:52 PM
hmm its not what i had expected then :S
anyone got the if condition to make it only work for standard editor then coz parsing html will only confuse users

i used



<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="window.open('http://www.spellcheck.net','spellchecker','statusbar=no,m enubar=no, toolbar=no,scrollbars=yes,resizable=yes,width=647, height=391'); return false;"/>
</if>


instead of


<if condition="DOTOOLBAR!=2">
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
</if>

because i wanted to compensate for the lack html stripping from spellchecker
this way both parties get to use a spell checker
Does anyone have this working? I have yet to try it out, but by lookin at how small the word list size is I do not see how it could be to powerful.

msimplay
06-01-2004, 06:53 PM
Does anyone have this working? I have yet to try it out, but by lookin at how small the word list size is I do not see how it could be to powerful. i have it working at my site
check it using test as username and password

it is quite powerful in respect of having a thesaurus aswell
and you can add ur own words to it
even though that kind of negates the reason to use the spell checker
oh well we can't win em all :P

ps if u visit my site use both the standard editor and the wyziwyg both spell checkers are different :)

tamarian
06-01-2004, 07:03 PM
hmm its not what i had expected then :S
anyone got the if condition to make it only work for standard editor then coz parsing html will only confuse users

The conditional is already there :)

Just remove the "else" part:

<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>

insanctus
06-01-2004, 07:04 PM
Looks cool I guess I will try it out later on my site.

msimplay
06-01-2004, 07:07 PM
The conditional is already there :)

Just remove the "else" part:

<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
thanks but i decided to change the spellchecker for wyziwyg instead of removing the option altogether

insanctus
06-01-2004, 08:10 PM
Ok installed and works, thanks msimplay for the demo log in (it is what made me choose to use this)

Nice add in !

msimplay
06-01-2004, 09:06 PM
Ok installed and works, thanks msimplay for the demo log in (it is what made me choose to use this)

Nice add in !
sorry about the mix up i just changed the instructions to the right ones in mt original thread


heres the right html


<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="window.open('http://www.spellcheck.net','spellchecker','statusbar=no,m enubar=no, toolbar=no,scrollbars=yes,resizable=yes,width=647, height=391'); return false;"/>
</if>

tamarian
06-02-2004, 12:06 AM
News: I will shortly release another spell checker hack, based on PungoSpell (http://sourceforge.net/projects/pungo-spell/) which will support standard and WYSIWYG modes, and displays WYSIWYG in the popup windows without the tags.

One draw back to PungoSpell, is that it will require you to have PSPELL compiled into PHP. Some have this by default, but some don't. Another draw back is the lack of the "learn" button.

I initially worked on it and had it tested, but decided to use PHPSpell for the added features. . But since I modified it already, I'll just clean it and release it, so those who prefer full WYSIWYG display can use it.

Stay tuned.

tamarian
06-02-2004, 02:17 AM
PungoSpell hack is now available:

https://vborg.vbsupport.ru/showthread.php?t=65737

It has a better WYSIWYG display, with no tags shown.

Enjoy.

msimplay
06-04-2004, 08:20 PM
can i just say that all those using my test account for checking the spellchecker please restrict ur posting to the test forums :)

Mont
06-08-2004, 09:10 PM
I added this hack to my forums, but cannot get it to ignore the <P </P tags even though I don't have html enabled on the forums, but did set it to true in the config file. TIA for any help

$Spell_Config['HTML_Tags'] = array('<a','</a','<p','<p','<P','</P','<img','</img','<b','</b','<center','</center','<i','</i','<u','</u','<list','</list','<font','</font');

tamarian
06-09-2004, 10:59 PM
I don't have html enabled on the forums, but did set it to true in the config file.
Disable HTML in the config file. This should get rid of most of the tags, except <br>, which you can disable through the ignore option.

Mont
06-10-2004, 12:27 PM
any advice on getting rid of the <P></P> tags?

http://2coolfishing.net/screenshot.jpg

// -------------------------------------------
// BBCode Tags
// -------------------------------------------
$Spell_Config['BBCODE_Tags'] =

array('[b','[/b','[p','[/p','[P','[/P','[url','[/url',array('[img','[/img]'),'[i','[/i','[color',

'[/color','[size','[/size','[u','[/u','[list','[/list',array('[quote','[/quote]'),array('[code','

'));[/code]

ethics
06-24-2004, 04:55 PM
Fantastic hack, sir!

raptor260
06-28-2004, 04:48 PM
Here is something to chew on. I tried to install the spell checker program, but in my error.log If get this message.

[Mon Jun 28 10:28:18 2004] [error] PHP Warning: main(../config.php): failed to open stream: No such file or directory in /usr/home/domains/byuboyz.com/www/htdocs/forums/spelling/spell_config.php on line 197
[Mon Jun 28 10:28:18 2004] [error] PHP Warning: main(): Failed opening '../config.php' for inclusion (include_path='.:/usr/local/lib/php') in /usr/home/domains/byuboyz.com/www/htdocs/forums/spelling/spell_config.php on line 197.

In the web page I get this error message,

You need to fill in the Database Information in the Spelling Configuration File.

Where is this file called config.php.

ethics
06-28-2004, 04:55 PM
Here is something to chew on. I tried to install the spell checker program, but in my error.log If get this message.

[Mon Jun 28 10:28:18 2004] [error] PHP Warning: main(../config.php): failed to open stream: No such file or directory in /usr/home/domains/byuboyz.com/www/htdocs/forums/spelling/spell_config.php on line 197
[Mon Jun 28 10:28:18 2004] [error] PHP Warning: main(): Failed opening '../config.php' for inclusion (include_path='.:/usr/local/lib/php') in /usr/home/domains/byuboyz.com/www/htdocs/forums/spelling/spell_config.php on line 197.

In the web page I get this error message,

You need to fill in the Database Information in the Spelling Configuration File.

Where is this file called config.php.
Sometimes, you have to use your noggin!!! ;)

The config file is spell_config.php or something like that.

raptor260
06-28-2004, 06:00 PM
Not to a smart AS$ but if you look in the spell_config.php on line 197 it refers to ../config.php. Where is that file located. It does not live in the forums directory nor does it live in the root of my website.

tamarian
06-28-2004, 06:09 PM
Not to a smart AS$ but if you look in the spell_config.php on line 197 it refers to ../config.php. Where is that file located. It does not live in the forums directory nor does it live in the root of my website.
config.php is part of vBulletin. So if you don't have it at the root of your forum directory, then your setup may not be what it should, or too customized....

ethics
06-28-2004, 06:18 PM
Not to a smart AS$ but if you look in the spell_config.php on line 197 it refers to ../config.php. Where is that file located. It does not live in the forums directory nor does it live in the root of my website.
my spell_config goes up to line 173. Not sure where you are looking but that's the only config file I've had to edit in order for this hack to work.

tamarian
06-28-2004, 06:32 PM
my spell_config goes up to line 173. Not sure where you are looking but that's the only config file I've had to edit in order for this hack to work. Hmm, I didn't notice the line number, but it gives me a clue....

Raptor: Did you install the original PHPSpell code from their site? That won't work... You need to download the hack files from the first post, as it contains the code changes to make it work for vBulletin in both editing modes.

The original code only works for standard mode, and it contains the config error you listed :)

Ngreth Thergn
06-28-2004, 08:16 PM
I have installed this on two boards, using cut and paste.

For some reason, on one of my boards the spellcheck buttons will not apear, despite doing the same cut and paste.

the boards are http://mboards.eqtraders.com/eq (spellcheck button apears) and http://mboards.eqtraders.com/eq2 (spellcheck button will not apear)

Or am I missing an easy Vbulletin switch?

tamarian
06-28-2004, 08:25 PM
I have installed this on two boards, using cut and paste.

For some reason, on one of my boards the spellcheck buttons will not apear, despite doing the same cut and paste.

the boards are http://mboards.eqtraders.com/eq (spellcheck button apears) and http://mboards.eqtraders.com/eq2 (spellcheck button will not apear)

Or am I missing an easy Vbulletin switch?
Double check your cut and paste.

The buttons are plain HTML. If they don't appear, then you have not updated the template correctly. I can't think of any other reason.

Ngreth Thergn
06-29-2004, 02:42 PM
I did have a mistake... (the script tag was bellow head not above head) but it still does not work, even with clean fix. I do have Hack Traking Log on that board and not the other... I wonder if that is it...

teksigns
06-29-2004, 03:05 PM
Learn do not work when word contains

's at the end

like it's

kall
07-06-2004, 12:51 AM
Is this compatible with Firefox 0.9?

I have installed it, and it works marvellously with explorer, but the SpellCheck button doesn't open a new window on Firefox.

Yes, I do have popups enabled for the domain. :)

tamarian
07-06-2004, 01:24 AM
Is this compatible with Firefox 0.9?

I have installed it, and it works marvellously with explorer, but the SpellCheck button doesn't open a new window on Firefox.

Yes, I do have popups enabled for the domain. :)
I'm using FireFox 0.9 with no problems...... Is JavaScript enables?

romeshomey
07-12-2004, 04:13 PM
The only question I have is, in the showthread_quickreply I do not have a </head> tag

I do have a </thead> tag though, is that where I need to make the modification?

romeshomey
07-12-2004, 04:21 PM
Yea that worked. Awsome hack.. Thank you!

Flow Fusion
07-15-2004, 05:34 AM
Great hack now how do I add this to the quick reply box?

kall
07-18-2004, 06:24 AM
I'm using FireFox 0.9 with no problems...... Is JavaScript enables?
Yes it is.

I'm getting these errors:

LinkToField has no properties
and
moz_rclick is not defined

Any suggestions?

ESCal
07-25-2004, 12:27 PM
Is it possible to remove the Learn feature?

TosaInu
08-08-2004, 09:05 PM
Hello tamarian,

Very useful, thanks for making this.

Would it be possible to make it an option for usergroups? Seems a more server intensive feature and I like to have some control over this when performance is hurt too much by this and other hacks.

tamarian
08-08-2004, 10:48 PM
Would it be possible to make it an option for usergroups? Seems a more server intensive feature and I like to have some control over this when performance is hurt too much by this and other hacks.
This can be easily done through template conditionals. Like surrounding the spellcheck button code with something like this:

<if condition="$bbuserinfo[usergroupid] == 2">
.....spellcheck template code....
</if>

apokphp
08-08-2004, 11:55 PM
My only concern with this, is that anyone could have the spellchecker "learn" any misspelling they want.

dndog
08-09-2004, 04:25 AM
<if condition="$bbuserinfo[usergroupid] == 2">
.....spellcheck template code....
</if>


How could you allow 2 or more usergroups to the conditional?

Thanks.

tamarian
08-09-2004, 01:20 PM
How could you allow 2 or more usergroups to the conditional?

Thanks. <if condition="$bbuserinfo[usergroupid] == 2 OR $bbuserinfo[usergroupid] == 26">

And just keep adding AND.... for additional groups.

TosaInu
08-09-2004, 03:53 PM
<if condition="$bbuserinfo[usergroupid] == 2 AND $bbuserinfo[usergroupid] == 26">

And just keep adding AND.... for additional groups.
Thanks Tamarian,

That is or for different users, right? And only allows users who belong to both groups at the same time?

My preference would be to use another user setting for this (no need to make huge if and or statements). For example right to post polls. Or perhaps an extra custom switch in membergroups, solely used to unlock special candy.

Holidazed
08-10-2004, 01:01 AM
News: I will shortly release another spell checker hack, based on PungoSpell (http://sourceforge.net/projects/pungo-spell/) which will support standard and WYSIWYG modes, and displays WYSIWYG in the popup windows without the tags.

One draw back to PungoSpell, is that it will require you to have PSPELL compiled into PHP. Some have this by default, but some don't. Another draw back is the lack of the "learn" button.

I initially worked on it and had it tested, but decided to use PHPSpell for the added features. . But since I modified it already, I'll just clean it and release it, so those who prefer full WYSIWYG display can use it.

Stay tuned.
Well, I do not have the necessary requirements to make this hack work. I would love to have the PHPSpell just not show the html coding at all and not spellcheck it either.

tamarian
08-10-2004, 02:18 AM
Thanks Tamarian,

That is or for different users, right? And only allows users who belong to both groups at the same time?

My preference would be to use another user setting for this (no need to make huge if and or statements). For example right to post polls. Or perhaps an extra custom switch in membergroups, solely used to unlock special candy.
Yes, it should be OR not AND. I'll correct my post :)

The hack could be extended further to set permissions in the admin panel, but it would require PHP code changes. The way it is right, only template changes are required.

Rich
08-10-2004, 09:57 PM
Hello,
There is obviously a way to remove the "learn" button so members can't use it. My question is,where is it located? If we can remove the learn button,our problems are solved. I only want my admins to be able to add words to the dictionary opposed to members. Exactly how would I do this,and still leave the availability of use with the members?

the wiz
08-11-2004, 01:51 PM
Awesome hack, but is there a way I can make this for certain user groups only?

neroflorida
08-12-2004, 06:24 PM
Hello,
There is obviously a way to remove the "learn" button so members can't use it. My question is,where is it located? If we can remove the learn button,our problems are solved. I only want my admins to be able to add words to the dictionary opposed to members. Exactly how would I do this,and still leave the availability of use with the members?

Learn Button issue requires that you modify:
spellmessage.js
spelling.js

spellmessage.js Line 63 Opens the included file: phpSpell.html
Suggested workarounds: Use conditionals to pass additional information to the function openspell Have this handed off to the next script spelling.js

spelling.js Line 448 inserts the infamous "Learn" button. Determine whether you would like to have it shown based on the argument passed through from spellmessage.js.

An alternate would be to create a vB template instead of using an external html file... ;)

neroflorida
08-12-2004, 06:37 PM
HTML issue in wysiwyg mode:

Sugggestion to fix...

In spellcheck.php;

function Scan_Document (Lines 273 - 326): Pass arguments lcased or if using following suggestion, use eregi

function Clean_Document (Lines 356 - 397): Use Regular Expressions instead of strpos to allow for attributes in elements (i.e. <p margin="x">) - even better yet just ignore anything between "<" and {">", "/>"}

the wiz
08-14-2004, 04:42 PM
So is there I can make this only for certain usergoups?

kall
08-15-2004, 05:09 AM
So is there I can make this only for certain usergoups?
Have you read this thread at all?



This can be easily done through template conditionals. Like surrounding the spellcheck button code with something like this:

<if condition="$bbuserinfo[usergroupid] == 2">
.....spellcheck template code....
</if>

the wiz
08-15-2004, 01:09 PM
Sorry, I made a mistake and missed that post. You don't have to be rude about it.

Milorad
08-17-2004, 03:01 AM
I've installed this hack onto my board, but have noticed that when I used my opera browser to view the board the spellcheck buttons don't do anything. Is this compatible with Opera? Is there a fix or something I have checked wrong in Opera (Java is enabled)?

David G. Rigg
08-17-2004, 08:09 PM
Installing ENGLISH.DIC (English)...
Unable to create dictionary database table: Code: 1226
Message: User 'ladyelle_admin' has exceeded the 'max_questions' resource (current value: 50000)Result: Link: Resource id #5
DB: ladyelle_forum User: ladyelle_admin Server: localhostUnable to perform spell check at this time. :ermm:

Crashes everytime at 12% during the dictionary words import. Had the ISP raise my limit from 10k to 50k. Obviously not enough. How much should I ask for? They claim 50k is to prevent abuse????

TIA

DR

Craigr
08-19-2004, 05:10 PM
Great hack now how do I add this to the quick reply box?

Open template: showthread

Find:
</head>

Add Above:
<script language='javascript' src='spelling/spellmessage.js'></script>


Save

Open template: showthread_quickreply

Find:
<input type="submit" class="button" value="$vbphrase[go_advanced]" accesskey="x" title="(Alt + X)" name="preview" tabindex="3" id="qr_preview" onclick="this.form.clickedelm.value = this.value" />

Add Below:
<if condition="DOTOOLBAR!=2">
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
</if>

Craig

dsmcd01
09-02-2004, 08:50 PM
Very nice. Tweaked the phpSpell window to remove Learn (at my managers' request) and changed the "All" buttons to "Correct All" and "Ignore All" and so had to also increase their width and the table's width. Also removed "Suggest" since I was never able to get anything meaningful out of it.

Clicked install. I thank you, and my users thank you. (Well, my users aren't actually thanking you, but they would if they could. :rolleyes: )

Thx,
D.

PS...In IE, the gap between the Preview button and the Spellcheck button is wider than the gap between the Submit button and the Preview button. (See attached image.). This extra gap is caused by: <input type="hidden" name="toolbar" value="1" /> To get the two gaps the same I added this between the Submit button and the Preview button: <input type="hidden" name="foobar" value="null" />
Odd that IE would adjust the display for a hidden object. Firefox and Opera do not do this.

FWIW,
D.

speedracer68
09-04-2004, 07:27 PM
Please see my diagnotics.

http://66.70.234.198/forum/spelling/spell_diags.php

Any thoughts?

welo
09-04-2004, 09:14 PM
Methinks your directory path is set incorrectly. Grab the attached file and upload it to the directory where your files are, then point your browser to it (yoursite.com/forum/spelling/dirpath.php) and see what it says.

speedracer68
09-04-2004, 09:32 PM
Thanks! Here is what is says

Server Path: /home/virtual/site3/fst/var/www/html/forum/spelling/
HTTP Path: http://66.70.234.198/forum/spelling

welo
09-04-2004, 10:57 PM
Hmm. Have you uncommented line 37 of spell_config.php? It must say:

$Spell_Config['DB_Type'] = 'vBulletin';
(with no preceding //)


Also uncertain why your spell_config.php file has 197 lines. I only see 170.

dsmcd01
09-06-2004, 05:02 PM
I was playing around this weekend, trying to get the Learn button to appear only for specific users.

It was easy enough to get the userid to the openspell function in spellmessage.js by adding $bbuserinfo[userid] to the template code, but I can't seem to get the userid from there to spelling.js where it'd do some good.

No big deal, and I understand I'm using the hack and phpSpell in a non-standard way. But, has anyone gotten this to work?

TIA,
D.

speedracer68
09-09-2004, 06:54 PM
Welo, I think I removed the comments. I have attatched my config file if you or anybody could look at it.

Thanks!!

p.s. The buttons show up in the edit box but it does not work.

rex_b
09-16-2004, 07:35 PM
installed. works nicely.

speedracer68
09-16-2004, 07:44 PM
installed. works nicely.
Rex, looks like you got it working? I'm still stuck. Any chance you might have an idea what I have done wrong?

Thanks!

NJTackle
09-29-2004, 12:40 AM
Running v3.0.3 and getting this error when clicking on SPELLCHECK:

"phpSpell only supports one of the following browsers: Operat 6+, Netscape 6+, Mozilla 1+, Internet Explorer 4+, Safari"

My workstation is Windows XP and Internet Explorer 6. Any ideas why I'm getting this message? I even did a complete fresh install of vBulletin and phpSpell.

Thanks!

OrangeFlea
10-01-2004, 04:35 AM
Got everything installed, templates edited, but whenever members click on the "spell check" button, they get a runtime error. What's going on?

edit: CAN ANYONE HELP????????

voclain
10-03-2004, 10:23 PM
Open template: showthread

Find:
</head>

Add Above:
<script language='javascript' src='spelling/spellmessage.js'></script>


Save

Open template: showthread_quickreply

Find:
<input type="submit" class="button" value="$vbphrase[go_advanced]" accesskey="x" title="(Alt + X)" name="preview" tabindex="3" id="qr_preview" onclick="this.form.clickedelm.value = this.value" />

Add Below:
<if condition="DOTOOLBAR!=2">
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
</if>

Craig
OK...I did EVERYTHING....and every thing works EXCEPT for this????

I cannot get it to work in the QUICK REPLY??? which is set to WYSIWYG...

HELP???? I click the SPELL button...and nothing happens...unlike all the other places...it works????

Thanks...

Kirk

voclain
10-04-2004, 12:49 AM
AS INFORMATION.....

MY problem mentioned above is ONLY related to the WYSIWYG QUICK REPLY box...it works in the STANDARD.

Yours,

Kirk

voclain
10-04-2004, 08:13 PM
OK...I thought this was working??? BUT...it's not???

I just did another test...and when my FORUM is in the WYSIWYG mode...the PHPSPELL pop up box will show up...and actually correct the spelling....

BUT...when it's done, it will NOT transfer it over to the EDITOR????

HELP...

HELP...

HELP?????

Kirk

voclain
10-05-2004, 12:15 AM
OK...this is SO FRUSTRATING?????

IT works in the PM section...but not in the NEWREPLY, NEWTHREAD, and all the other places???

But it will work in the PM section!!! in the WYSIWYG mode???

I have read this thread through 2 times...I SURE WOULD APPRECIATE some help????

Kirk

welo
10-05-2004, 01:47 AM
Paste the contents of your newreply template into a text file and upload it here. I'll take a look.

voclain
10-05-2004, 02:00 AM
Paste the contents of your newreply template into a text file and upload it here. I'll take a look.

HERE YOU GO...I really...really...really appreciate it!!!

Yours,

Kirk

taffy056
10-07-2004, 11:23 PM
Hi,

I have uploaded the spellchecker files, installed it on my server, but I cannot not see the spellchecker when I go to place a new thread etc, I am running VB 3.0.3 I have placed the altered code in the correct places in some of the templates, but the first on this thread doesn't really match exactly.

On the newreply template there are two lots of the following code:

<input type="submit" class="button" name="sbutton" value="$vbphrase[submit_reply]" accesskey="s" tabindex="1" />
<input type="submit" class="button" name="preview" value="$vbphrase[preview_post]" accesskey="p" tabindex="1" />

Do you place this after each of them?

<if condition="DOTOOLBAR!=2">
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
</if>

Also, some of the other templates do not have </head> in the code, where do you place this line of code instead?

<script language='javascript' src='spelling/spellmessage.js'></script>

Thanks in advance,

taffy

welo
10-07-2004, 11:58 PM
Paste the contents of your newreply template into a text file and upload it here. I'll take a look.
HERE YOU GO...I really...really...really appreciate it!!!
Sorry for the delay. Not sure why I wasn't notified of your reply (unless I just deleted it by accident).

I don't see anything wrong with your newreply template, although try removing the first DOTOOLBAR statement. You don't need it there anyway since it won't work for preview. That's basically the only thing different between your template and mine (as far as the spellchecker stuff goes anyway) and it works fine for me.

mcyates
10-09-2004, 09:30 AM
PROBLEM:


<P style="MARGIN: 0px">hello</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">Ho3 are you</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">I'm fine</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">Just testing the spell checker as i'm having a few problems with it</P>


That'swhat appears in the spellcheck box and this is my code in te config file:


// ------------------------------------------------
// HTML Tags. (You need opening & closing versions)
// ------------------------------------------------
$Spell_Config['HTML_Tags'] = array('<P','</P','<p','</p','<a','</a','<img','</img','<b','</b','<center','</center','<i','</i','<u','</u','<list','</list','<font','</font');

// -------------------------------------------
// BBCode Tags
// -------------------------------------------
$Spell_Config['BBCODE_Tags'] = array('[p','[/p','[P','[/P','[b','[/b','[url','[/url',array('[img','[/img]'),'[i','[/i','[color','[/color','[size','[/size','[u','[/u','[list','[/list',array('[quote','[/quote]'),array('[code',''));

[/code]

Why is this happening?

taffy056
10-10-2004, 01:31 PM
Hi,

I have tried numerous times to get this working, and its just not working, what am I doing wrong?

taffy

voclain
10-10-2004, 01:45 PM
Taffy:
GOOD LUCK...I've tried now to get a straight answer for almost a week...ZERO!!!

Kirk

taffy056
10-17-2004, 09:03 AM
Hi,

Still waiting for a reply to the above, does anyone have an idea on how to get this to work?

taffy

voclain
10-18-2004, 06:25 PM
Taffy:

AS INFO...I never got an answer!...so...I started searching...and hooked up with http://www.spellchecker.net They made there system work for me...you do have to pay for there service...but it works GREAT!!!

Kirk

welo
10-18-2004, 06:33 PM
Sorry you guys are having problems but there's really nothing to tell you. I've installed this on three boards and had no issue whatsoever, so I can only assume you installed it incorrectly. If you'd rather pay for a service that does exactly the same thing rather than figure out what you did wrong, fine. Just quit trying to blame people for not helping you when they have no way to.

taffy056
10-19-2004, 07:39 AM
Welo,

Thank you for your very unhelpful reply, I asked for help to fix the situation not for you to tell me I have done something wrong, obviously I have made an error but I like to fix things myself, so I ask questions. I am not blaming people for not helping, I am just waiting for the right person to reply, obviously you are not that person so take your negativity elsewhere.

taffy

welo
10-19-2004, 08:00 AM
Welo, Thank you for your very unhelpful reply... etc.
In the first place, my reply was not necessarily targetting you. Since you went there however, exactly how much help did you expect to get when your basic problem is "It doesn't work and I don't know why"? The atmosphere around here is very DIY, so unless you give us more to go on there isn't a prayer of resolving your issue.

Sorry you're having the trouble you are, but I've already looked at volcain's code in his newreply template and that isn't the problem, and you are having exactly the same issue. Him jumping on here and basically saying this hack (that someone put together out of the goodness of their heart, costs nothing, and works for everyone else) is crap because he can't get it to work, isn't exactly helping your case.

Sorry for the misunderstanding. Good luck.

taffy056
10-19-2004, 08:22 AM
Yes I am sorry I am having problems also, but I am new at this, so the solutions I find here and implement myself means that I learn something that I did not know before, I have given all the info I can in my previous posts (80 & 83), so unless someone asks for something more specific that maybe I am unaware of, how can I post it here?

I am not saying it does not work, I just would like to learn enough so I can get it to work myself (with help from here of course:)), I know I will get it to work eventually, but I would rather sooner than later.

My apologies for snapping like that on my last post.

taffy

taffy056
10-19-2004, 02:21 PM
Hi,

Just managed to install this hack (thank heavens), it all works apart from 2 things I can't seem to get it to work with PMs, I have added the code in USERCP_SHELL, am I missing something here? Also, when you do the spell check on words they do not change the words in the post. Actually I am not sure if it is supposed to do that?

taffy

taffy056
10-19-2004, 04:34 PM
The above only happens in wysiwyg, not in the standard editor

attroll
10-20-2004, 03:42 AM
I went to msimplay's web site and tested this and was not to impressed. I typed a small message and then clicked on SPELL CHECK. I expected the document to be copied over into the spell check area. I did not realize that you were going to have to cut and past it into the spell checker. If I am going to have to do this why not just do the same thing using a word processor?

msimplay
10-20-2004, 06:07 AM
I went to msimplay's web site and tested this and was not to impressed. I typed a small message and then clicked on SPELL CHECK. I expected the document to be copied over into the spell check area. I did not realize that you were going to have to cut and past it into the spell checker. If I am going to have to do this why not just do the same thing using a word processor?

thats what i did to compensate for the fact that phpspell seems to show the html when searching use the standard toolbar and u will see what phpspell is like

on my site wyziwyg and standard toolbar users get two different versions of the spell checker until i can find a way for spell checking to work with wyziwyg editor correctly

although it has already been discussed in earlier posts

attroll
10-20-2004, 02:08 PM
thats what i did to compensate for the fact that phpspell seems to show the html when searching use the standard toolbar and u will see what phpspell is like

on my site wyziwyg and standard toolbar users get two different versions of the spell checker until i can find a way for spell checking to work with wyziwyg editor correctly

although it has already been discussed in earlier posts


Thank you for the clarification. I would really like to install this hack. But I have a lot of users and it would confuse some users with html coding being put in the spell checker. So I will hold off until this can be fixed, if it ever does.

babolo
10-20-2004, 11:30 PM
I get this error with vb3.03 and i think it has to do with this hack i installed

Database error in vBulletin 3.0.3:

Invalid SQL:
### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO vb3_forum
(title, description, forumhomeicon, link, displayorder, daysprune, parentid, newpostemail, newthreademail, styleid, password, options)
VALUES
('Sports', '', '', '', '1', '30', '-1', '', '', '0', '', '89799')
mysql error: Unknown column 'forumhomeicon' in 'field list'

mysql error number: 1054

Date: Wednesday 20th of October 2004 07:09:06 PM
Script: http://www.real-life-teens.net/admincp/forum.php
Referer: http://www.real-life-teens.net/admincp/forum.php?do=add
Username: Brandon
IP Address: 4.*****

Zachery
10-21-2004, 02:00 AM
I get this error with vb3.03 and i think it has to do with this hack i installed

Database error in vBulletin 3.0.3:

Invalid SQL:
### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO vb3_forum
(title, description, forumhomeicon, link, displayorder, daysprune, parentid, newpostemail, newthreademail, styleid, password, options)
VALUES
('Sports', '', '', '', '1', '30', '-1', '', '', '0', '', '89799')
mysql error: Unknown column 'forumhomeicon' in 'field list'

mysql error number: 1054

Date: Wednesday 20th of October 2004 07:09:06 PM
Script: http://www.real-life-teens.net/admincp/forum.php
Referer: http://www.real-life-teens.net/admincp/forum.php?do=add
Username: Brandon
IP Address: 4.*****
Not from this hack.

babolo
10-21-2004, 02:18 AM
are u sure becuase this was the last hack i installed

dsmcd01
10-21-2004, 12:57 PM
bump...

I was playing around this weekend, trying to get the Learn button to appear only for specific users.

It was easy enough to get the userid to the openspell function in spellmessage.js by adding $bbuserinfo[userid] to the template code, but I can't seem to get the userid from there to spelling.js where it'd do some good.

No big deal, and I understand I'm using the hack and phpSpell in a non-standard way. But, has anyone gotten this to work?

TIA,
D.
Just curious. Any suggestions?
:)

Lionel
10-22-2004, 02:50 AM
Wondering... looks like the spellchecker is stripping all the texts when sending emails out to subscribers. I kept on getting a bunch of emails no subject no message when someone was replying to a post, I removed the spellchecker and situation corrected.

TwinsForMe
11-01-2004, 07:08 PM
Installed. Thanks. :)

DavidatMPA
12-01-2004, 04:11 AM
PROBLEM:


<P style="MARGIN: 0px">hello</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">Ho3 are you</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">I'm fine</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">Just testing the spell checker as i'm having a few problems with it</P>


That'swhat appears in the spellcheck box and this is my code in te config file:

[code]
// ------------------------------------------------
// HTML Tags. (You need opening & closing versions)
// ------------------------------------------------
$Spell_Config['HTML_Tags'] = array('<P','</P','<p','</p','<a','</a','<img','</img','<b','</b','<center','</center','<i','</i','<u','</u','<list','</list','<font','</font');

// -------------------------------------------
// BBCode Tags
// -------------------------------------------
$Spell_Config['BBCODE_Tags'] = array('[p','[/p','[P','[/P','[b','[/b','[url','[/url',array('[img','[/img]'),'[i','[/i','[color','[/color','[size','[/size','[u','[/u','[list','[/list',array('[quote',''),array(''));



Why is this happening?[/QUOTE]


Same thing here! Any ideas guys?
Thanks! great hack

BigCheeze
12-02-2004, 12:38 AM
Sweet. Installed and running. Thanks!

cinq
12-15-2004, 02:14 PM
Learn Button issue requires that you modify:
spellmessage.js
spelling.js

spellmessage.js Line 63 Opens the included file: phpSpell.html
Suggested workarounds: Use conditionals to pass additional information to the function openspell Have this handed off to the next script spelling.js

spelling.js Line 448 inserts the infamous "Learn" button. Determine whether you would like to have it shown based on the argument passed through from spellmessage.js.

An alternate would be to create a vB template instead of using an external html file... ;)

Any step by step instructions for this to remove the Learn ( and perhaps suggest ) feature as well to make this perfect ?

JohnBee
12-19-2004, 01:08 PM
I installed this hack, it works okay but is there any solution to the <P> and </P>
tags yet?

There are two spelling hacks for vB 3 thus far, one has a tag issue and the other
requires a php module many don't have :(

I'm hoping someone could get this one to ignore <tags> so I could call it a day

cinq
12-28-2004, 04:43 AM
any help (https://vborg.vbsupport.ru/showpost.php?p=582629&postcount=104) here ? :)

agiacosa
12-30-2004, 06:26 PM
Is there any way to limit spell checker to a specific usergroup?

Thanks.

tamarian
12-30-2004, 10:51 PM
In this example, usergroups 2 and 26 can see the spell button:
<if condition="$bbuserinfo[usergroupid] == 2 OR $bbuserinfo[usergroupid] == 26">
<if condition="DOTOOLBAR!=2">
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
</if>
</if>

agiacosa
01-02-2005, 11:27 AM
Thank you, but where does that code go?

T3MEDIA
01-03-2005, 06:56 AM
Question... for me I HAVE to have WYSIWYG mode on or I get a javascript error and the poor thing never pops up. BUT if its in WYSIWYG mode all is well... whats up with that? obviouslly I made a error. but where and howcome it fixes itself with this change?!?

Coyote75
01-18-2005, 04:04 PM
:tired: ok I am an idiot and need help

im getting this

Warning: main(../config.php): failed to open stream: No such file or directory in /home/hardcore/public_html/spelling/spell_config.php on line 197

Warning: main(../config.php): failed to open stream: No such file or directory in /home/hardcore/public_html/spelling/spell_config.php on line 197

Warning: main(): Failed opening '../config.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hardcore/public_html/spelling/spell_config.php on line 197
You need to fill in the Database Information in the Spelling Configuration File.

i understand filling in db info but confuised at it as well can someone walk me thru it ?

Morgalis
01-28-2005, 02:02 AM
Not sure what I am missing to get the full colour changed in the 4 .css files

What am I missing to get rid of the blue?

PolyMarauder
02-02-2005, 01:46 PM
lol ok laugh at me Im a confused Noob. ;)

Im actaully trying to install phpspell and I can't figure out something so since you all have it installed I am sure someone can help me out.

in the instructions is says to Change the Spell_Config["DB_Type"] to "vBulletin"

So should it look like this?
$db = mysql_pconnect($vBulletin['DB_Host'], $vBulletin['DB_Username'], $vBulletin['DB_Password']);

A voice in my head says no... :nervous:

agiacosa
02-06-2005, 12:10 AM
When using WYSIWYG mode in vB3 3.0.5, it shows you the html code and tries to spell check it. Is there any way to get it to ignore code?

Paul M
02-06-2005, 01:07 AM
When using WYSIWYG mode in vB3 3.0.5, it shows you the html code and tries to spell check it. Is there any way to get it to ignore code?You mean like it says in the first line of the hack description .....
Intro: PHPSpell uses a MySQL based disctionary and requires no additional tools than your standard PHP/MySQL setup. One draw back to this hack is that while it works with vBulletin in WYSIWYG mode, the popup window will still display html and vBCode tags. But the advantages are numerous, such as the "learn" capability and the admin tool.

Spinball
02-10-2005, 08:59 PM
Not sure what I am missing to get the full colour changed in the 4 .css files

What am I missing to get rid of the blue?

edit spellcheck.php, search for
----------
echo '<body bgcolor="#1F7FB0" onload="parent.Run_Spellchecker();">';
----------
and replace it with
----------
echo '<body onload="parent.Run_Spellchecker();">';
----------

Greebo
02-15-2005, 02:44 PM
I'm also trying to get this to remove the html tags like P and EM and the like in the wysiwyg editor and having no luck.

Has anyone got a WYSIWYG solution to this somewhere we can tap into?

I'd love to integrate this hack - Pungo isn't an option (no pspell on my host) so its this or...well or I dunno what - but I can't have these tags showing. :(

sv1cec
02-22-2005, 05:41 AM
I was playing around this weekend, trying to get the Learn button to appear only for specific users.

It was easy enough to get the userid to the openspell function in spellmessage.js by adding $bbuserinfo[userid] to the template code, but I can't seem to get the userid from there to spelling.js where it'd do some good.

No big deal, and I understand I'm using the hack and phpSpell in a non-standard way. But, has anyone gotten this to work?

TIA,
D.
I would appreciate if you could share with us your progress on this issue. I have no Java programming experience, so I am at a total loss trying to alter those .js scripts, and I would like to have the learn button appear for a certain usergroup. Unfortunatelly, I have no idea how to pass the $bbuserinfo['usergroupid'] to the js files.

Any idea would be really appreciated.

Rgds

sv1cec
03-01-2005, 04:24 AM
Bump,

Has anyone done anything with the Learn button? I need that feature because there are some very specific words than are usually ... used in our Forums and which are missing from the dictionary, but I can't leave the feature open to all users.

Any help would be appreciated.

lefthome
03-09-2005, 11:04 AM
I would like to install this hack. Currently I am using vb 3.06 and will upgrade to vb3.07 this weekend. Does this hack work in vb3.07?

sv1cec
03-09-2005, 11:18 AM
I would like to install this hack. Currently I am using vb 3.06 and will upgrade to vb3.07 this weekend. Does this hack work in vb3.07?
It does, if you do not mind the known problems. I can live with the tags issue, but I had to totally remove the Learn button, since no one seems to have any idea on how to disable it for certain usergroups only.

Rgds

DeMiNe0
03-10-2005, 08:26 PM
Hi,

I have tried numerous times to get this working, and its just not working, what am I doing wrong?

taffy

in these templates there are 2 places for the submit and preview button. Put the Spell check button ONLY AFTER THE FIRST 1.

that will fix it.

TosaInu
03-10-2005, 10:16 PM
I'm running this with 3.07 now, but same for 3.03. SpellCheck works with WYSIWYG but fails to paste the corrected text like it does with the normal display.

gregsbaby64
03-27-2005, 04:23 PM
Thanks for this great hack! I just installed it on my 3.0.7 board. I had to disable the WYSIWYG display and it works perfectly in the normal and advanced display. :)

Snake
04-08-2005, 02:42 PM
Does anyone has this mod installed 'cause I would like to see a live demo!

Lionel
04-08-2005, 06:10 PM
<a href="http://www.master-technology.com/demos/spell/index.php" target="_blank">http://www.master-technology.com/demos/spell/index.php</a>

Lionel
04-08-2005, 10:35 PM
How do you make it support two languages?

Snake
04-09-2005, 10:59 AM
Thanks for the link Lionel, I'm gonna install it right now! :D

Lionel
04-09-2005, 01:22 PM
It works great for me in all editors. You just have to define the html tags to ignore in config.

Snake
04-09-2005, 02:03 PM
It works great for me in all editors. You just have to define the html tags to ignore in config.

And how do I do that? lol

Lionel
04-09-2005, 02:04 PM
Have you tried to open the file?

Snake
04-09-2005, 02:07 PM
LOL I will now... :D

charlesk
05-09-2005, 10:31 PM
This hack is great but I am having one problem -- the learn feature doesn't seem to work. Anyone have any tips on what might cause it to not function? It just "forgets" learned words. Thanks. --c

WEForums
05-15-2005, 06:06 PM
I assume this hack is quite intense on the server, right? So it wouldn't be good for a larger board?

Just making sure.

tamarian
05-15-2005, 08:44 PM
This hack is great but I am having one problem -- the learn feature doesn't seem to work. Anyone have any tips on what might cause it to not function? It just "forgets" learned words. Thanks. --c

The "Learn" function is a bit tricky. It does not add learned words to the dictionary table, it adds a user's own learned words to their cookies. So when the words are "forgotten", it's either due to the user clearing their cookies, or disabling cookies.

tamarian
05-15-2005, 08:51 PM
I assume this hack is quite intense on the server, right? So it wouldn't be good for a larger board?

Just making sure.

I'm not sure. The disctionary is about 10 megs, but well indexed and uses soundex.

WEForums
05-17-2005, 07:13 PM
Anyone running it on a forum with hundreds online, over at least 1 million posts?

NJTackle
05-24-2005, 11:12 PM
I am getting this error message (see below) when I click on 'spellcheck'. When I run the diagnostics file things seem fine. I am running MS IE 6 with the latest patch. phpSpell is installed on vb3 3.0.6. Even tried from various machines with Netscape just to get same error message. I searched and read this thread numerous times for anything close to this but nothing. Any help would be appreciated as I am about bald trying to troubleshoot this....



-------------
phpSpell only supports one of the following browsers:
Opera 6+, Netscape 6+, Mozilla 1+, Internet Explorer 4+, Safari
-------------

tamarian
05-25-2005, 12:32 PM
I am getting this error message (see below) when I click on 'spellcheck'. When I run the diagnostics file things seem fine. I am running MS IE 6 with the latest patch. phpSpell is installed on vb3 3.0.6. Even tried from various machines with Netscape just to get same error message. I searched and read this thread numerous times for anything close to this but nothing. Any help would be appreciated as I am about bald trying to troubleshoot this....



-------------
phpSpell only supports one of the following browsers:
Opera 6+, Netscape 6+, Mozilla 1+, Internet Explorer 4+, Safari
-------------

Maybe you have some privacy/ad blocking tool that blocks your browser agent?

tamarian
05-25-2005, 12:37 PM
It does, if you do not mind the known problems. I can live with the tags issue, but I had to totally remove the Learn button, since no one seems to have any idea on how to disable it for certain usergroups only.

If the concern is with someone flooding the dictionary with bogus words, you shouldn't worry about that. The "learn" function simply adds those words to the user's own cookies, not the database.

Aeolian_X
06-14-2005, 07:16 PM
This is an awesome tool. I love it, and most of my members love it.

The only problem I'm having with it is the Quick Reply does not work when using an IE browser. This does work fine when using Netscape or Firefox. All other templates seem to work fine in IE as well. Just Quick Reply is having a problem. It doesn't seem to do anything when you click on the button. I've checked all of my settings, and turned off all pop up and ad blockers, but still no luck. Any ideas?

tamarian
06-14-2005, 08:15 PM
This is an awesome tool. I love it, and most of my members love it.

The only problem I'm having with it is the Quick Reply does not work when using an IE browser. This does work fine when using Netscape or Firefox. All other templates seem to work fine in IE as well. Just Quick Reply is having a problem. It doesn't seem to do anything when you click on the button. I've checked all of my settings, and turned off all pop up and ad blockers, but still no luck. Any ideas?


What sort of template changes do you use to run it in quick reply? Paste them here so I can try them out. And does IE fail in both standard and WYSIWYG modes?

yoyoyoyo
06-14-2005, 08:30 PM
I just got around to installing this and it works great. Thanks for sharing!

cutetxblonde
07-07-2005, 09:14 PM
I am having this exact issue as well. No issues in diagnostic, and I followed the instructions as best as I could- but not sure how to fix this. Can someone pop some ideas please?

MUCH appreciated!

PROBLEM:


<P style="MARGIN: 0px">hello</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">Ho3 are you</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">I'm fine</P>
<P style="MARGIN: 0px">&nbsp;</P>
<P style="MARGIN: 0px">Just testing the spell checker as i'm having a few problems with it</P>


That'swhat appears in the spellcheck box and this is my code in te config file:


// ------------------------------------------------
// HTML Tags. (You need opening & closing versions)
// ------------------------------------------------
$Spell_Config['HTML_Tags'] = array('<P','</P','<p','</p','<a','</a','<img','</img','<b','</b','<center','</center','<i','</i','<u','</u','<list','</list','<font','</font');

// -------------------------------------------
// BBCode Tags
// -------------------------------------------
$Spell_Config['BBCODE_Tags'] = array('[p','[/p','[P','[/P','[b','[/b','[url','[/url',array('[img','[/img]'),'[i','[/i','[color','[/color','[size','[/size','[u','[/u','[list','[/list',array(''),array('[code',''));

[/code]

Why is this happening?

tamarian
07-07-2005, 09:27 PM
I am having this exact issue as well. No issues in diagnostic, and I followed the instructions as best as I could- but not sure how to fix this. Can someone pop some ideas please?

Looks like a tag config issue.

BUT, there will be a new spell checker tool released today ot tomorrow, stay tuned :)

cutetxblonde
07-08-2005, 11:40 AM
Looks like a tag config issue.

BUT, there will be a new spell checker tool released today ot tomorrow, stay tuned :)
Thank you :) I look forward to the new release :)

tamarian
07-09-2005, 12:45 AM
For those of you who wanted a better WYSIWYG spell checker, you might want to check vB Spell, which still uses MySQL, but has better support for browsers and WYSIWYG look without the tags:

https://vborg.vbsupport.ru/showthread.php?threadid=91850

King Kovifor
10-19-2005, 07:03 PM
How do I add different languages?

Specifically French.

tamarian
10-19-2005, 08:12 PM
How do I add different languages?

Specifically French.

Install the French disctionary: http://www.master-technology.com/demos/spell/download.php

King Kovifor
10-19-2005, 10:46 PM
Yeah but the ACP installtion doesn't recognize it, and it needs a spell_French.php file.

tamarian
10-19-2005, 10:51 PM
Yeah but the ACP installtion doesn't recognize it, and it needs a spell_French.php file.

I haven't used or looked at this hack for a long while. If the instructions at phpSpell site don't work, let me know and I'll take a look.

King Kovifor
10-20-2005, 10:09 PM
OK I Figured out why, my hack needs some editing... :P And Doesn't int need a spell_french.php just like it has a spell_english.php?

tamarian
10-20-2005, 10:25 PM
OK I Figured out why, my hack needs some editing... :P And Doesn't int need a spell_french.php just like it has a spell_english.php?

Not sure, but I don't think so. The language specific files are for languages requiring specific string processing. Give the French word list a try and see how it goes.

King Kovifor
10-21-2005, 10:48 PM
Not sure, but I don't think so. The language specific files are for languages requiring specific string processing. Give the French word list a try and see how it goes.
Installed and it's noticing mistakes.... that aren't mistakes.

Also, I'm planning on porting over all my hacks... and if this one isn't done by the time I do it, I'm going to take it on (no rush, I'm willing and get bored easily, so it's something to do) and than finish my hacks.

tamarian
10-21-2005, 10:57 PM
Installed and it's noticing mistakes.... that aren't mistakes.

Like what?

King Kovifor
10-22-2005, 01:57 PM
This:

Ce qui vous signifient... Catégorie de C? Nous allons par l'année 1, 2, 3, 4, 5. C'est comment nous des amercians le faisons.

That's correct... and it found 5 mispellings.

tamarian
10-22-2005, 02:14 PM
This:

Ce qui vous signifient... Cat?gorie de C? Nous allons par l'ann?e 1, 2, 3, 4, 5. C'est comment nous des amercians le faisons.

That's correct... and it found 5 mispellings.

Make sure your dictionary table has the correct charset encoding.

King Kovifor
10-22-2005, 05:12 PM
How?

tamarian
10-22-2005, 05:35 PM
How?

Easiest way is the phpMyAdmin, through table operations -> collations. Or through the MySQL command line, can't remember the syntax, but it should be in the only mysql manual.

King Kovifor
10-22-2005, 08:04 PM
I don't have access to any of that... << Can you send me detailed instructions for commTRU?

bada_bing
10-24-2005, 02:55 AM
I have had this spell check working for months now and all the sudden when anyone click the spell check button it launches another page like normal but a blank white page. I now have paying members yelling because it's not working can someone please help me figure this out :tired:

vexiphne
11-05-2005, 02:57 AM
I have configured my spell_config.php file, and uploaded it, but I still get this error :

You need to fill in the Database Information in the Spelling Configuration File

I use vb 3.5.1

tamarian
11-05-2005, 03:03 AM
I have configured my spell_config.php file, and uploaded it, but I still get this error :

You need to fill in the Database Information in the Spelling Configuration File

I use vb 3.5.1

This is for vB 3.0. For 3.5, you might want to try vB Spell.

thewitt
11-05-2005, 11:21 PM
To get this to work with 3.5 you need to edit the spell_config.php file to use vB 3.5 style variables for the database specific items like username, password and database name.

There are more templates to edit however, including editpost and showthread - and probably others.

-t