• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: data not stored after submission

data not stored after submission 15 years 3 months ago #6433

  • getaweb
  • getaweb's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi

I have a form with a script to in the script called on form process with the following code
$merchant = $_POST['form']['merchant'];
$orderid = $_POST['form']['orderid'];
$currency = $_POST['form']['currency'];
$lang = $_POST['form']['lang'];
$amount = $_POST['form']['amount'];
$accepturl = $_POST['form']['accepturl'];
$cancelurl = $_POST['form']['cancelurl'];
$test = $_POST['form']['testid'];
header('Location:https://payment.architrade.com/payment/start.pml?merchant='.$merchant.'&orderid='.$orderid.'&currency='.$currency.'&amount='.$amount.'lang='.$lang.'&accepturl='.$accepturl.'&cancelurl='.$accepturl.'&test='.$test);
exit();
 

The problem is date submitted is not being stored in the database... in the Manage submissions form, i did not see any data?

any help would be appreciated?
The administrator has disabled public write access.

Re:data not stored after submission 15 years 3 months ago #6479

I'm having the same problem.

Did you upgrade from the free version? I did... I wonder if that has something to do with it?
The administrator has disabled public write access.

Re:data not stored after submission 13 years 7 months ago #11534

You had used:
exit();
Just remove it
The administrator has disabled public write access.

Re:data not stored after submission 13 years 7 months ago #11557

  • andreic
  • andreic's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 733
  • Thank you received: 60
Hello,

The exit(); statement is necessary in order for the redirect to be made, please try moving the script from "Scripts called on form process" to "Scripts called after form has been processed".
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!