| Author |
Message |
xGSTQ

Joined: Dec 13, 2005
Posts: 107
|
Posted:
Wed Nov 29, 2006 3:00 pm |
|
I think i have a problem, just decided to test it before going live, and after a transaction it took me to the printable page/purchased product but i never recieved a download link, like the one i got when i purchesed the script from yourselfs.
Its installed on Ravens 7.6 Distro
Thx |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Wed Nov 29, 2006 3:54 pm |
|
Hi, are you testing on your home pc(localhost) or is it on your hosted website? |
| |
|
|
 |
xGSTQ

Joined: Dec 13, 2005
Posts: 107
|
Posted:
Wed Nov 29, 2006 4:06 pm |
|
website, but the site is not live yet ...
Thx for the fast reponce ! |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Wed Nov 29, 2006 4:26 pm |
|
Well the first step would be to make sure the "From Email" is a valid address. Some providers will reject emails from fake ones.
if that doesn't work...
The next step would be to make sure a simple email will send without problems. So make a test.php file and put this code in.
| php: |
<?php
// put your email here
$to = 'nobody@example.com';
// change this to a real email addy to reduce the chance of being rejected
$from = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = "From: " . $from . "\r\n".
"Reply-To: " .$from . "\r\n";
if ( mail($to, $subject, $message, $headers) )
{
echo "mail sent (but doesn't mean it will actually get delivered)";
}
else
{
echo "error";
}
?>
|
Let me know what happens and we'll go from there. |
| |
|
|
 |
xGSTQ

Joined: Dec 13, 2005
Posts: 107
|
Posted:
Wed Nov 29, 2006 4:44 pm |
|
^^ yeah that worked fine. |
| |
|
|
 |
xGSTQ

Joined: Dec 13, 2005
Posts: 107
|
Posted:
Thu Nov 30, 2006 5:56 pm |
|
Just thought i would say cheers !
I found out that beacuse my site was not live (disabled via sentinal) it wouldnt work, however as soon as we tested it in the live mode it worked a treat so thanks very much for your help !
 |
| |
|
|
 |
|
|