I am unsure as to what may be causing my problem 404 Not Found error. i know the path is there because when i go to the URL i get this error:
And this is the javascript code thats calling json:Code:{"error":"invalid_order"}
Does anyone see an error in the $post? Is the json $post formed correctly?Code:$.post("<?php echo str_ireplace("http://", "https://", URL_P);?>c/gateway", { unique_id:$("#order_id").val(), name_card:$("#name_card").val(), card_num:$("#card_num").val(), ex_date:$("#ex_date").val(), cvv:$("#cvv").val() }, function(data) { if (data && data != null && data["success"] != null && data["orderid"]) { processSuccess(data["orderid"]); } else if (data && data != null && data["error"] != null) { processError(data["error"]); } else { processError('unknown'); } processing = false; }, "json" );
Thanks.


Reply With Quote

Bookmarks