Jump to content

bigwave

Member
  • Posts

    3
  • Joined

  • Last visited

Everything posted by bigwave

  1. Hello, I need to hire someone that can do a few jobs for me in WHMCS.. 1. I need to be able to track a sale with the affiliate link from an out side form that uses the header "location:" in php. I currently have a script that I built but it's not working. It tracks the visitor but it does not track the sale. And I don't understand how it can track the visitor but not the sale, it makes no sense. 2. I need to set up a mass payment system for paypal to pay the affiliates. It needs to be a button in the admin area that when pressed once per month, it will only pay affiliates that have over $100 owed to them, and it needs to check if they have made over $600 do they have their W9 form faxed to us. I already have the w9 field attached to the tblclients so there needs to be an addition added to the admin area that will list everyone that has made over $600 for the year and allow me to click a button or check box to show they have faxed in their forms so they can continue to be paid the rest of the year. This needs to reset every year on January 1st. 3. I need the same mass payment system set up for Solidtrust Pay as well, because the affiliate can choose to be paid via paypal or solidtrust pay. 4. I need a payment gateway module made for solidtrust pay. Please reply to me if you can for sure do the above, and can talk via skype as you are working on this stuff. Let me know your fee, please try to just give me a lump sum fee for all and not an hourly fee. I do have a budget that I MUST stay within that's why I need to know the total cost for the above.
  2. Hello, For some reason when you use an affiliate link, it shows that you got a visitor but it never tracks the sale. The * is the original from WHMCS. I had modified it and that's when it stopped working but I have put it back to normal now and it's still not tracking the sales. Please let me know what could be wrong to cause it not to track the sales. I will list the * code below just in case it's something wrong there. <?php /** * Affiliate Cookie Tracking + Redirection Handler * * @package WHMCS * @author WHMCS Limited <development@whmcs.com> * @copyright Copyright (c) WHMCS Limited 2005-2013 * @license http://www.whmcs.com/license/ WHMCS Eula * @version $Id$ * @link http://www.whmcs.com/ */ define("CLIENTAREA",true); require("init.php"); // if affiliate id is present, update visitor count & set cookie if ($aff = $whmcs->get_req_var('aff')) { update_query("tblaffiliates",array("visitors"=>"+1"),array("id"=>$aff)); WHMCS_Cookie::set('AffiliateID',$aff,'3m'); } // if product id passed in, redirect to order form if ($pid = $whmcs->get_req_var('pid')) redir("a=add&pid=".(int)$pid,"cart.php"); // if product group id passed in, redirect to product group if ($gid = $whmcs->get_req_var('gid')) redir("gid=".(int)$gid,"cart.php"); // if register = true, redirect to registration form if ($whmcs->get_req_var('register')) redir("","register.php"); // if gocart = true, redirect to cart with request params if ($whmcs->get_req_var('gocart')) { $reqvars = ''; foreach ($_GET AS $k=>$v) $reqvars .= $k.'='.urlencode($v).'&'; redir($reqvars,"cart.php"); } // perform redirect header("HTTP/1.1 301 Moved Permanently"); header("Location: ".$whmcs->get_config('Domain'),true,301);
  3. Hello, I am using WHMCS for a product (not hosting or servers at all). Since it's for a product (a monthly membership for training) I don't have a module to hook the product to. So under module I just left it none. I need to have the system suspend people that don't make their future payments. I set up a hook that should run when the PreModuleSuspend is ran, however, I keep getting an error in admin log that says "no module". My question is, do I have to create a special module and link it to the product in order for the system to run PreModuleSuspend and activate my hook? I sure hope the answer is no because I have tried to build a module and it gets errors too. Thanks, Randy
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated