Jump to content

aj.kerley

Member
  • Posts

    22
  • Joined

  • Last visited

About aj.kerley

aj.kerley's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Is there a code I need to add to the tpl file?
  2. I cant get it to work.. tried using different templates/designs/styles... even the default WHMCS ones.
  3. Cant get it to work with latest version...
  4. I upgraded to the latest php code provided here and I am getting the following error: "error on line 38 at column 78: EntityRef: expecting ';'" Below is the php I am using: <?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); require("dbconnect.php"); require("includes/functions.php"); require("includes/clientareafunctions.php"); global $CONFIG; echo '<title>'.$CONFIG['CompanyName'].' Knowledgebase Feed</title>'; echo '<description>'.$CONFIG['CompanyName'].' Knowledgebase Feed created by WHMCS Knowledgebase RSS addon module.</description>'; echo '<link>'.$CONFIG['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']." ORDER BY `tblknowledgebase`.`id` DESC"; } else { //Show all categories $query = "SELECT * FROM tblknowledgebase ORDER BY `id` DESC"; } $result = full_query($query); while ($data = mysql_fetch_assoc($result)) { echo '<item>'."\n"; echo '<title>'.$data['title'].'</title>'."\n"; echo '<description>'.strip_tags(substr($data['article'],0,140)).'</description>'."\n"; if($seourls){ echo '<link>'.$CONFIG['SystemURL'].'knowledgebase/'.$data['id'].'/'.getmodrewritefriendlystring($data['title']).'.html</link>'."\n"; }else{ echo '<link>'.$CONFIG['SystemURL'].'knowledgebase.php?action=displayarticle&id='.$data['id'].'</link>'."\n"; }//if echo '</item>'."\n"; }//while echo '</channel>'."\n"; echo '</rss>'."\n"; ?>
  5. Cool, thx. Never really paid attention to what the values were before. Upgraded to 5.1.2 from v4, a few weeks back and it terminated most of the accounts, so since it was fairly simple i just wiped 5.1.2 and started over with 5.0.3.
  6. What is the correct date that should be showing up in the client area for a product that has the billing cycle set to free? Is it "//" or "-" or "00/00/0000" or an actual date? I recently changed some products to the free billing cycle for a client, in the admin area it shows "N/A" for the next due date, in the client area it shows "-"... I just want to make sure that the clients hosting doesnt get suspended or terminated, in the mean time I have disabled my cron.php job so it does not run. Thanks!
  7. I get an error when registering... http://www.whmcscollective.com/signup ... Same error when using the contact us link... http://www.whmcscollective.com/contact.php >> http://www.whmcscollective.com/contact.php?action=send
  8. Anyone ever set up a BOGO for domains? Like register a new .com for 2 years and get a .info 1 year free... Tried doing a bundle but with out adding a hosting package it doesn't show up or work...
  9. Looks like this might be a bug/misconfiguration in the "default" template (.tpl file). If I change to a different template I don't get the error...
  10. Doesn't look like your cron is running completely. How are you running your cron, automatically, php or GET, or manually? Here is what my activity log & email report look like, i have my cron run every night/morning at midnight.
  11. If your referring to cron.php ... You can check your "Activity Log" by going to Utilities >> Logs >> Activity Log and look in the time range you ran your cron. Also if you have it set up you should be getting an email shortly after your cron runs.
  12. Support Ticket #306097 - Invalid New Billing Cycle
  13. When processing an Upgrade/Downgrade via the client area the client gets a non-template pages displayed they says "Invalid New Billing Cycle" on /upgrade.php after clicking 'Choose Product' on upgrade.php?type=package&id=x. Using v5.0.3.
  14. I did remove the only addon I had added yesterday before posting. I dealt with it for a little while... then bang all fixed. Thanks for the reply!
  15. Is there a way to setup WHMCS to pay affiliates on Domain Names? I see it does for Hosting?
×
×
  • 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