Hi

I've been having the problem with the eWay paymet module where orders above $1,000 get charged at $1. I've seen some others have had this problem but I couldn't find a solution on the forums here.

So if you have this problem, here's the fix.

Edit /includes/modules/payment/eway.php and find this line:

Code:
$my_totalamount = number_format($order->info['total'], 2) * 100;
and change it to this:

Code:
$my_totalamount = $order->info['total'] * 100;
Now the correct amount will be charged by eWay for orders above $1,000.

regards,
Reuben