![]() |
|
|||||||
| Integrations Find / Share / Request the integration of ClipShare with other Scripts. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#11 | |
|
Member
|Forum Newbie|
![]() Join Date: Jul 2008
Posts: 8
![]() |
Quote:
Had i paid 200 dollars today and found out it did not have Paypal support I too would harass and complain on this forum just so that somehow I would get some value for my money... What exactly are we paying for here.. the group system sucks.. the video capabilities are nothing out of the ordinary compared to other free scripts.. I'd say the only thing about clipshare that actually stands out is their layout.. and their lack in customer service of course.. Where's the admin demo? These guys supposedly built this wikkid script with crazy features (which you're only going to see of course after you bought the shit) and they can't setup some kind of database that refreshes it self every hour so that people can see what they're paying for? 50 bucks to get a logo placed on my videos?.. gtfo I was going to post this earlier today in another thread but did not find it necessary - These guys are simply misleading people and they're asking 200 dollars for it. Prolly shoulda made it into a new thread but you were like all cool about how the greatest feature of this script (paypal ipn) is missing.. Seeing how this thread is old though did they add this already or what? |
|
|
|
|
|
|
#12 | |
|
Member
|Forum Guru|
![]() ![]() ![]() ![]() ![]() Join Date: Nov 2007
Posts: 2,189
![]() |
Quote:
I'm not ClipShare team, and I'm not responsible for what is missing or not in the script.The thing is simpple - you want something that is missing - you need to pay or you won't have it. No need to be disgusted as it won't change anything. Beside all of that, read posts well - it was not me who wrote $50. However $30 or $50 maybe is a lot for you. But this is no more than for 2 hours of job. And many programmers takes even much more, especially when client expects direct incomes... - D.
__________________
![]() NUEVO Flash Player - most advanced video player for Clipshare and AVS ClipShare mods Last mod: Premium Membership Plugin for Nuevoplayer & Clipshare Hosting solution recommended by NuevoLab |
|
|
|
|
|
|
#13 |
|
Member
|Forum Senior|
![]() ![]() ![]() ![]() Join Date: Jun 2008
Posts: 337
![]() |
if your not a customer i don't see what your worring about
$200 is not alot of money to pay for a script - i've pay 5x more than this in the past clipshare has to be keep generlistic to cater for all site types and what you get for your money is value if you where a customer you whould no what your getting from the clients area, if not , you can't really say alot adding a paypal addon is quite simple and there are poeple here who could quite easily do it for a small fee i have tryed many other video shariing scripts and clipsgare is one if not the best currently around, you can go for a free script, but in the end you probably regret not going with something thats a better solution its not the script itself that counts, it the time work and effort you put into it that will pay you back i the end |
|
|
|
|
|
#14 |
|
Member
|Forum Newbie|
![]() Join Date: Jul 2008
Posts: 5
![]() |
I contacted customer services about this and they say the following on this matter:-
Yes, you can enable Paid Service form the admin panel and you can setup paid packages for users (you can limit the visitors watching videos time).The system works with PayPal I too would like to know if anyone has successfully set Paypal payment option on their website. |
|
|
|
|
|
#15 |
|
Member
|Forum Newbie|
![]() Join Date: Nov 2008
Posts: 4
![]() |
Hy guys,
We have payed for player rebranding and did not get. Do not trust them. They will steal your money. |
|
|
|
|
|
#16 |
|
Member
|Forum Newbie|
![]() Join Date: Sep 2007
Posts: 10
![]() |
It seems this has stumped too many people.... here is a quick fix that worked for me. I am NOT guaranteeing that this will work for everyone and this is NOT the proper way of doing it as it does not incorporate IPN. However, like I said, it does work for me...
in your pmt_success.php file find the section that reads: if($_GET['is_success']==1) { $success = "true"; STemplate::assign('exp_date', date('Y-m-d', strtotime("+$_GET[period]"))); } replace that with the code below: if($_GET['is_success']==1) { $success = "true"; STemplate::assign('exp_date', date('Y-m-d', strtotime("+$_GET[period]"))); $expired_time = date("Y-m-d H:i:s", strtotime("+$_GET[period]")); $sql = "update subscriber set pack_id='".$_GET['pack']."', subscribe_time='".date("Y-m-d H:i:s")."', expired_time='".$expired_time."' where UID ='".$_GET['uid']."'" ; $conn->execute($sql); $sql = "update signup set account_status = 'Active' where UID='".$_GET['uid']."'"; $conn->execute($sql); } Hope it works for you... |
|
|
|
|
|
#17 |
|
Member
|Forum Newbie|
![]() Join Date: Sep 2007
Posts: 10
![]() |
btw... that was for version 2.5 and 2.6 you might need a slight modification for version 4...
|
|
|
|
|
|
#18 |
|
Member
|Forum Newbie|
![]() Join Date: Nov 2008
Posts: 18
![]() |
z00m you are REALLY GREAT!!!
![]() i use version 4.1.0 and with a few modification it runs without problems ![]() the main problem with IPN still remains, but it feels so good to have a version running ![]() Code:
$sql = "INSERT INTO subscriber (UID, pack_id, subscribe_time, expired_time)";
$sql .= " VALUES ('".$userID."', '".$_GET[pack]."', '".date('Y-m-d H:i:s')."', '".$expired_time ."');";
$conn->execute($sql);
|
|
|
|
|
|
#19 |
|
Member
|Forum Newbie|
![]() Join Date: Feb 2009
Posts: 1
![]() |
Hi Celen
I've been on the Clipshare forums and read a post you made regarding Paypal integration. I'm running clipshare 4.0.9 and I cant seem to get it to update payment subscriptions. It works perfectly in allowing the user to sign up and send a payment, but when they login it says: Account expired. Please renew! I have tried your code but I think I'm doing it wrong: ================================================== ===== require('include/config.php'); require('include/function.php'); if($_GET['is_success']==1) { $success = "true"; STemplate::assign('exp_date', date('Y-m-d', strtotime("+$_GET[period]"))); $expired_time = date("Y-m-d H:i:s", strtotime("+$_GET[period]")); $sql = "update subscriber set pack_id='".$_GET['pack']."', subscribe_time='".date("Y-m-d H:i:s")."', expired_time='".$expired_time."' where UID ='".$_GET['uid']."'" ; $conn->execute($sql); $sql = "update signup set account_status = 'Active' where UID='".$_GET['uid']."'"; $conn->execute($sql); $sql = "INSERT INTO subscriber (UID, pack_id, subscribe_time, expired_time)"; $sql .= " VALUES ('".$userID."', '".$_GET[pack]."', '".date('Y-m-d H:i:s')."', '".$expired_time ."');"; $conn->execute($sql); } STemplate::assign('success', $success); STemplate::assign('err',$err); STemplate::assign('head_bottom',"blank.tpl"); STemplate::display('head1.tpl'); STemplate::display('err_msg.tpl'); STemplate::display('pmt_success.tpl'); STemplate::display('footer.tpl'); STemplate::gzip_encode(); ?> ================================================== ======== Please help if you know what I've done wrong. Thanks Julia |
|
|
|
|
|
#20 |
|
Member
|Forum Newbie|
![]() Join Date: Apr 2009
Posts: 5
![]() |
im running 4.1.5 and i cant get it work either, sign up works, payment taken, subscriber table is populated, but it says account expired when you try to log in
|
|
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| paypal integration | glennh | Integrations | 9 | 09-12-2007 03:41 AM |
| IPN Paypal replacement | mentaldave | Freelance Services | 0 | 04-27-2007 06:32 PM |
| used paypal where is it | sfcommunity | Pre-Sales Questions | 2 | 01-10-2007 10:38 PM |