Jump to content

MSoft

Member
  • Posts

    6
  • Joined

  • Last visited

About MSoft

MSoft's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. It is true what Brian indicates, that is the hotfix from WHMCS: CORE-10723 I cannot confirm that it will help as we have removed the empty function, before the fix came out, which already solved it for us. For that solution you'll have to find the php file, located here: /modules/servers/<solusvm dir>/<solusvm php file> In that file locate the function <solusvm>_AdminCustomButtonArray(), if that funtion returns an empty array it's best to remove the whole function (comment it out). But this only works if the file is not encoded and since most third-party modules are, the only option is the WHMCS fix. It should be already insite the latest WHMCS version, so an upgrade there should also solve it ;-) Good luck!
  2. Sorry ... turns out to be caused by a servers-module we use which is not 100% compatible - - - Updated - - - In case anyone has a similar issue, it was caused by an empty array in this function: function <module>_AdminCustomButtonArray() { $buttonarray = array( ); return $buttonarray; } Removing the whole function solved the problem.
  3. Hi Guys, We have recently upgraded from 6.3 to 7.1.1. Since then the server selected on the customer product details tab is always the first in the pull-down. After changing the first one is still shown. A check in the database shows that the correct server is linked to the product, so it is only a visible issue. Looks like the <select > field for the server is not initialized correctly. I've tried the other Admin templates and languages. But it is all the same and for each user. It's the same for all products of all our customers. This is a big issue because when we change some other field, the wrong server will be saved! Anyone with the same issues, or better: with a solution? Best regards
  4. Hi @brian! I would also really would like to know your solution. We're implementing 'configurable options' and were hoping that your solution could also be a fix to translate these ... Many thanks, Michael
  5. Just to close this thread, I'll past the answer the WHMCS support gave me: ---- As the fields are not documented, I would not recommend depending upon them being present as they may be changed or removed in future releases. My recommendation would be to use the available userid to query Get Clients Details to get the currency if needed: http://docs.whmcs.com/API:Get_Clients_Details
  6. Hi Guys, I'm working on a addon module to act on invoices through hooks. This part uses the API command "getinvoice" to get al the details. To find invoices to process before the date the addon was installed I'm using the API command "getinvoices" (note the 's' ;-) and parse the details from there. I noticed that "getinvoices" contains currency fields like 'currencycode' and 'currencyprefix'. Nice, this way it will be flexible. However, "getinvoice" is completely missing these fields. I'd expect that "getinvoice" would at least contain all fields that "getinvoices" returns also. Sadly these not. Is this a bug or any deeper thought behind this? Any way to get this information without iterating though all invoices for that customer (as user_id seems to be the only parameter)? Note that these currency fields are not (yet) listed in the manual. Best regards, Michael
×
×
  • 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