I have five eCommerce web applications developed in PHP framework Kohana and OSCommerce, the functioning are same for all applications, and also used the same Paypal Credentials for all projects, my problem is that several sites are linked to this one Paypal account and hence I need to know 1. the site where the payment came from, 2, what was the order no and 3. the product details. Please help me, thanks in advance!
Several eCommerce applications are linked to a single paypal account and how to know the payment came from where?
152 views Asked by Abdul Salam At
1
There are 1 answers
Related Questions in PAYPAL
- PayPal v2 invoicing API "INVALID_REQUEST" from incorrect amount fields
- laravel paypal ssl eror, package used srmklive / laravel-paypal
- When a PayPal subscription payment is successful, why do I see two transactions? One is $0, and the other one is a regular payment
- Wrong payment currency with Paypal in WooCommerce
- Storing completed payment information from the new 'Pay link or button' PayPal integration
- Can The HTML for the Pay Link Be Updated?
- Locating Existing APP ID for Adaptive Payments in PayPal Business Account
- How to Store PayPal Subscription ID in MongoDB After Payment?
- PayPal login integration refresh_token
- Title: Dynamically Adding Total Amount to PayPal Payment Button from Booking Webpage
- How can I send money to someone else's bank account linked to Paypal using Paypal API?
- PayPal Express Checkout - get PII / billing information from the PayPal account on payment
- Credit card fields showing under PayPal Express Checkout
- Error using PayPal subscription with Multiple Subscription buttons
- Simple Paypal button integration results in 404 error
Related Questions in KOHANA
- Kohana - HTTP Tests
- Kohana combine orm factories
- Integrate Cognito with exisiting users table
- Problems with old system title tag using Kohana
- kohana 3.2.3.1 route not working when controller is in a sub folder
- How to use INSTR with Kohana ORM?
- "Unable to find a route to match the URI: xxxxx/index.php"
- How do I add an admin page with Kohana?
- Problems with kohana and HTTPS
- Creating a PHP server with Apache and Kohana
- Kohana more than one dynamic routing for specific urls
- How to make when user click back button, will be appear document expired
- the process running the php script does not end with long-term execution
- Kohana Route using wrong pattern for URL/subject
- How to pass data from Kohana controller to JQuery?
Related Questions in OSCOMMERCE
- My php project has file which I never create and it keep growing what could I do?
- New PayPal api certificate not confirming payment
- OsCommerce Cart Becomes Empty When Trying to Login
- Payment declined, please check with your bank or use a different card
- Upgrade v2.2 to v2.3.4.1 after getting Admin Error in Oscommerce
- Mixed content error on my website after redirecting to HTTPS
- No article number in osCommerce?
- How to display data by using url in oscommerce
- How to solve Oscommerce, Warning: sizeof(): Parameter must be an array or an object that implements Countable
- Globally Replace Old School $PHP_SELF with $SERVER['PHP_SELF'] using sed
- Oscoomerce tep_create_random_value($length, 'digits'); function not working
- Trying to add recaptcha v2 to oscommerce contact us page
- How to fix 'Uncaught Error: Call to undefined method' in PHP
- PHP OScommerce trying to select mysql db getting parameter error
- Realex payment gateway after successfully payment not return Merchant website
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?
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)
I don't think there is a way to see from what site it came from on paypal. I just looked up if it was possible to create multiple paypal credential and in paypal see from what credential it was made, But it doesn't look like there is that kind of filters
So at this point what I would do at your place, would be to create a order number code for everywebsite, Lets say an order on stackOverflow would be #so5215 And then on superuser #su5126
If your using
REST APIyou can sendinvoice_numberwith your call and it would show up on PayPalIf on the other hand your using
NVP/SOAP APIyou can sendPAYMENTREQUEST_n_INVNUMwhen you callSetExpressCheckoutNote that
PAYMENTREQUEST_n_INVNUMthenis representing the number of the transaction that it is for, Normaly websites cart only use 1 and its zero based.