Jump to content

bobbravo2

Member
  • Posts

    115
  • Joined

  • Last visited

About bobbravo2

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

bobbravo2's Achievements

Senior Member

Senior Member (3/3)

0

Reputation

  1. May I ask what your suggested deployment pipeline would look like? Symlinks seem like a pretty massive oversight... IMHO
  2. What about using Capistrano for railsless deploys, and having a custom template as a Capistrano Symlink inside of /templates/myCustomTemplate? Are you saying that this functionality is now broken in WHMCS 6.x? I've been using a complex build/deployment pipeline for managing our systems for ~4 years now, I'd hate to have to lose the Capistrano capabilities.
  3. Thanks for the kind words! Version 3.0.03 has been released
  4. We're preparing for the release of eNom PRO V3.0, and could use the help of some beta testers with our release candidate. New features in V3.0.00 Include: 3rd party whmcs themes for testing / QA, including support for SwiftModders compatibility checker support WHMCS 6.0 support added delete tld from whmcs added whois server status filters added GZip compression for widget ajax responses added SSL reminder tests based on statuses added counts to the page navigation improved handling of errors for the domain import page extract pending domains transfer to use widget API fixed update notification bug in the credit balance widget fixed Auto-Upgrade folder bugs fixed domain pagination licensing improvements refactored domain transfer action ajax updated ioncube encoder to php53 fixed WHMCS admin roles widget chooser title display fixes for whmcs v4 admin sidebar repaired pending verification widget admin home screen view interface and CSS improvements bootstrap tooltips improved documentation and screenshots improved IP address exception handling help message added help page with ajax support To help beta test, please open a ticket, and we can send a beta copy: Open a ticket here to help beta test!
  5. From what I can see, it looks like it should work fine. The NameSpinner is a single ${smarty} tag that uses AJAX to get the results & insert them into the page.
  6. Yes. After we release 3.0, we're going to be extending eNom PRO with provisioning modules. Which eNom products are you looking to re-sell?
  7. Domain Import to WHMCS & 4 Admin Widgets! WHMCS Admin Addon. Features include: Bulk Import Pricing for all of eNom's TLDs Bulk Import Domains for existing WHMCS users Displays your eNom reseller balance directly on the WHMCS admin homepage without modifying any templates. Displays pending transfers with quick resubmit and resend links Displays Expiring SSL Certificates in an Admin Widget Displays eNom Account Stats, including number of registered domains and expiring domains eNom NameSpinner template tag to easily add namespinner results to domain checker and shopping card pages! Flawlessly integrated into WHMCS Shows eNom Credit Balance on Admin Homepage Native WHMCS v5+ Addon Plugin Architecture Full integration with the eNom reseller API See all the details on the enom PRO product page! --or-- Buy Now!
  8. I've responded to your ticket. Please use tickets for these issues. Thank you for being a valued part of the Circle Tree community, we sincerely appreciate your business!
  9. I've updated it to include the option of filtering by category id Just go to your this file's URL and add the catid from WHMCS: ie - knowledgebaserss.php?catid=1 <?php header("Content-Type: application/xml; charset=ISO-8859-1"); echo '<?xml version="1.0" encoding="ISO-8859-1"?'.'>'."\n"; echo '<rss version="2.0">'."\n"; echo '<channel>'."\n"; define("CLIENTAREA",true); //define("FORCESSL",true); # Uncomment to force the page to use https:// require("dbconnect.php"); require("includes/functions.php"); require("includes/clientareafunctions.php"); $result = mysql_query("SELECT * FROM tblconfiguration WHERE setting='SystemURL' OR setting='CompanyName' OR setting='SEOFriendlyUrls'"); while ($data = mysql_fetch_array($result, MYSQL_ASSOC)) {$values[$data['setting']] = $data['value'];} echo '<title>'.$values['CompanyName'].' Knowledgebase Feed</title>'; echo '<description>'.$values['CompanyName'].' Knowledgebase Feed created by WHMCS Knowledgebase RSS addon module.</description>'; echo '<link>'.$values['SystemURL'].'</link>'; if (isset($_REQUEST['catid'])) { //Show this category $query = "SELECT * FROM `tblknowledgebase`,`tblknowledgebaselinks` WHERE `tblknowledgebaselinks`.`articleid` = `tblknowledgebase`.`id` AND `tblknowledgebaselinks`.`categoryid`=".(int)$_REQUEST['catid'];; } else { //Show all categories $query = "SELECT * FROM tblknowledgebase"; } $result = mysql_query($query); while ($data = mysql_fetch_array($result, MYSQL_ASSOC)) { echo '<item>'."\n"; echo '<title>'.$data['title'].'</title>'."\n"; echo '<description>'.strip_tags(substr($data['article'],0,140)).'</description>'."\n"; echo '<link>'.$values['SystemURL'].'knowledgebase.php?action=displayarticle&id='.$data['id'].'</link>'."\n"; if($seourls){ echo '<link>'.$values['SystemURL'].'knowledgebase/'.$data['id'].'/'.str_replace(' ','-',$data['title']).'.html</link>'."\n"; }else{ echo '<link>'.$values['SystemURL'].'knowledgebase.php?action=displayarticle&id='.$data['id'].'</link>'."\n"; }//if echo '</item>'."\n"; }//while echo '</channel>'."\n"; echo '</rss>'."\n"; ?>
  10. New Client Area Template for V5 Added! Download for Free here: http://circletr.ee/5
  11. Just a note that a new version 2.1 has been released with reworked WHMCS V5 widget support! It can be ordered FREE here: circltr.ee/5
×
×
  • 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