Zen Cart Logo
Forums / Addon Payment Modules / Stripe.com payment integration module

Stripe.com payment integration module

Views: 233,165

Results 461 to 480 of 679
30 Dec 2024, 3:51 AM
#461
gozzandes avatar

gozzandes

Zen Follower

Join Date:
Jul 2021
Location:
Fukuoka Japan
Posts:
131
Plugin Contributions:
0

Stripe.com payment integration module

Sql code is

TRUNCATE `zenen_stripe `;
30 Dec 2024, 6:04 AM
#462
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

Gozzandes:

Sql code is

TRUNCATE zenen_stripe ;


Hello Gozzandes, thank you for helping. I am having an issue trying to get this code to take. I am sending via the "Install SQL Patches" located in the "Tools" tab. I assume this is the correct location to add this?
I keep getting thes message: 
WARNING: An Error occurred, please let us know! If you were entering information, press the BAo must be doing something wrong...CK button in your browser and re-check the information you had entered to be sure you entered valid data.

I must be doing something wrong...
30 Dec 2024, 7:29 AM
#463
gozzandes avatar

gozzandes

Zen Follower

Join Date:
Jul 2021
Location:
Fukuoka Japan
Posts:
131
Plugin Contributions:
0

Re: Stripe.com payment integration module

BigB:

Hello Gozzandes, thank you for helping. I am having an issue trying to get this code to take. I am sending via the "Install SQL Patches" located in the "Tools" tab. I assume this is the correct location to add this?
I keep getting thes message:
WARNING: An Error occurred, please let us know! If you were entering information, press the BAo must be doing something wrong...CK button in your browser and re-check the information you had entered to be sure you entered valid data.

I must be doing something wrong...

'xxxx670_zenc936.zenen_stripe' doesn't exist.
Split63 pointed out.
www/includes/modules/payment/stirpe.php line215
from

  $db-> execute("DROP TABLE IF EXISTS " . DB_PREFIX  . "stripe ;"); 

to

  $db-> execute("DROP TABLE IF EXISTS " . DB_PREFIX . "stripe ;"); 

once uninstall the module in the admin page and rewrite the php file.
and install the module.

You can Download stripe_modules_218https://github.com/Gozzandes/stripe_modules_218

30 Dec 2024, 10:46 AM
#464
heathenmagic avatar

heathenmagic

Totally Zenned

Join Date:
May 2005
Location:
England
Posts:
730
Plugin Contributions:
0

Re: Stripe.com payment integration module

I just wondered if Stripe is okay to use? It has so many bad reviews, mainly money being frozen for no reason and unable to withdraw. I did try Square and got through the validation procedure, but they suddenly stopped my account for no reason. Luckily no payment processing activated at that time, and no response to emails. So a bit wary, so using paypal and a credit card processing company which is fine, the Klarna and other options in Stripe does seem appealing however.

30 Dec 2024, 1:18 PM
#465
shop_suey avatar

shop_suey

Zen Follower

Join Date:
Feb 2014
Location:
Germany
Posts:
375
Plugin Contributions:
0

Re: Stripe.com payment integration module

I myself don't use stripe or braintree but you should know that PayPal has had this "money being frozen" thing too (or even still has).

30 Dec 2024, 6:32 PM
#466
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

Gozzandes:

'xxxx670_zenc936.zenen_stripe' doesn't exist.
Split63 pointed out.
www/includes/modules/payment/stirpe.php line215
from

$db-> execute("DROP TABLE IF EXISTS " . DB_PREFIX . "stripe ;");

> to
> ```
  $db-> execute("DROP TABLE IF EXISTS " . DB_PREFIX . "stripe ;"); 

once uninstall the module in the admin page and rewrite the php file.
and install the module.

You can Download stripe_modules_218https://github.com/Gozzandes/stripe_modules_218

This seems to have fixed the problem. I appreciate your help in this matter.
I was able to make it through all stages of the checkout process in Stripe's test mode. I'll try a few more orders just to make sure the change sticks.
One thing that seems odd... there's no feilds to enter the faux CC #... it simply says Stripe Payment: Credit Card but there is no feilds to input the dummy info... Is this normal for stripe in test mode or is there something else I should address before moving further? Thanks

30 Dec 2024, 8:58 PM
#467
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

Here's a screenshot of what I mean... I'm still in "Test Mode" and Stripe is not providing any feilds to input Credit Card info. This can't be correct. I'm thinking there should be a radio button (or something similar) to select that would then provide fields to input the CC info?

31 Dec 2024, 1:38 AM
#468
gozzandes avatar

gozzandes

Zen Follower

Join Date:
Jul 2021
Location:
Fukuoka Japan
Posts:
131
Plugin Contributions:
0

Re: Stripe.com payment integration module

BigB:

This seems to have fixed the problem. I appreciate your help in this matter.
I was able to make it through all stages of the checkout process in Stripe's test mode. I'll try a few more orders just to make sure the change sticks.
One thing that seems odd... there's no feilds to enter the faux CC #... it simply says Stripe Payment: Credit Card but there is no feilds to input the dummy info... Is this normal for stripe in test mode or is there something else I should address before moving further? Thanks

API Key and Test API Key is switched by Stripe test mode.
Test Mode = Test mode API Key
Credit card number :4242424242424242
MM/YY :After today for example 01/25
Security code : Random 3 numbers

Attachment 20833

31 Dec 2024, 1:47 AM
#469
gozzandes avatar

gozzandes

Zen Follower

Join Date:
Jul 2021
Location:
Fukuoka Japan
Posts:
131
Plugin Contributions:
0

Re: Stripe.com payment integration module

BigB:

Here's a screenshot of what I mean... I'm still in "Test Mode" and Stripe is not providing any feilds to input Credit Card info. This can't be correct. I'm thinking there should be a radio button (or something similar) to select that would then provide fields to input the CC info?

Copy the following folder and paste it to \includes\templates\responsive_classic folder.
Stripe_module_zc158\www\includes\templates\YOUR_TEMPLATE

I recommend to download the following module and upgrade.
github.com/stripe_module_218

31 Dec 2024, 1:56 AM
#470
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

Gozzandes:

Copy the following folder and paste it to \includes\templates\responsive_classic folder.
Stripe_module_zc158\www\includes\templates\YOUR_TEMPLATE

I recommend to download the following module and upgrade.
github.com/stripe_module_218

OK. I'll give it a try, thanks

31 Dec 2024, 2:10 AM
#471
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

Gozzandes:

Copy the following folder and paste it to \includes\templates\responsive_classic folder.
Stripe_module_zc158\www\includes\templates\YOUR_TEMPLATE

I recommend to download the following module and upgrade.
github.com/stripe_module_218

My apologies for needing more direction with this whole thing. This is all new to me so I must ask questions...
When I go to the link... am I supposed to click on the green "CODE" button and download the zip file... unpack it and FTP it over to my Zen Cart install to "Upgrade" this module? I did download the latest version of this here at the Zen Cart website but, maybe I'm not using the latest version by doing this... this is a bit confusiong for me.

31 Dec 2024, 2:41 AM
#472
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

BigB:

My apologies for needing more direction with this whole thing. This is all new to me so I must ask questions...
When I go to the link... am I supposed to click on the green "CODE" button and download the zip file... unpack it and FTP it over to my Zen Cart install to "Upgrade" this module? I did download the latest version of this here at the Zen Cart website but, maybe I'm not using the latest version by doing this... this is a bit confusiong for me.

I have the stripe_module_zc201 version installed on a Zen Cart 2.1.0 website... should I have the stripe_module_zc158 installed instead? Did I install an older outdated version of the module by using stripe_module_zc201?

31 Dec 2024, 2:47 AM
#473
gozzandes avatar

gozzandes

Zen Follower

Join Date:
Jul 2021
Location:
Fukuoka Japan
Posts:
131
Plugin Contributions:
0

Re: Stripe.com payment integration module

BigB:

My apologies for needing more direction with this whole thing. This is all new to me so I must ask questions...
When I go to the link... am I supposed to click on the green "CODE" button and download the zip file... unpack it and FTP it over to my Zen Cart install to "Upgrade" this module? I did download the latest version of this here at the Zen Cart website but, maybe I'm not using the latest version by doing this... this is a bit confusiong for me.

OK
You should copy following 3 files and paste it to your local disk.
The files are backup.
includes\checkout.js
includes\templates\YOUR_TEMPLATE\templates\tpl_checkout_confirmation_default.php
includes\modules\payment\stripe.php

and upload the above three files in the stripe-module_218 folder via FTP.
If it doesn't work, just overwrite the backup.

31 Dec 2024, 2:51 AM
#474
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

Gozzandes:

OK
You should copy following 3 files and paste it to your local disk.
The files are backup.
includes\checkout.js
includes\templates\YOUR_TEMPLATE\templates\tpl_checkout_confirmation_default.php
includes\modules\payment\stripe.php

and upload the above three files in the stripe-module_218 folder via FTP.
If it doesn't work, just overwrite the backup.

Ok... I'll give it a go... thank you

31 Dec 2024, 7:50 PM
#475
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Stripe.com payment integration module

Zen: 1.5.7c

I had a customer claim the following today:
*
"Trying to pay with cash app and it's not launching the app"*

We have received a few Cash App payments in the past, but not many. Not sure if this is a real problem or not. I have never used Cash App.

31 Dec 2024, 9:22 PM
#476
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Stripe.com payment integration module

There does appear to be a problem cash app.
Here is the Strip checkout with an apparently configuration issue:

Attachment 20836

31 Dec 2024, 9:39 PM
#477
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Stripe.com payment integration module

split63:

There does appear to be a problem cash app.
Here is the Strip checkout with an apparently configuration issue:

Attachment 20836

This appears to be related to commenting out line 39 of includes\checkout.js

1 Jan 2025, 8:02 AM
#478
gozzandes avatar

gozzandes

Zen Follower

Join Date:
Jul 2021
Location:
Fukuoka Japan
Posts:
131
Plugin Contributions:
0

Re: Stripe.com payment integration module

split63:

This appears to be related to commenting out line 39 of includes\checkout.js

I know the reason of the problem and I am fixing the module.
In the case of PayPal, etc., this problem occurred because create.php is reloaded to redirect to the confirmation screen after the payment was completed.

But I resolved the problems.
and Now I'm checking.

Following files are fixed.
It may be fine.

  1. checkout.js
  2. includes\modules\pages\checkout_payment\javascript_stripe.php
  3. includes\modules\payment\stripe.php
  4. includes\templates\responsive_classic\templates\tpl_checkout_confirmation_default.php

But today is 2025 new Year-day.
Could you wait 2days or 3days?

1 Jan 2025, 4:45 PM
#479
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Stripe.com payment integration module

Gozzandes:

I know the reason of the problem and I am fixing the module.

But today is 2025 new Year-day.
Could you wait 2days or 3days?

I restored line 39 to get Cash App to work. Which means I'm now exposed to the duplicate order issue. But at least its working...and I will just keep checking for duplicates until you are ready. Take your time.

1 Jan 2025, 8:00 PM
#480
bigb avatar

bigb

New Zenner

Join Date:
Jun 2024
Posts:
91
Plugin Contributions:
0

Re: Stripe.com payment integration module

Gozzandes:

OK
You should copy following 3 files and paste it to your local disk.
The files are backup.
includes\checkout.js
includes\templates\YOUR_TEMPLATE\templates\tpl_checkout_confirmation_default.php
includes\modules\payment\stripe.php

and upload the above three files in the stripe-module_218 folder via FTP.
If it doesn't work, just overwrite the backup.

I have tried this.. unfortunately I'm still experiencing the same issue... there are no feilds showing to enter CC info during checkout. I have the site in "Test Mode" and my Stripe account is in Test Mode... the Stripe API test keys are entered in the module correctly.

I have the** stripe_module_zc201** version installed on a Zen Cart 2.1.0 website.
Not sure what to do. Any other suggestions?