Jump to content

m00

Member
  • Posts

    415
  • Joined

  • Last visited

  • Days Won

    2

m00 last won the day on July 27 2021

m00 had the most liked content!

About m00

Recent Profile Visitors

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

m00's Achievements

Senior Member

Senior Member (3/3)

4

Reputation

  1. The module allows you to log in to IPB with your WHMCS credentials. When you log in for the first time with your WHMCS credentials and there isn't an account in IPB, it will create one.
  2. I've attached an fixed version, which adds the option Setup > Configuration > Addon Modules. I also did a little fix on the part where it selects the available addon modules. If you've already installed the module on your WHMCS administration environment, just replace your menu.tpl with the one in the attachment. Questions? Let me know. jqmenu-27122010.zip
  3. I've attached a new version for WHMCS v4.4.1. jqmenu-13122010.zip
  4. Add this at the bottom of the action hook function: header("Location: affiliates.php");
  5. Did you enable $display_errors as described in this thread already? http://forum.whmcs.com/showthread.php?t=21317 If so: Please post your output (if there is any).
  6. Take a look at the "server module development kit": http://wiki.whmcs.com/Creating_Modules It contains a template and some information about it in the PDF.
  7. Look up the ID in the tblservers MySQL table. You can also look it up by hovering over the "edit" button after the desired server on the "Servers" page of your WHMCS admin environment.
  8. The $ipb_name is the (My)SQL database name where the IPB tables are located. With the current coding: No. The authentication part needs to be rebuilded to accomplish this. You could accomplish this by doing a simple SQL-select from the right IPB table and compare the email address in WHMCS with the one in IPB.
  9. Do you have a link to your WHMCS environment. Do you use a self-signed certificate?
  10. I don't think there's official documentation about that. Do you have any questions about it?
  11. Is the /includes/countries.php file intact? Try to download it again and replace it.
  12. Do you get any other errors when you put the following line in your /configuration.php? $display_errors = true;
  13. One of our customers is also Amazon reseller. There isn't a variable available in the ticket reply email template for this, so we've created the following code: {php} $result = select_query("tbltickets", "id,date,message", array("tid" => $this->_tpl_vars['ticket_id'])); while($data = mysql_fetch_array($result)) { $result2 = select_query("tblticketreplies", "date,message", array("tid" => $data['id']), "id", "DESC"); while($data2 = mysql_fetch_array($result2)) { echo "----------------------------------------------<br />\n"; echo $data2['date']."<br />\n"; echo "----------------------------------------------<br />\n"; echo $data2['message']."<br />\n"; } echo "----------------------------------------------<br />\n"; echo $data['date']."<br />\n"; echo "----------------------------------------------<br />\n"; echo $data['message']."<br />\n"; } {/php}
  14. I don't see an option to integrate it into your current website. The only thing you can do is "rebuild" your template in WHMCS, so it just looks the same as your normal website. Then you just link from your "normal" website to the WHMCS environment. That's what's described in the link posted in the previous reply. When we are doing an integration for a website which is based on WHMCS, we're just using the WHMCS template system to build website.
×
×
  • 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