##############################################################
## MOD Title: phpbbspell
## MOD Version: 1.06.1
## Author: Team phpSpell (Ifroggy & Nathan_Anderson)
## Co-Author:  Nightrider
## Description: Spell checker for PHPBB messages!
## Installation Level: easy (Please Use EasyMod)
## Installation Time: 3 Minutes + time for your server to install dictionary
## Files To Edit: 1 
## 		 		   templates/subSilver/posting_body.tpl
## Included Files: 12
## 				   phpSpell.html, 
##				   spell_config.php, 
##				   spellmessage.js,
## 				   spell_admin.php, 
##				   spellcheck.php, 
##				   spelling.js, 
##				   spell_langtemplate.php
## 				   spell_diags.php, 
##				   spell_English.php, 
##				   spell_phpbb.php, 
##				   admin_spellcheck.php
##				   ENGLISH.DIC
##############################################################
## This MOD is released under the GPL License.
## Intellectual Property is retained by the MOD Author(s) listed above
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
## You need to download a dictionary word list before you can install it.
## You should be able to download one from my site.
##
## Installation Instructions (PHPBB):
## ---------------------
## 1. Follow the steps at the bottom of this document for changing each of your templates. (Please use EasyMod)
## 2. Go into Administration and click "Spellcheck" under Forum Admin
## 3. Install any dictionaries you want.  The English.dic dictionary is stored in your spelling folder...
## 4. Delete any file ending with .dic on the server (to free up disk space)
##
## If you are using PHPNuke, follow the instructions in the PHPNuke_Install.txt file!
##
## Alternate Installation Instructions(PHPBB):
## ---------------------
## 1. Edit the Spell_config.php file to change any setting you might want.
## 2. Change the Spell_Config["DB_Type"] to "PHPBB"
## 3. Upload all the files in the "COMMON" directory and the "PHPBB" directory to the server into the forum/spelling directory
##
##  ---- If you are going to use the NATIVE PSPELL support you can skip to step 8 ----
## 4. Upload phpbb/admin/admin_Spellcheck.php to your forum/admin directory.
## 5. Go into Administration and click "Spellcheck" under Forum Admin
## 6. Install any dictionaries you want.
## 7. Delete any file ending with .dic on the server (to free up disk space)
## -----------------------------------------------------------------------------------
## 8. Follow the steps at the bottom of this document for changing each of your templates.
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ COPY ]------------------------------------------
#
copy ENGLISH.DIC to spelling/ENGLISH.DIC
copy common/*.* to spelling/*.*
copy phpbb/*.* to spelling/*.*
copy phpbb/admin/*.* to admin/*.*
#
#-----[ OPEN ]------------------------------------------
#
 templates/subSilver/posting_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<script language="JavaScript" type="text/javascript">
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<script language='javascript' src='spelling/spellmessage.js'></script>
#
#-----[ FIND ]------------------------------------------
#
		  <tr> 
			<td colspan="9"><span class="gen"> 
			  <textarea name="message" rows="15" cols="35" wrap="virtual" style="width:450px" tabindex="3" class="post" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{MESSAGE}</textarea>
			  </span></td>
		  </tr>
#
#-----[ INLINE FIND ]------------------------------------------
#		  
<input type="submit" tabindex="4"
#
#-----[ BEFORE, ADD ]------------------------------------------
#
  <tr><td colspan="9" align="right">
     <input type="button" class="mainoption" value="SpellCheck" name="button" onclick="openspell();">
  </td></tr>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM