Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
SSGTI - Subscription Certain Payment APIs Details »»
SSGTI - Subscription Certain Payment APIs
Version: 3.8.101, by Omranic Omranic is offline
Developer Last Online: Sep 2021 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 3.8.x Rating:
Released: 04-13-2009 Last Update: 04-14-2009 Installs: 30
DB Changes
Re-useable Code Code Changes Translations  
No support by the author.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!.............. Sponsored by: PHP KingDom (www.phpkd.net) ..............!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~




Please remember to click Mark as Installed if you use this modification.
Support questions from members who have not marked this as installed will be considered low priority.


Note: This product has been requested by Jenkins as a custom work. It has been completed & delivered few months ago. Since all of my custom work is licensed under Creative Commons - Attribution-Noncommercial-Share Alike 3.0, I publish it now for the public use, I hope this product will be useful for all of you.


Name: Subscription Certain Payment APIs
Version: 3.8.101

Description:
  • This product allows administration to specify certain payment APIs for each paid subscription.

Compatible with: All 3.7.x/3.8.x vBulletin versions.


Features:
  • Fully Phrased.
  • Fully Supported.
  • Professionally Coded.
  • Doing all default vBulletin checks & follow all vBulletin default scenarios while proccessing.
  • Allowing maximum flexibility for choosing certain payment methods for certain paid subscriptions.


Installation Procedure:
  1. Do the following file edits:
    Open the file "admincp/subscriptions.php" & search in it for the following code:
    Code:
    	print_input_row($vbphrase['display_order'], 'sub[displayorder]', $sub['displayorder'], true, 5);
    Add under it directly the following code:
    Code:
    	// Subscription Certain Payment APIs
    	print_table_header($vbphrase['payment_api_manager'], 3);
    	$apiarray = array();
    	$apis = $db->query_read("
    		SELECT * FROM " . TABLE_PREFIX . "paymentapi
    	");
    	while ($api = $db->fetch_array($apis))
    	{
    		$apiarray[$api['classname']] = $api['title'];
    	}
    	print_select_row($vbphrase['paidsubcertainapi'], 'sub[paymentapi][]', $apiarray, $sub['paymentapi'] ?  unserialize($sub['paymentapi']): -1, false, 5, true);

    In the same file "admincp/subscriptions.php" search for the following code:
    Code:
    	$sub =& $vbulletin->GPC['sub'];
    Add under it directly the following code:
    Code:
    	// Subscription Certain Payment APIs
    	$sub['paymentapi'] = serialize($sub['paymentapi']);
    Save the file admincp/subscriptions.php and upload it replacing the existing one.



    Open the file "payments.php" and search in it for the following code:
    Code:
    				$typetext = $method['classname'] . '_order_instructions';
    Add under it directly the following code:
    Code:
    				// Subscription Certain Payment APIs
    				$subapis = unserialize($sub['paymentapi']);
    				if (is_array($subapis) AND !empty($subapis) AND !in_array($method['classname'], $subapis))
    				{
    					continue;
    				}
    Save the file "payments.php" and upload it replacing the existing one.
  2. Import product's XML file from AdminCP.
  3. Done .


Control:
  • vBulletin AsminCP -> Paid Subscriptions -> Subscription Manager -> select a subscription -> Payment API Manager


License:

Help with:
  • Suggestions to develop this product.
  • Contributing any updates, upgrades and/or any new features.
  • Translations to benefit more users (translation credits goes to their owners).
  • Spreading this product. Yes, you're free to re-distribute this product as it is.


Known Isues:
  • Nothing till now.


History:
  • v3.8.100 14/04/2009 10:00 AM GMT: First initial public release.
  • v3.8.101 15/04/2009 01:00 AM GMT: Fixing minor instalation step description.


Screen Shots:
  • Available down there.


Notes:
  • English version only supported & supplied here, for Arabic release please contact me.


Technical Notes:
  • New Files: 0
  • New Plugins: 0
  • New Phrases: 1
  • New Templates: 0
  • Template changes: 0
  • Code Changes: 3
  • New vBulletin Settings: 0
  • New Usergroup Permissions: 0
  • New Moderator Permissions: 0
  • New Administrator Permissions: 0
  • New Forum Options: 0
  • New DB Tables: 0
  • DB Alterations: 1
  • New Cron Jops: 0
    -----------------
  • Installation Level: V.Easy
  • Installation Time: 20~30 seconds


Donation?:
  • No, sorry. I appreciate your kindness. But if you need to help/support, then you can ask me for custom work. I'm ready for any custom work .

Download Now

File Type: zip product-paidsubcertainapi-3.8.101.zip (74.7 KB, 147 views)

Screenshots

File Type: png paidsubcertainapi_admincp_1.png (22.2 KB, 0 views)
File Type: png paidsubcertainapi_admincp_2.png (22.3 KB, 0 views)
File Type: png paidsubcertainapi_forum_1.png (27.5 KB, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 11-24-2009, 08:44 PM
regitbull regitbull is offline
 
Join Date: Jan 2007
Posts: 54
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hello,

i have the same problem as Jenkins.
Without this mod installed people just pay for the subscription and after they paid they get put in the vip usergroup.

With this mod on it doesent switch the user to the new vip usergroup and it doesent even show up in the user acount.

Do you have any fix for this?

Im running vbulletin 3.8.4 patch 1

thx.
Reply With Quote
  #13  
Old 12-03-2010, 06:15 AM
Eplexx Eplexx is offline
 
Join Date: Nov 2010
Location: Toronto
Posts: 94
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works great thanks!
Reply With Quote
  #14  
Old 12-10-2010, 09:15 PM
Hornstar Hornstar is offline
 
Join Date: Jun 2005
Location: Australia
Posts: 2,469
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is still working great

I am about to venture to VB4, and was wondering will this still work in VB4?
Reply With Quote
  #15  
Old 04-02-2011, 08:16 PM
Hornstar Hornstar is offline
 
Join Date: Jun 2005
Location: Australia
Posts: 2,469
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've noticed a bug in this. (I think it's this that's causing it)

The transaction log and transaction stats pages in the admincp are blank.
Reply With Quote
  #16  
Old 11-20-2012, 11:24 PM
Prorockz Prorockz is offline
 
Join Date: Nov 2009
Posts: 117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Warning: curl_setopt() [function.curl-setopt]: Invalid curl configuration option in [path]/includes/paymentapi/class_paypal2.php on line 197
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:18 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05736 seconds
  • Memory Usage 2,287KB
  • Queries Executed 21 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (5)postbit
  • (4)postbit_attachment
  • (6)postbit_onlinestatus
  • (6)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete