Questions tagged [recurring]

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

317 questions
2
votes
1 answer

Allow end user to modify recurring paypal subscription amount

I've read a few responses here regarding the modification of the recurring fee amount but still confused. We have 5 subscriptions levels per month: £10 £15 £20 £30 £50 We want to be able to let customers change their subscription package to any…
2
votes
1 answer

How to test Enhanced Recurring Payments Standard on the new Paypal Sandbox?

I have a test environment for my website that I normally use the Paypal Sandbox on to test transactions before going live. I would like to test the Enhanced Recurring Payments feature, but I can't find the option to do so (the links to add more…
JoshW
  • 25
  • 4
2
votes
3 answers

Grouping the same recurring items that occur in a row from list

For instance, we have a list like this: L = ["item1", "item2", "item3", "item3", "item3", "item1", "item2", "item4", "item4", "item4"] I want to pack them into list of tuples of the form: [("item1", 1), ("item2", 1), ("item3", 3),... ("item1",…
2
votes
1 answer

what are the necessary API calls for ExpressCheckout with recurring payments

My calls flow is as follows: SetExpressCheckout GetExpressCheckout DoExpressCheckout Note: paymentAction is Sale for single payment and Authorization for recurring payments CreateRecurringProfile with initial amount (only for recurring payment) I…
2
votes
1 answer

Android IAP Error RESULT_SERVICE_UNAVAILABLE

Strange error that I'm seeing when trying to restore transactions: 06-29 10:04:30.765: I/BillingService(16135): checkResponseCode got responseCode: RESULT_SERVICE_UNAVAILABLE I've come across several other SO questions which have been promising,…
Joel Martinez
  • 46,929
  • 26
  • 130
  • 185
2
votes
1 answer

Check for paypal subscription status in C#

I want to check for a user's subscription status in Paypal. I mean, if a user paid his last subscription fee I want paypal to redirect to a chosen page so I could extend his subscription date. If it's not possible I would only like to know when a…
Imri Barr
  • 1,035
  • 3
  • 12
  • 20
2
votes
3 answers

Spring Web MVC and recurring dynamic page elements

I'm new to java and web apps and after trying out a few things I went with a set up of Spring webmvc using annotations and velocity as templating engine. It's not that hard to do simple @RequestMapping annotations to controller methods and returning…
Ronner
  • 183
  • 1
  • 6
1
vote
3 answers

Is it good or bad practise to alter start dates in a database to the next occurrence of an event?

I am trying to create an event calendar which whilst initially quite small could turn out to be quite large. To that end, when trying to future proof it as much as possible, all events that occur in the past will be deleted from the database.…
Ashley Bye
  • 1,752
  • 2
  • 23
  • 40
1
vote
1 answer

Skrill(Moneybookers) cancel recurring payment

I would like to know how to detect if the skrill(moneybookers) recurring payment is cancelled by the customer? And also, is there a way to cancel the recurring payment using their API? Any help is appreciated. Thanks in advance! :)
rayss
  • 637
  • 2
  • 9
  • 19
1
vote
1 answer

Updating Recurring payment profile in rails

I have implemented Recurring paypal billing in my rails application. It is going on well. I can able to update amount and can cancel profile every thing. Now my problem is, when a user upgraded his package, I would like to charge him the extra…
user972526
  • 11
  • 2
1
vote
2 answers

Laravel create loop of daily event

Anyone have an idea how can I implement loop of a daily event. In my case, I have 10 event Consider it as event 1, event 2, event 3 and .... How can I make, let say on Monday Event 1 Tuesday Event 2 Wednesday Event 3 Thursday Event 4 Friday Event…
Unkown Kid
  • 135
  • 1
  • 1
  • 8
1
vote
0 answers

Password from return url of recuring paypal payment is not matched with the one in the paypal confirmation page

i have integrated the recurring paypal payment method in mysite. In this method , i get the username and password from the return url. The username is same on both the return url and paypal confirmation page. But the password is different in both…
ananth
  • 71
  • 1
  • 3
1
vote
1 answer

Find the first Recurring letter in Java

I wrote the code as follows but it doesn't return the first recurring letter properly. Example: In the word "statistics" the recurring letters are s, t, and i. But the letter t recurs sooner than the letter s and i, but my program returns s instead…
PanicKk
  • 13
  • 7
1
vote
1 answer

How can I create a SaaS solution (setting up each account)?

I have a web app that I'm currently selling online using ClientExec. I want to get away from ClientExec and use something like Chargify/Spreedly/etc. for the billing part, however my problem is how can I create each users account? ClientExec…
haudenschilt
  • 160
  • 2
  • 10
1
vote
1 answer

The 'Job' field has a null or empty value in Hangfire

In Startup.cs I tried to enqueue recurring job like this: RecurringJob.AddOrUpdate(() => Console.WriteLine("test"), Cron.Daily); but received the error: Please help to figure out what I'm doing wrong. My configuration: //HangFire …
Yaroslav
  • 358
  • 3
  • 14