For order over $999 eway will not process correctly

in Catalog>>includes>>modules>>payment>>eway.php

line 153

change : $amount = number_format($order->info['total'], 2)

to: $amount = number_format($order->info['total'], 2,".","");

The thousand "," needs to be replace as eway needs the amount sent in cents the "," drops all numbers when amount is multiplied by 100

ie 1,100 will be 1*100 = 100 = $1
where as 1100 will be 1100*100 = $1100

hope this makes sense....

file rename .txt.zip to .txt

More...