Community Support Forums — WordPress® ( Users Helping Users ) — 2011-10-18T10:01:28-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=15450 2011-10-18T10:01:28-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=48276#p48276 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> Now i have NO REFUNDS on my terms and conditions page.

@Cristian. After checking all of my users w/ the above code and the propper USER_ID. s2Member has no evidence that the "unsavory" customer downloaded anything. Although she told me in several emails that she did download.

Anyway -- this was a good learning experience.
Thanks to everyone that helped.

Cheers!

Statistics: Posted by PixelatorNYC — October 18th, 2011, 10:01 am


]]>
2011-10-13T02:50:03-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=46775#p46775 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> Statistics: Posted by Harty — October 13th, 2011, 2:50 am


]]>
2011-10-12T18:52:26-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=46742#p46742 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> Statistics: Posted by Cristián Lávaque — October 12th, 2011, 6:52 pm


]]>
2011-10-11T20:09:06-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=46642#p46642 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> the user did not delete their account. just cancel their subscription.
their user id is 19, but when i put the following code, wordpress does give me anything.
Code:
<?php
$user_id = 19;
$downloads = get_user_option("s2member_file_download_access_log", $user_id);
print_r($downloads); /* Array of file downloads in the current period of time, as configured by the site owner under Basic Download Restrictions for s2Member. */
?>


what am i doing wrong?

Statistics: Posted by PixelatorNYC — October 11th, 2011, 8:09 pm


]]>
2011-10-11T14:38:40-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=46456#p46456 <![CDATA[Re: how to track member downloads? (unsavory customer)]]>
Did the user delete his account or just cancel the subscription? If you see him in your users list, just hover over the name and look at the URL, the ID number should be there: &user=...

I hope this helps. :)

Statistics: Posted by Cristián Lávaque — October 11th, 2011, 2:38 pm


]]>
2011-10-11T13:10:38-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45365#p45365 <![CDATA[Unsavory customer out smarted s2Member????]]>
that sounds like a brilliant solution.
i am not sure if you have been following this thread carefully.
But the "unsavory" customer in question, logged into my site, downloaded everything, and then cancelled their account.

WordPress/s2Member no longer has their user ID.

also,i tried inputting another active user ID and am still getting the same query results.

$user_id = 1;
is giving me the same results as
$user_id = I-CSFN2GDWXN9U;

am i doing something wrong?
thanks for the help tho.

Statistics: Posted by PixelatorNYC — October 11th, 2011, 1:10 pm


]]>
2011-10-11T08:29:46-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45334#p45334 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> Though you could try to use that code somewhere where the user can see it, I can't guarantee it will work.

Hope this helps :) .

Statistics: Posted by Eduan — October 11th, 2011, 8:29 am


]]>
2011-10-11T08:18:22-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45333#p45333 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> Statistics: Posted by kmkruthila — October 11th, 2011, 8:18 am


]]>
2011-10-11T06:39:39-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45324#p45324 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> $user_id = 1;, "user_id = 1" is you without fault, you have to obtain that user's ID and change that number.

You could try to get the user's ID, just go to Users under WP Admin and select All Users, find the user and in one of the bars it says Paid Subscr. ID, it should say their ID there. If you can't find that bar then go to the top and in the top-right corner of the screen you'll see Screen Options,select that it shows Paid Subscr. ID.

Hope this helps :) .

Statistics: Posted by Eduan — October 11th, 2011, 6:39 am


]]>
2011-10-10T23:44:58-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45314#p45314 <![CDATA[Re: how to track member downloads? (unsavory customer)]]>
Code:
Array(
   [1] => Array([date] => 2011-09-12[file] => PIXL8-Fashion-01.zip)
   [2] => Array([date] => 2011-09-12[file] => PIXL8-InDesignRoughGuideAssets.zip)
   [3] => Array([date] => 2011-09-12[file] => PIXL8-BeautyTutorial_02.zip)
   [4] => Array([date] => 2011-09-12[file] => PIXL8-UnderstandingLayers.zip)
   [5] => Array([date] => 2011-09-12[file] => PIXL8-BeautyTutorial_01.zip)
   )


Those particular results generated by the PHP code, are giving all the results for me (the current user).

can someone help me with the correct PHP for a specific user?
here is the code
Code:
<?php
$user_id = 1;
$downloads = get_user_option("s2member_file_download_access_log", $user_id);
print_r($downloads); /* Array of file downloads in the current period of time, as configured by the site owner under Basic Download Restrictions for s2Member. */
?>


thank you very much in advance,

pixelatorNYC

Statistics: Posted by PixelatorNYC — October 10th, 2011, 11:44 pm


]]>
2011-10-10T21:04:59-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45305#p45305 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> Statistics: Posted by kmkruthila — October 10th, 2011, 9:04 pm


]]>
2011-10-09T20:49:17-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45227#p45227 <![CDATA[Re: how to track member downloads? (unsavory customer)]]>
wow thanks for the response, and it is right on time.
i just discovered that this user has filed a PayPal dispute against me.
Even after they admitted to downloading files in a private email, i would like to know the *EXACT* number.

i followed the link, and i saw the information that was there.
i understand the code, but i am not sure how or were to implement that php code to call up the users data.
can i simply embed it in a private wordpress page to get it to pull up? (i am running exec-php)

Code:
<?php
$user_id = 1;
$downloads = get_user_option("s2member_file_download_access_log", $user_id);
print_r($downloads); /* Array of file downloads in the current period of time, as configured by the site owner under Basic Download Restrictions for s2Member. */
?>

Statistics: Posted by PixelatorNYC — October 9th, 2011, 8:49 pm


]]>
2011-10-07T03:12:29-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=45028#p45028 <![CDATA[Re: how to track member downloads? (unsavory customer)]]> viewtopic.php?f=4&t=14084#p44762 :)

Statistics: Posted by Cristián Lávaque — October 7th, 2011, 3:12 am


]]>
2011-10-06T21:38:38-05:00 http://www.primothemes.com/forums/viewtopic.php?t=15450&p=44998#p44998 <![CDATA[how to track member downloads? (unsavory customer)]]> thank you very much for this beautiful software plug-in.
i am fast on my way to making the money to register a copy.

i have a question.
is there a way to see how many files a user has downloaded?
i believe one of my users subscribed.
downloaded all premium content, cancelled subscription,
and now wants a total refund.
wow!

if they honestly dont like my service i will refund.
but if they are trying to pull a fast one,
how can i check to see if they have download any premium files from
plugins/s2member-files/ directory?

many blessings

Statistics: Posted by PixelatorNYC — October 6th, 2011, 9:38 pm


]]>