Jump to content

fireupjb

Member
  • Posts

    12
  • Joined

  • Last visited

About fireupjb

fireupjb's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. So, I've been looking into this a little bit... Diving into it. The "fraud" module is kind of laid out like a module. Noticed the following functions: getConfigArray() return configarray() doFraudCheck($params) return results() getResultsArray($results) resultarray() When I configured the getConfigArray() and setup the array as such: function getConfigArray() { $configarray = array( "Enable" => array( "Type" => "yesno", "Description" => "Tick to enable My Fraud Module" ), ); return $configarray; } //end configArray when I select the fraud module from the list, it wont display the option. Any help?
  2. I was about to ask if WHMCS is limited to the scope of the user, then by linux law it technically should be restricted to that... (I would possibly even recommend the user probably use an API vs direct shell eg. SOAP/etc.)
  3. Thanks, I shouldn't have to use the 'cron.php all -F' to force the daily job right? or just as i have it in the definition: 0 5 * * * php -q /home/username/crons/cron.php
  4. I moved my crons dir up one directory non-public , but keep getting this error in the system health section. My config has the path: $crons_dir = '/home/username/crons/'; #Username was replaced with the username. And in the crons dir I have the file config.php with the variable whmcspath pointing to the path of the whmcs install; My cron is setup firing 0 5 * * * php -q /home/username/crons/cron.php (replaced username with proper user) Any ideas why I keep getting this message in system health? This is latest version 7.1.0. (release.1)
  5. Keep getting Promo Update Cron Report every minute. ---- This started AFTER the upgrade. Help.
  6. Direct cart link for beta product participation: https://orders.fireup.host/cart.php?gid=11
  7. Good news for those using WHMCS for new and innovative ways.. FireUp Hosting has recently been working on a number of new modules and we are looking for available Beta-testers who would be willing to provide valuable feedback during their beta period. Please visit http://www.fireup.host and sign up for the beta-tester product(s) that you are interested in helping us with. We may even throw in a few free licenses to those who use the products and provide the best feedback. Modules we are offering thus far: Fireup VPN - VPN Provisioning for Radius FireUp CMS - Turn your WHMCS into a valuable CMS FireUp Security Suite - Security scanning provisioning for Metasploit Pro. FireUp PassShare - Safe and secure password sharing company wide within WHMCS. FireUp AWS - Provision AWS Resources from products and manage their resources. FireUp Azure - Provisiong Azure resources from products and manage their resources. This list is always changing, and if we get any more ideas to share I will update this post. Thanks! CEO/Founder FireUp Hosting J
  8. Thanks Sir! Good find! Data type/Length wasnt even on my idea list. That fixed it for me as well! --- Kudos to you!
  9. I have this same issue on all the addons i'm developing, right now it calls home every page load. Which obviously defeats the purpose of the code: // The number of days to wait between performing remote license checks $localkeydays = 3; // The number of days to allow failover for after local key expiry $allowcheckfaildays = 5; I mean I guess I could add code to check date difference... That is okay but not sure why the included license check code didnt put that in there if the variables were set. I'm also saving to the database.
  10. Okay, well i found out the null; I ended up using some code I found online, and $aInt wasnt declared. So that's a no go... Unless someone has a method they use?
  11. Okay, trying to output in my addon a table that mimicks the base table HTML structure that WHMCS outputs; I see theres a sortableTable function , but every attempt I try fails... Any help? use Illuminate\Database\Capsule\Manager as Capsule; $query = "SELECT whmcs.tbldomainpricing.extension AS TLD, whmcs.tblpricing.msetupfee AS Selling_Price FROM whmcs.tbldomainpricing INNER JOIN whmcs.tblpricing ON whmcs.tbldomainpricing.id = whmcs.tblpricing.relid WHERE whmcs.tblpricing.type = 'domainregister' ORDER BY Selling_Price ASC"; $tabledata = ""; $result = full_query($query); while ($data = mysql_fetch_array($result, MYSQL_ASSOC)) { $TLD = $data['TLD']; $SELLING_PRICE = $data['Selling_Price']; $tabledata[] = array($TLD, $SELLING_PRICE); } echo $aInt->sortableTable(array('TLD', 'Selling_Price'), $tabledata); I keep getting the infamous null error on sortabletable. Uncaught Error: Call to a member function sortableTable() on null
  12. Hello everyone, I am seeking beta-software participants for the following WHMCS addon's I am developing: * FireUp CMS Content Management Solution for WHMCS * FireUp VPN Allow your users to signup for VPN using FreeRadius/Radius Servers. * FireUp Security Suite You must have a Nexpose/Metasploit Pro license to use this; Allows provisioning of custom scan products. * FireUp Azure Access your Azure resources and allow provisioning by product. * FireUp AWS Access your AWS EC2, RDS and other AWS products; and allow provisioning by product. (with custom settings, tags etc) * FireUp PassShare Share company passwords easily. Those are a few that I am working on and need some beta-participants who are interested in giving feedback on my products. If your interested, please visit https://orders.fireup.host/cart.php?gid=11 - These are 15 Day free trials of the selected products and not all are actually ready for beta-release yet, but if your interested they will be done very soon. I am interested in feedback, and usability and any other problems you may run into while using the products. Thank you for letting me be a part of your amazing community! Jason FireUp Hosting LLC http://www.fireup.host
×
×
  • 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