help, i am testing the script that i bought but i cant seem to make the deposit work. Heres the scenario i added alertpay as one of the payment processor and i have this options.
Your AlertPay account:
(i have entered my AP email)
Encrypted Security Code:
(i have entered the generated security code from AP)
and then i saved it and go for a try. I made a testing account which has different AP account and tried to deposit there is no problem and it was a successful transaction and so i wait for 15 secs to be redirected to my website but this error occured
"Your Deposit status
We have not received your deposit. Please try again.
Return to index page. "
how come this happen, i am sure that i made a deposit i check the 2 accounts that i have made and look for the transactions, yes there is a payment to transactions and a payment from, so what seems to be the problem?
and 1 more thing i am so confused with this instruction of setting up alertpay payment processor.
Quote:
Your AlertPay account:
Login (E-mail address) to receive deposits. Clear this field to disable AlertPay deposits.
Important to do first:
1. Rename file "alertpay_processing.php" to any name with .php extension. Do not provide this name to any person.
2. Login to your AlerPay account.
3. Click on "Sell Online" link in top menu.
4. Click on "IPN Settings" link on the currently opened page.
5. Check 'Enable IPN' box.
6. Type in 'Default Alert URL' URL to file you just rename in the instruction number 1.
7. Enter some string into 'Security Code' field. No metter what you will enter just try to enter something unique - you should not remember this string. <-? what the hell is this, i cant understand.
8. Push 'Submit' button. Page will reload and you will see 'Encrypted Security Code'. You will receive something like this: <-where to find this?
Encrypted Security Code: XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
9. Copy and paste this string to "Encrypted Security Code" field on this page.<-the security code from alertpay that i entered didnt change.
Try to buy a product to test settings.
|
In addition i have this error, i dont know if its normal or what, but i am seeing this on my payment settings page.
Quote:
|
Warning: escapeshellcmd() has been disabled for security reasons in /home/vol1/myplace.us/mp_2747637/htdocs/inc/admin/pay_settings.inc.php on line 15
|
alright and for more assurance kindly pls. check this code if its correct its the alertpay payment processing script.
Quote:
<?
include 'inc/config.inc.php';
$dbconn = db_open ();
if (!($dbconn))
{
echo 'Cannot connect mysql';
exit ();
}
$alertpay_account = $settings['def_payee_account_alertpay'];
$secret_code = $settings['md5altphrase_alertpay'];
if ($_POST[ap_securitycode] == $secret_code)
{
if ($_POST['ap_status'] == 'Success')
{
$user_id = sprintf ('%d', $frm['apc_1']);
$h_id = sprintf ('%d', $frm['apc_2']);
$compound = sprintf ('%d', $frm['apc_4']);
$amount = $frm['ap_amount'];
$batch = $frm['ap_referencenumber'];
$account = $frm['ap_custemailaddress'];
if ($_POST['apc_3'] == 'checkpayment')
{
if ($exchange_systems[4]['status'] == 1)
{
add_deposit (4, $user_id, $amount, $batch, $account, $h_id, $compound);
header ('Location: ' . $settings['site_url'] . '/processing_status.php?process=yes');
exit ();
}
}
header ('Location: processing_status.php?process=no');
}
}
header ('Location: processing_status.php?process=no');
db_close ($dbconn);
echo 'www.HyipManagerScript.com';
exit ();
?>
|
pls. i need help ...