SQL Actions

9 years 2 weeks ago #262675 by delea
SQL Actions was created by delea
I am having trouble with the SQL Actions. I am using this in conjunction with AdsManager PaidSystem and have 4 subscription plans. On the free plan the user is to be assigned 6 credits to their account, but the system continues to assign 10 credits.

This is the SQL action:
UPDATE `#__paidsystem_credits` SET `credits` = credits + 6 WHERE `user_id` = [user_id]

I had originally installed and set this up in 2012, but the website owner ultimately decided not to use subscriptions. Now the website has sold and the new owner wants to implement subscriptions. I have enabled the CB plugin and repurchased CB Subs and am now having this issue. When I try to open the plugin in the CB plugin area I get a blank page. Also, when I try to save changes in Paid Subscriptions I also get a blank page - although the changes have been saved.

I am running Joomla 2.5.8, CB 1.9.1, CB Subs 3.0.0

Please Log in to join the conversation.

8 years 11 months ago #264664 by krileon
Replied by krileon on topic SQL Actions
I've no idea why it's assigning 10 instead of 6 unless `credits` is already 4 as you're adding the two together. It just executes the query as you've supplied it. However you're missing a lot of proper quotes usage. Your query should be formatted as follows.

UPDATE `#__paidsystem_credits` SET `credits` = ( `credits` + 6 ) WHERE `user_id` = '[user_id]'

Quoting the user id will avoid SQL errors (which maybe the cause of your blank pages) when there's no user id. Beyond that I don't know what to suggest as your install is quite far behind (we're on CB 2.0.8 and CBSubs 4.0.0 RC2 now).


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in to join the conversation.

Moderators: beatnantkrileon
Time to create page: 0.276 seconds