Gulp! Here is the reply

: if you understand this or know someone who does - let me know and I can pass on the zip files - at least the spell check is easy
Greetz
AB
Andy,
This is the link to the Spell checker:
http://www.master-technology.com/phpbb/
You need the Dictionary and phpSpell.
The email notification is something that I wrote myself. It is tested with MySQL. It might not work with other databases. I assume you are talking about a phpBB forum? Otherwise the SQL queries should be changed to work with other forums.
A description of the usage of the script:
I have hardcoded a few things in the script. Making the script really usable for others would mean some more work. But you could try it.
You should replace the email adressin the script. Now:
email@site.com
Also replace "server.name", "Sitename" and "Site description".
And replace "db_username", "db_password" and "db_name".
Then the users table in the database needs an extra column user_daily_notification. The user table is probably "phpbb_users".
The SQL command is:
ALTER TABLE phpbb_users
ADD user_daily_notification TINYINT(1)
DEFAULT 0;
Then you probably want the users to change in their profile if they want the notification or not. This is some work.
The following files must be chaged:
includes/usercp_register.php
includes/usercp_avatar.php
admin/admin_users.php
languages/lang_english/lang_main.php
templates/subSilver/profile_add_body.tpl
templates/subSilver/admin/user_edit_body.tpl
I have attached those files in phpfiles.zip. If you search for "DAILY" and "daily", you will find the lines that I added or changed.
It is not a good idea to just replace the current files with my files, because there could be other modifications in it.
Maybe it is best to try the script first. Only add the column in the users table and make sure that only the test person has user_daily_notification set to 1 (others: 0).
You can run the script from within the commandline like "php phpBB_daily_notification.php"
When all is working you should run this script daily.
William
-----Original Message-----
From: Andy Boyd
Sent: donderdag 11 september 2003 10:57
To: William van Dieten
Subject: A favour
William- I am a member of another PHP community and they do not have the daily email update we have in the CAF. Could you send me a link where you found the source code for that modification as well as the spell check?
Cheers
Andy Boyd