m00
Retired Forum Member-
Posts
415 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by m00
-
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.
-
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
-
I've attached a new version for WHMCS v4.4.1. jqmenu-13122010.zip
-
Add this at the bottom of the action hook function: header("Location: affiliates.php");
-
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).
-
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.
-
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.
-
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.
-
Do you have a link to your WHMCS environment. Do you use a self-signed certificate?
-
I don't think there's official documentation about that. Do you have any questions about it?
-
It's for all menu items.
-
Is the /includes/countries.php file intact? Try to download it again and replace it.
-
Do you get any other errors when you put the following line in your /configuration.php? $display_errors = true;
-
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}
-
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.
-
The grouping you are looking for (probably Indian?) isn't possible in WHMCS.
-
Take a look at: http://wiki.whmcs.com/Client_Area_Template_Files
-
Check the "One Time Payout" box on the Other tab of your product(s).
-
Do you want to execute a call on a specific action? If so, take a look at: http://wiki.whmcs.com/Hooks
-
There is no existing API-call to accomplish what you want. However, it is quite easy to accomplish this using a simple PHP script whichs does a select in the tbllicensing (I think this is the table name, but I'm not sure) SQL-table and checks the domain.
-
Adding a Header Image Logo to a new WHMCS install
m00 replied to VehiCROS's topic in General Discussion
Locate the following in /templates/portal/header.tpl (if you're using the portal template): <div id="company_title">{$companyname}</div> Replace with: <div id="company_title" style="background-color:transparent;">{if "images/logo.png"|file_exists}<img src="images/logo.png" align="left" alt="" />{else}{$companyname}{/if}</div> Upload your logo to the /images/ folder and call it logo.png. -
Is the currency from your WHMCS environment accepted by paypal? https://www.paypal.com/us/cgi-bin/?&cmd=p/sell/mc/mc_intro-outside Did you fill in the correct currency code in the ISO 4217 standard? http://nl.wikipedia.org/wiki/ISO_4217
-
To start with: post your current module code.
-
Take a look at the "Fraud Protection" options of WHMCS: http://wiki.whmcs.com/Fraud_Protection
-
Can't add new orders. Orders page appears to be broken.
m00 replied to Darkphyre's topic in Using WHMCS
Looks like it. You can try to tweak your buffer sizing a bit if you want to enable the full client dropdown list again.
