Active
Project:
lm_paypal
Version:
6.x-2.x-dev
Component:
LM Paypal Subscriptions
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
10 Jan 2011 at 04:52 UTC
Updated:
26 Apr 2013 at 17:58 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
mottboy commentedDid you get ipn info back on your logs?
Comment #2
Anonymous (not verified) commentedI have same problem too, although I got transaction from paypal
I also have the error: warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'lm_paypal_subscriptions_terms_form_13' was given in /includes/form.inc on line 378.
Plus, after subscription no email is sent to user nor admin.
Do you have any suggestion?
thanks in advance
Comment #3
Anonymous (not verified) commentedAttached is the watchdog content.
Comment #4
Anonymous (not verified) commentedthis is the new watchdog log since the module update to 6.x.2.x of may18. Unfortunately the issue is still there: the role is not changed, but the email notification to the subscriber is sent. I tested it with a real donation of 1.00 euro, and the paypal account is billed.
Comment #5
Arwym commentedHaving the same issue in the D7 (7.x-1.x-dev) development version. Emails are sent, transaction is processed, and recurring payment is also set. But nothing seems to happen on Drupal's end.
Comment #6
buzzman commentedbump
Comment #7
alliax commentedHappens to me, but it is not systematic, that is some users have been able to have their role added, but others not. I'm using the 1.0 version but will replace it with the x-1 dev version to see if it works any better.
Do you know of a module for drupal 6 which works fine, just for the paid role functionality?
Comment #8
Arwym commentedI am currently trying Ubercart as an alternative, but I haven't tested it with real transactions yet. I'd prefer to use something simpler for this, like lm_paypal, but if it's not possible...
Comment #9
alliax commentedI'm simply going to remove this module and handle it by hand. But instead of monthly subscriptions I will sell yearly subscriptions with no refund and I'll keep track of users and dates myself in the old fashioned way.
Comment #10
gregarios commentedCombining these identical issues: http://drupal.org/node/1321182
Comment #11
zet commentedThis module seems preety much abandoned. No feedback for more than a year from the devellopers. So frustrating to bump over one very useful module like this, see the users reporting problems about it and getting absolutely no feedback
Comment #12
imrankhanjoya commentedUse curl insted of socket
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://{$_lm_paypal_host}/cgi-bin/webscr");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Host: {$_lm_paypal_host}"));
$ret = curl_exec($ch);
curl_close($ch);
Hope this will work
Comment #13
alliax commentedFinally I went with a paid drupal module to handle all my paid membership, because at least there is someone to deal with, he's not a ghost since it is his livelyhood..
In fact I was going to use ubercart + paypal gateway to add/remove roles, but in fact I bought my first ever module instead, because I thought I'm not interested in dealing with bugs and lack of updates anymore, so for this part of the job I'll rely instead on a paid module.
Thanksfully using Drupal since 2004, it is the first time I bought a paid module, and I didn't even have to, since it is possible to do the same with several free modules and maybe applying patches if there are outstanding bugs, but still it is possible the free way and that's very good.
Comment #14
lyricnz commentedThis module is effectively abandoned until a new maintainer steps up. I don't have any time to maintain this anymore.
Comment #15
john franklin commentedI've been doing some work on it recently. I'll see if I can clear out some of issues in the queue.
Comment #16
Albert Sapsford commentedThanks for your recent work on the module, John Franklin. May I suggest that you put something on the module's home page, saying that the module, or this version of the module, is not currently usable, until a later date when it is stable? I ask this because I've spent an awful lot of time installing and configuring the module, setting up PayPal sandbox accounts, and I've drawn up 18 pages of notes for myself for future reference, but now I've discovered that that was all wasted time and effort — which I so can't afford due to the pressure of my workload — and now I'll have to set this functionality up for my client in Übercart instead. Please consider putting up a disclaimer to caution other developers. Thank you.