Questions tagged [recurring]

For events or data that occur more than once. Use `recursion` for functions that call themselves.

317 questions
0
votes
2 answers

Designing a Subscription system

I'm designing a subscription framework for my application. The subscription is based on "credits". Each month, any subscribed user will receive x amount of credits depending on their plan. They will receive the credits upon payment for that month's…
Jason
  • 15,064
  • 15
  • 65
  • 105
0
votes
2 answers

Removing duplicate digit from string (i.e. make 660 = 60)

I have a vb.net project on Soundex. For those who don't know, Soundex takes your inputted word and exports it to a letter and numbers. For example: Word: Carrot Output: C663 I'm tasked with removing the second digit if they're directly next to each…
user9421447
0
votes
1 answer

Find a repeated character in a string (python)

I managed to find this code online which showed me how to find and print a repeated character in a string. I'm confused as to how it's working though. I don't understand what the h[i] = 0 part is technically doing. Can someone please explain? a =…
Ben Hutton
  • 77
  • 5
0
votes
2 answers

Misused database view (SQL Server) - how to optimize

I need some advice on how to optimize a SQL query, since I am not an expert in SQL. A customer of mine has some SQL code that runs on SQL Server, and they want it to run faster. It used to run fast, but now it does not. The query is using the same…
T.H.P.
  • 3
  • 2
0
votes
1 answer

Paypal recurring payment but not monthly

I want to build a website where the buyer subscribes to my product, that's not monthy but quarterly. I have two questions: Is it possible to set up a quarterly payment, so that the user subscribes but gets charged every three months? Is it possible…
angelod1as
  • 95
  • 1
  • 11
0
votes
2 answers

Woocommerce Subscription Renewal Issues

I have a question regarding Woocommerce Subscriptions recurring payment. I need to know what the plugin means when it says to charge every 2nd week. Thank you so much in advance.
user8756001
  • 31
  • 1
  • 2
0
votes
1 answer

Paypal Pre-aapproved Payments with Laravel and handle recuring payments later

My Scenario I am trying to allow user to add paypal payment methods on my webiste (in Laravel) so later he can use the added payment methods to make payment. right now i am using the https://github.com/srmklive/laravel-paypal to handle the recurring…
guarv
  • 1
  • 1
0
votes
1 answer

Odoo 8 - create automatically open invoice

We're working on Odoo 8, enjoying this app. We'd like to create open invoice automatically for every customer. We create contracts and it works well, but we still have to click on "generate invoice" and it creates draft invoice. To those two issues,…
0
votes
1 answer

Can we skip the validation of receiver_email in IPN handler?

We have recurring payment feature in our project with option to enter merchant(business account) email details. we are using HTML form(Not recurring button code) to submit the details to PayPal. In the IPN handler code, doing following validations…
Mythily
  • 11
  • 1
0
votes
0 answers

Adding recurring payments to Paypal on an existing website coded in PHP?

I'm not really familiar with PHP. I've been asked to add a recurring payment option to an already existing website that charges subscriptions to a magazine. Looking at the code I found this section: $paypal = new Paypal('en'); …
0
votes
1 answer

Eway recurring issue with activemerchant gem in Rails

I am trying to setup EWay payment integration with Active-merchant Gem in Rails application. I setup successfully EWay but when tried to Recurring at that time got issue below: undefined method `recurring' for…
0
votes
1 answer

paypal recurring payment - how to create recurring profile without expresscheckout?

I need to create one agreement with user where user need to pay amount for example "75$" (it will dynamic) . User create recurring profile with one time in the future.
Viren Patel
  • 43
  • 1
  • 7
0
votes
2 answers

google calendar API repeat timezones

Im trying to insert a repeat event using this wrapper: https://github.com/spatie/laravel-google-calendar Having noproblems with dates, but date+time involves timezones I keep getting this error: (400) Missing time zone definition for start time. [ …
cardi777
  • 563
  • 2
  • 9
  • 22
0
votes
1 answer

Dataset in timeseries - finding closely related patterns

I have a (large) dataset with discrete data. These discrete data represent the output of Energy compared to Time. (kW - Time) These energy usage patterns represent different machines in a household. (Oven, microwave, heating, cooking…
aze45sq6d
  • 876
  • 3
  • 11
  • 26
0
votes
2 answers

generate a list of increasing elements

I am trying to write a section of a larger program which will generate a list of random integers. the first randomly generated list should have X elements, and then generate another list of random integers with X + Y elements, and so on,…
Chief
  • 11
  • 4