Jump to content

datamerc

Retired Forum Member
  • Posts

    13
  • Joined

  • Last visited

About datamerc

Recent Profile Visitors

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

datamerc's Achievements

Junior Member

Junior Member (1/3)

2

Reputation

  1. Thanks for the tip Chris! It's also possible to add a single cPanel account username to the list in the "SMTP_ALLOWUSER" section in ConfigServer Security & Firewall (if you didn't want to update the allowed ports for all cPanel users).
  2. htb - I received your PM, but was unable to reply. More info about the Fabulous API can be found at http://api.fabulous.com/docs?username=yourusername
  3. Hi, Looking for quotes on developing a registrar module for the registrar Fabulous.com. They have an API setup, and more information can be viewed at http://fabulous.com/informationcenter/index.htm?formdata[qid]=1452 Thanks! David
  4. I received a phone call and email from Frank at GlobalSign yesterday and then again today. He was very professional and quickly got us going with their partner program!
  5. I also contacted them via the contact form (that 2 days ago), but have not seen a reply yet.
  6. One difference I have noticed between my created page and the original admin page, is the link url when hovering over a date in the calendar. On the original admin page, the date link is: http://www.domain.com/whmcs/admin/clientsdomains.php?userid=21#'>http://www.domain.com/whmcs/admin/clientsdomains.php?userid=21# when the page url is http://www.domain.com/whmcs/admin/clientsdomains.php?userid=21 On my created page, the date link is just: http://www.domain.com/whmcs/# when the page url is http://www.domain.com/whmcs/21.php?action=test_calendar As you can see, my created page is not setting a proper link within the calendar (which it is probably returning a blank result to the date form field). What have I missed???
  7. After many days, I've made some progress in getting this worked out - except one problem. In header.tpl, I have included the following: <link rel="stylesheet" type="text/css" href="includes/jscript/css/ui.all.css" /> <script type="text/javascript" src="includes/jscript/jquery.js"></script> <script type="text/javascript" src="includes/jscript/jqueryui.js"></script> {literal}<script> $(document).ready(function(){ $(".datepick").datepicker({ dateFormat: "{/literal}{$datepickerformat}{literal}", showOn: "button", buttonImage: "images/showcalendar.gif", buttonImageOnly: true, showButtonPanel: true }); {/literal}{$jquerycode}{literal} });{/literal} {$jscode} </script> In my newform.tpl file, I have the following field for the date: <input type="text" name="date_from" class="datepick"> The calendar looks and pops up properly. However, when a date on the pop-up calendar is clicked on, a text date (MM/DD/YYYY) is not put into the field, it is just blank. I can't figure out why this doesn't work - do the form fields have to be registered somewhere? Thank you for any help!!!
  8. I'm creating custom pages for my client portal. Some of the forms require a date field and I would like to make them just like what is used in the admin section (for example, on the registration date field on the domains page of a client). How can I utilize that same pop-up calendar in my custom pages? Thanks!
  9. That's exactly what I'm looking to do, with the exception of having the content in a subdirectory of root because each client will have unique content. So for example, I would like to have the new content structured like this: domain.com/whmcs/manage/client1pages/ domain.com/whmcs/manage/client2pages/ domain.com/whmcs/manage/client3pages/ ...and so on That wiki article mentioned the php files would need to be located in root and the tpl files in templates directory. Is it possible to have the structure I've described; putting the php and tpl files in their clientpages directory? Thanks
  10. Hi, I've gotten the stock client area of WHMCS customized to our website very nicely and now i am working on the final part. We currently have a separate website where clients login to update their website (e.g. listings, inventory, etc). I would like to integrate the content of this website with their WHMCS client area. This will consolidate login info and integrate the look and feel (essentially adding another navigation link in the header.tpl file). How do I create a new page(s) that will... 1) integrate the header.tpl and footer.tpl files so the navigation is seamless. 2) verify user is logged in and is the proper user to be viewing the page - I think I have solved this by using the following at the top of each page define("CLIENTAREA",true); require("../../dbconnect.php"); require("../../includes/functions.php"); require("../../includes/clientareafunctions.php"); if($_SESSION['uid'] == $someUserID) { valid user } else { //not a valid user } Thank you in advance!
×
×
  • 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