they are all Linux box's. going to try this one in this location in the script:
<?php
error_reporting(E_ALL ^ E_NOTICE); // Report all errors except E_NOTICE warnings
ini_set('display_errors', 1); // turn error reporting on
//ini_set('log_errors', 1); // log errors
//ini_set('error_log', dirname(__FILE__) . '/error_log.txt'); // where to log errors
/*
NOAA Top Weather Advisory Alerter PHP Script by Mike Challis
More Info -
www.642weather.com/weather/scripts-noaa-top-weather-alerter.phpDownload -
www.642weather.com/weather/scripts/noaa-top-weather-alerter.zipLive Demo -
www.642weather.com/weather/rss-weather-alerter.phpFree PHP Scripts -
www.642weather.com/weather/scripts.phpContact Mike -
www.642weather.com/weather/contact_us.phpDonate:
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2319642// Mail Settings
// OPTIONAL: You can change the default SMTP settings below...
// NOTE most servers do not need these settings changed!!!
$ctf_ini_set = "yes"; // "yes" to enable this feature (ONLY if needed)
$ctf_smtp = "localhost"; // sometimes mail.yourdomain.com Confirm with your host
$ctf_smtp_port = "25"; // Confirm with your host
$ctf_smtp_username = "you"; // your mail username. If you do not know, ask your host
$ctf_smtp_password = "123456"; // your mail password. If you do not know, ask your host
$ctf_sendmail_from = "
you@yourdomain.com"; // Your email
$ctf_sendmail_path = "/usr/sbin/sendmail -t -i"; // If different, ask host
if(strtolower($ctf_ini_set) == "yes") {
ini_set("SMTP", $ctf_smtp);
ini_set("smtp_port", $ctf_smtp_port);
ini_set("smtp_password", $ctf_smtp_password);
ini_set("smtp_username", $ctf_smtp_username);
ini_set("sendmail_from", $ctf_sendmail_from);
ini_set("sendmail_path", $ctf_sendmail_path);
}