I am trying to set it so that I can validate an email with the following
regexp:
// Make an attempt to validate an email layout
if(!preg_match("/([.*-\w])@+([.-\w])+\.+([.-\w])/", $e_)){
$error = "Not a valid email address";
}
Now thi
So far looks good but:
- Themes is empty (IE 6.0 on WinXP Pro) and changing it in the .pref file
manually does nothing (../themes/deepocean2_theme.php)
- NS6.2 for linux is not formatting HTML properly (if at all)
Server is RH 7.3, apache 1.3.23-14, php 4.1.2-7.3.6
Will report more as it comes.
U need to make sure your sendmail is running:
telnet localhost 25
If you are using sm on the same box as the smtp server is running, you
should keep it as 127.0.0.1 or localhost
By default redhat like to make sendmail only accessible by 127.0.0.1
-J
> Hello, I'm new to this mailing list.
>
> I