|
sendmail doesn't seem to be installed. Do you know what they are running (Ubuntu, Slackware, CentOS, Windows)? If it's an apt enabled OS ask them to 'sudo apt-get install sendmail' I think you 'YUM sendmail' for YUM enabled OS's. After that ask them to 'sudo /etc/init.d/apache2 restart' to restart the apache2 server (apache is just apache, not sure about other servers) and see if you can get it to work. Also see if turning on errors gives you any information: error_reporting(E_ALL);
__________________
PHP Code:
<?php echo "Hello World"; ?>
HTML Code:
<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>
|