What happens when I initiate a transaction to say Citrus, or Ccavenue or PayUmoney or any payment gateways, and the money is deducted on the client side and my server fails the time it was about to receive the response, and on the response I need to update a few columns in the DB for that particular client ? How should it be handled?I use Mysql as the database and Laravel.
Handle payment response if server crashes?
851 Views Asked by Nitish Patra At
1
There are 1 best solutions below
Related Questions in MYSQL
- MySQL Select Rank
- When dealing with databases, does adding a different table when we can use a simple hash a good thing?
- Push mysql database script to server using git
- Why does mysql stop using indexes when date ranges are added to the query?
- Google Maps API Re-size
- store numpy array in mysql
- Whats wrong with this query? Using ands
- MySQL-Auto increment
- show duplicate values subquery mysql
- Java Web Application Query Is Not Working
- microsoft odbc driver manager data source name not found and no default driver specified
- Setting foreign key in phpMyAdmin
- No responses from google places text search api
- Adding to MAMP database in SQL/PHP
- I want to remove certain parent- and child-divs in all my wordpress posts with php or some other script
Related Questions in LARAVEL
- Attempting to bind Guzzle Curl Client to Laravel's Service Container -- then Type Hint the Client Fails when attempting to __construct()
- Can not access the 3rd table in laravel 5 in 3 tables have relationships
- No laravel sync folders in homestead vagrant on windows
- How to use where date(timeline) in Laravel Query Builder
- Laravel Eloquent "Many-to-Many-to-One ?"
- Laravel: Locale Session: Controller gets Parameter to change it but it cant. U have to hardcode it
- Stopping an infinite loop process in vagrant
- Insert multiple rows in Laravel
- laravel full-text search with multiple keywords together
- Laravel : Saving a belongsToMany relationship
- Add a Controller to a Laravel 5 Package
- Laravel. Eloquent query for two tables
- Add readonly attribute in form model binding only when editing in laravel 5
- Laravel firstOrNew how to check if it's first or new?
- How to show variable in view blade.php page using laravel paginator::make
Related Questions in PAYMENT-GATEWAY
- Opencart Payment gateway error after opencart 2.0 upgrade
- taking control back to local from live in a cordova app for android
- add hidden input field to woocommerce checkout to pass data to payment gateway
- Paypal CC Direct Payment error
- Does Stripe allow to give money to customers?
- payment gateway integration with CodeIgniter
- I am losing session data when being redirected from Payment GateWay using java
- WooCommerce REST API v2: How to process payment?
- PayPal first redirect crash, second one redirect the user successfully
- Getting zero(0) in paypal response?
- Woocommerce: Can't use sslv3 anymore? Using wp_remote_post
- Paypal does not return the actual total amount
- How to integrate Alipay with proper steps in iOS
- How do I integrate the ATOM payment gateway in my app?
- How to integrate TEST PayU Payment Gateway in android application?
Related Questions in CCAVENUE
- ccavenue integration in ionic android with php
- How to integrate CCAvenue Payment Gateway Source Code in my Android Project
- CCavenue payment gateway not working magento 1.9
- I Need Ccavenue Redirect url ,Success url , RSAKey url and cancel url for android api
- cc avenue payment gateway not return value in to redirect url
- CCAvenue and Magento
- CCAvenue Transaction - Integration
- CCAvenue Installed but not displayed in Magento
- CCAvenue customization - Help needed
- Regarding CCAvenue integration in iOS
- ccavenue check out without billing information
- Not Getting any transaction page when integrating CCAVENUE Payment Method
- How to enable the UPI payment method in CCAvenue merchant account
- Framework imported properly but still getting _OBJC_CLASS_ compiler error
- How to implement CCavenue payment integration yii framework version 1
Related Questions in CITRUS-PAY
- payment gateway integration with CodeIgniter
- Citrus Payment Gateway Android integration
- Citrus wallet signup api for PHP
- Citrus Payment Gateway integration in Android
- The type or namespace name 'Citrusresponse' could not be found (are you missing a using directive or an assembly reference?
- App is crashing with Message from debugger: Terminated due to signal 6 in citrus pay integration
- Error occur in Citrus Payment Integration
- How to integrate citrus payment gateway in zend?
- Unable to implement CitrusPay SDK for iOS in swift based app
- Issue in setting card type in CitrusPay gateway swift ios
- Citrus Payment Gateway Integration in Android Mobile App
- prevent rails from adding current path url before external js src
- Citrus Payment Redirect Url not working
- How to remove Billing details, Delivery details and Delivery method from opencart 2.1.0.1 version
- Does Citrus Pay provide a REST api?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This could handle by a separate queue service like Laravel Queue(https://laravel.com/docs/5.6/queues)
Also make sure you have an API to check the payment status.Most of the payment gateways are providing API interface to check the payment status.
Payment cycle would be as follows
Queue service should be running as a server process isolated from the client application.So your payment cycle won't be break at any outages/delays(network timeouts,server outages,etc...)