BACKGROUND: We have a perl script (it's a simple script that does a file copy). I want the script to run after a successful checkout.
QUESTION 1: Where would this be placed? (I was looking at the DispatchCommands subroutine within CartManager.pl...??)
QUESTION 2: Would a simple system function work for this? i.e.
Thanks.
Kristin.
QUESTION 1: Where would this be placed? (I was looking at the DispatchCommands subroutine within CartManager.pl...??)
QUESTION 2: Would a simple system function work for this? i.e.
Code:
$status = system("rodney.pl");
Thanks.
Kristin.
Comment