IDK if it still works. I made it 2 years ago. List of changes:Hi, I'm looking for someone who can integrate stripe automate to my gesior.
I will check it out! thanks!IDK if it still works. I made it 2 years ago. List of changes:
![]()
Stripe.com payments integration · gesior/Gesior2012@4d12460
Gesior 2012 - Account Maker [website] for OTSes, account maker you can find in BRANCHES. Select 'branch'. - Stripe.com payments integration · gesior/Gesior2012@4d12460github.com
One thing about config ex.:I will check it out! thanks!
$stripe_payments = [
[
'money_amount' => '10.00',
'money_currency' => 'EUR',
'premium_points' => 50,
'name' => '50 premium points on Your OTS',
'price_id' => 'price_XXX123',
],
[
'money_amount' => '20.00',
'money_currency' => 'EUR',
'premium_points' => 100,
'name' => '100 premium points on Your OTS',
'price_id' => 'price_YYY123',
],
];
price_id, not product_id.
it still work, thanks for that.IDK if it still works. I made it 2 years ago. List of changes:
![]()
Stripe.com payments integration · gesior/Gesior2012@4d12460
Gesior 2012 - Account Maker [website] for OTSes, account maker you can find in BRANCHES. Select 'branch'. - Stripe.com payments integration · gesior/Gesior2012@4d12460github.com
What did you configure in acc. maker config?sorry for tagging but you're my only hope since you are creator of it you know the best
[
'money_amount' => '10.00',
'money_currency' => 'EUR',
'premium_points' => 50,
'name' => '50 premium points on Your OTS',
'price_id' => 'price_XXX123',
],
price_id which you can find here in panel:
Yes I got the price_id just like on screenshot. Payment goes through i got like 200 payments completed on stripe.com. After payment is done I get redirected to ?subtopic=shopsystem without points added. But I'm afraid its because I use your branch "TFS-0.3.6_and_0.4_to_rev_3703" from 12 years ago cause my ots is 0.3.6 TFS and I can't use the one that you updated 2 years ago. If I dont fix that my project is dead and I'm really poor polish dude, so I cannot pay a lot for help ;/What did you configure in acc. maker config?
Config requiresCode:[ 'money_amount' => '10.00', 'money_currency' => 'EUR', 'premium_points' => 50, 'name' => '50 premium points on Your OTS', 'price_id' => 'price_XXX123', ],price_idwhich you can find here in panel:
View attachment 87015
Message me on Discord: gesior.plPayment goes through i got like 200 payments completed on stripe.com
Your message could not be delivered. This is usually because you don't share a server with the recipient or the recipient is only accepting direct messages from friends. /// I added you username @tomeczek (blissfuldeath666)Message me on Discord: gesior.pl
$config['stripe'] = [
// 'false' blocks new payments, it will still process old payment reports
'enabled' => true,
'secret_key' => 'sk_test_asdasd123',
'endpoint_secret' => 'whsec_asdasd123',
// defaults should be ok, but you can change
'success_url' => getLink('gifts') . '?success',
'cancel_url' => getLink('gifts') . '?cancel',
'payments' => [
['price' => '10', 'currency' => 'USD', 'points' => '100', 'name' => '100 premium points on Your OTS'],
['price' => '20', 'currency' => 'USD', 'points' => '200', 'name' => '200 premium points on Your OTS'],
['price' => '30', 'currency' => 'USD', 'points' => '300', 'name' => '300 premium points on Your OTS'],
['price' => '40', 'currency' => 'USD', 'points' => '400', 'name' => '400 premium points on Your OTS'],
['price' => '50', 'currency' => 'USD', 'points' => '500', 'name' => '500 premium points on Your OTS'],
],
];