Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases

Reply
 
Thread Tools
Details »»

Version: , by exodus exodus is offline
Developer Last Online: Jan 2022 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 01-03-2002 Last Update: Never Installs: 6
 
No support by the author.

I was searching for a replacement spell checker for use on my forums since spellchecker.net charges $150 for 10,000 uses. I found something called XDE Spellcheck, it's a nifty little applet.


Installation is quite simple..

First, you will need to modify the directories of where the applet code is on your server (the bold section in the code). Then add the code below to your style footer:
Code:
<!-- spell checking -->
<applet codebase="/spellchecker"
        code="net.xde.SpellChecker.SpellCheck.class"
        archive="xdespellchecker.jar, usenglish.jar"
        height="1"
        name="spellcheck"
        width="1"
        alt="Applet Not Supported"
>

<param name="name" value="spellcheck">
<param name="scriptable" value="true">
<param name="mayscript" value="true">
</applet>

<script language="JavaScript" src="/spellchecker/spellcheckcode.js"></script>
<!-- /spell checking -->
Second, add the following input button wherever you want to spell check a textbox called "message" within the "vbforum"

Then add the following wherever you want to spell check a textbox called "message" within form "vbform".
Code:
<input type="button" class="bginput" name="spell" value="Spell Check" accesskey="c" tabindex="5" onClick="SpellCheckFieldsLocal();">
In order for the spell checker to work you will need to download the vbSpell.zip and install it into a directory called spellchecker in your forum home.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 01-09-2002, 05:10 AM
Freddie Bingham's Avatar
Freddie Bingham Freddie Bingham is offline
 
Join Date: Oct 2001
Posts: 506
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You would most likely have to purchase a spellcheck license from them at the greatly reduced price. We haven't discussed this yet though so I am just throwing things out.
Reply With Quote
  #23  
Old 01-09-2002, 05:15 PM
Glitch Glitch is offline
 
Join Date: Dec 2001
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, whatever you folks decide, from what I understand, he's made the offer and has not given me any information further than that which I've already forwarded to everyone here...

Having an optional integrated spellchecker for v3.0 would be very cool though...

Glitch
Reply With Quote
  #24  
Old 01-09-2002, 09:51 PM
Parker Clack Parker Clack is offline
 
Join Date: Oct 2001
Posts: 351
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Exodus:

Yes, I understand what you are saying. I have it listed in /htforum/spellechecker and I still get the javascript error. So...

I wish someone would come up with something that uses the aspell libraries that come with PHP4.

Parker
Reply With Quote
  #25  
Old 01-10-2002, 02:08 AM
Psychdrone Psychdrone is offline
 
Join Date: Nov 2001
Posts: 525
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

wow that is totaly wierd guys HA I have free service!

Wicked

all I have to say is HAHA
naw j/k
but good luck on getting a new spell checker everyone!
Reply With Quote
  #26  
Old 01-16-2002, 02:29 PM
Stretchr's Avatar
Stretchr Stretchr is offline
 
Join Date: Dec 2001
Location: Georgia, USA
Posts: 84
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I concur. Can anyone who knows more about PHP than I do (not difficult to imagine )
comment on this idea?

Thanks!

Quote:
Originally posted by Parker Clack
Exodus:

Yes, I understand what you are saying. I have it listed in /htforum/spellechecker and I still get the javascript error. So...

I wish someone would come up with something that uses the aspell libraries that come with PHP4.

Parker
Reply With Quote
  #27  
Old 02-16-2002, 09:10 PM
SgtSling SgtSling is offline
 
Join Date: Oct 2001
Posts: 156
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

so did this work for anyone?
Reply With Quote
  #28  
Old 02-18-2002, 01:18 PM
Parker Clack Parker Clack is offline
 
Join Date: Oct 2001
Posts: 351
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I posted a .cgi version of a Spellcheck that uses aspell with PHP4
here a while ago. If someone could mod this out to PHP and then set the correct paths/functions in the newthread, newreply and edit templates then this would work great.

Parker
Reply With Quote
  #29  
Old 03-01-2002, 02:28 AM
neal neal is offline
 
Join Date: Feb 2002
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by exodus
I was searching for a replacement spell checker for use on my forums since spellchecker.net charges $150 for 10,000 uses. I found something called XDE Spellcheck, it's a nifty little applet.


Installation is quite simple..

First, you will need to modify the directories of where the applet code is on your server (the bold section in the code). Then add the code below to your style footer:
Code:
<!-- spell checking -->
<applet codebase="/spellchecker"
        code="net.xde.SpellChecker.SpellCheck.class"
        archive="xdespellchecker.jar, usenglish.jar"
        height="1"
        name="spellcheck"
        width="1"
        alt="Applet Not Supported"
>

<param name="name" value="spellcheck">
<param name="scriptable" value="true">
<param name="mayscript" value="true">
</applet>

<script language="JavaScript" src="/spellchecker/spellcheckcode.js"></script>
<!-- /spell checking -->
Second, add the following input button wherever you want to spell check a textbox called "message" within the "vbforum"

Then add the following wherever you want to spell check a textbox called "message" within form "vbform".
Code:
<input type="button" class="bginput" name="spell" value="Spell Check" accesskey="c" tabindex="5" onClick="SpellCheckFieldsLocal();">
In order for the spell checker to work you will need to download the vbSpell.zip and install it into a directory called spellchecker in your forum home.
Where is step 2!?
Reply With Quote
  #30  
Old 03-03-2002, 02:20 AM
neal neal is offline
 
Join Date: Feb 2002
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bump
Reply With Quote
  #31  
Old 03-04-2002, 09:39 PM
cditty's Avatar
cditty cditty is offline
 
Join Date: Oct 2001
Location: Memphis TN
Posts: 159
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get a file not found error when I try to download your vbSpell.zip file. The other link you provide does not have this file in it.

Chris
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:49 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06403 seconds
  • Memory Usage 2,305KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (4)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete