Hi Team,
Apparantly Stipe integration will stop working after 14 Sep due to SCA regulations. Got following email from Stripe.
What is the impact on Asp Zero?
We wanted to remind you about required changes to your Stripe integration. Upcoming industry-wide regulation will require Strong Customer Authentication (SCA) on many European payments starting 14 September. Unless you take action, payments that aren't authenticated may be declined by your customers' banks.
Our information shows your business will be impacted by SCA, and that you still need to make changes to your Stripe integration to get ready for these new requirements. As this change may require additional software development, we strongly recommend that you start updating your integration as soon as possible.
Visit the Dashboard to plan and start implementing the changes you'll need to make before 14 September._
Hi,
Stripe is recommending to limit the number of Event types.
Can you please advice on the Event types that AspZero relies on?
Regards, Vikas
Hi,
I have published the public website and app on Azure successfully. Both seems to have the same IP.
I want to link both to a single root domain - domain.com
Do you have any guide on how to do this?
I have mapped the public website to domain, however not sure how to map the mvc application.
Regards, Vikas
Hi,
I have enabled stripe integration. My app is in Azure App service.
I was successfully able to upgrade the Tenant from Subscriptions after using dummy credit card.
However, in Stripe, the webhooks show as pending.
My webhook URL is like this - https://apname/Stripe/WebHooks
I am using v6.7 with ASP MVC jQuery and followed this guide
Is the Webhook path correct?
Regards, Vikas
Hi,
I am using v6.7 ASP MVC + JQuery.
I am trying to create a feature as per this documentation.
https://aspnetboilerplate.com/Pages/Documents/Feature-Management#other-feature-properties
context.Create(
AppFeatures.SampleSelectionFeature,
defaultValue: "B",
displayName: L("Sample selection feature"),
inputType: new ComboboxInputType(
new StaticLocalizableComboboxItemSource(
new LocalizableComboboxItem("A", L("Selection A")),
new LocalizableComboboxItem("B", L("Selection B")),
new LocalizableComboboxItem("C", L("Selection C"))
)
)
);
This appears in the list of the available features when setting up and Edition.
However, after setting up the editions; this does not appear in the Upgrade page.
Please advice.
Regards, Vikas
Hi,
I have configured Twilio as per this guidance for asn .net Core MVC + jquery
https://docs.aspnetzero.com/documents/zero/latest/Development-Guide-Core#twilio-integration
I have also configured the appsetting.json and enabled SMS 2 factor in Host.
I am using AspZero v6.7
However, during login I only get GoogleAuthenticator and Email options in dropdown.
Is this a known issue?
Regards, Vikas
Hi,
I am using AspZero 6.5 - asp .net Core MC = jquery.
How can I change the Currency code and Symbol to GBP/£?
Also, how can I display the date in Uk format as dd/mm/yyyy ?
Is there a setting somewhere as the change in Const file does not seem to work.
Regards, Vikas
Hi Guys,
I have enabled Hangfire in my project.
I also setup a job as per below. https://aspnetboilerplate.com/Pages/Documents/Background-Jobs-And-Workers#background-workers
The job is working fine, however, I cant see logs anywhere. Its not visible in Hangfire UI.
Is there anything else that needs to be done?
Regards, Vikas
Hi,
I have coded a new integration. I want to store the url and secrets etc in the appsettings.json.
Is there a class available to retrive the setting in code? Any pointers/examples will be much appreciated.
Cheers, Vikas
Hi Guys,
I have a situation where I am making several update transactions to Db.
I am fetching an Odata refresh token and saving to db table. However, if any error happens down the line, I am throwing a Userfriendly exception.
In this case, DB update is rolled back.
Is it possible to ovverride a particular db update to avoid rollback?
Regards, Vikas