[Pro] PHP Feedback Form not working

Hi,

I use the excellent PHP Feedback Form Action for many of my sites, but have found it is not working on my latest site:

http://www.hopkirks.com/contactphp.html

When the form is filled out and send you are taken to the ‘success page’ but the email never arrives.

I have uploaded the exact same site folder to two other hosting sites of mine and get the email through almost immediately (unix hosting).

The client’s hosting is running PHP 5.2.6 on Windows NT perhaps this is the problem? http://www.hopkirks.com/php-info-test.php

Does anyone have any ideas?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Not sure - cant access your page but it might be because there is no sendmail path configured.

Ask the hosting provider about configuring sendmail

BTW - dont leave that page up there as it is a security risk.

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Ok thanks Dave.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Sly - here is something else you can try -it is a little tip from Walter to check your servers email sending capability. It came from this thread http://freewaytalk.net/thread/view/97305

Walter said

Here’s a test script you can try from this server, and see if it works. Copy the following, paste it into a new text document (use TextEdit in Plain Text mode, or TextWrangler) and save it as a cryptic name, like asdsad8u.php. Use an FTP or SFTP application to place it on your server. Then go to that address in a browser. See if you get an e-mail message. Either way, delete the file so it’s not hanging around on your server.

<?php
$address = 'youraddresshere';
mail(
   $address,
   'Test message from the server',
   'This message was sent from your server',
   "From: {$address}",
   "-f{$address}"
);
print 'Message sent';
?>

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options