-
Posts
98 -
Joined
-
Last visited
About lanquest

lanquest's Achievements
Member (2/3)
0
Reputation
-
lanquest started following Lara, WHMCS Admin Theme v8.0 Released!
-
Hope someone can help here. I'm upgrading and not sure how to complete the first step: * IMPORTANT : Switch back to the default "Blend" theme. Where is this option? The only place I'm aware of is under the System Settings -> General Settings area Edited: It's ok. I've found it. I really need to change this icon 😊
- 47 replies
-
- admin area
- lara
-
(and 2 more)
Tagged with:
-
Upgrade from WHMCS 7.10 to what version?
lanquest replied to alessice's topic in Installation, Upgrade, and Import Support
I have the same questions. My current system is on v7.10.3 and have just subscribed to be able to recieve the latest version v8.6.0. Am I able to upgrade straight to v8.6.0 from my current version v7.10.3? HOW? How do I apply the new license to my current WHMCS setup? Thanks -
<p> I'm certainly no coder but I think I've resolved the issue with sections 1 and 2 of my previous post. I've left the System Charset field set to ISO-8859-1. Added the currency symbols to the tblcurrencies table. Created a copy of the /myaccount/feeds/domainpricing.php file. Changed all referecnces from UTF-8 to ISO-8859-1. This is now showing the all the currencies and pricing: https://www.lanquest-hosting.net/myaccount/feeds/domainpricing1.php?currency=1 and https://www.lanquest-hosting.net/test-pages [/font] [font=arial]$freeamt = formatCurrency(0);[/font] [font=arial]$tldslist = getTLDList();[/font] [font=arial]foreach ($tldslist AS $tld) {[/font] [font=arial] $tldpricing = getTLDPriceList($tld, true);[/font] [font=arial] $firstoption = current($tldpricing);[/font] [font=arial] $year = key($tldpricing);[/font] [font=arial] $transfer = ($firstoption["transfer"] == $freeamt) ? $_LANG['orderfree'] : $firstoption["transfer"];[/font] [font=arial] $code .= sprintf([/font] [font=arial] '%s%d%s%s%s',[/font] [font=arial] htmlspecialchars($tld, ENT_QUOTES, '[b]iso-8859-1'),[/font] [font=arial] $year,[/font] [font=arial] htmlspecialchars($firstoption["register"], ENT_QUOTES, 'iso-8859-1'),[/font] [font=arial] htmlspecialchars($transfer, ENT_QUOTES, 'iso-8859-1'),[/font] [font=arial] htmlspecialchars($firstoption["renew"], ENT_QUOTES, 'iso-8859-1')[/font] [font=arial] );[/font] [font=arial]}[/font] [font=arial] Now, how do I do the 3rd thing? And I'm really stuck on that part </p> - - - Updated - - - I'm certainly no coder, but I think I've resolved the issue with sections 1 and 2 of my previous post. I've left the System Charset field set to ISO-8859-1. Added the currency symbols to the tblcurrencies table. Created a copy of the /myaccount/feeds/domainpricing.php file. Changed all referecnces from UTF-8 to ISO-8859-1. This is now showing the all the currencies and pricing: https://www.lanquest-hosting.net/mya...php?currency=1 and https://www.lanquest-hosting.net/test-pages This is now showing the all the currencies and pricing: https://www.lanquest-hosting.net/myaccount/feeds/domainpricing1.php?currency=1 and https://www.lanquest-hosting.net/test-pages [/font] [font=arial]$freeamt = formatCurrency(0);[/font] [font=arial]$tldslist = getTLDList();[/font] [font=arial]foreach ($tldslist AS $tld) {[/font] [font=arial] $tldpricing = getTLDPriceList($tld, true);[/font] [font=arial] $firstoption = current($tldpricing);[/font] [font=arial] $year = key($tldpricing);[/font] [font=arial] $transfer = ($firstoption["transfer"] == $freeamt) ? $_LANG['orderfree'] : $firstoption["transfer"];[/font] [font=arial] $code .= sprintf([/font] [font=arial] '<tr><td>%s</td><td>%d</td><td>%s</td><td>%s</td><td>%s</td></tr>',[/font] [font=arial] htmlspecialchars($tld, ENT_QUOTES, 'iso-8859-1'),[/font] [font=arial] $year,[/font] [font=arial] htmlspecialchars($firstoption["register"], ENT_QUOTES, 'iso-8859-1'),[/font] [font=arial] htmlspecialchars($transfer, ENT_QUOTES, 'iso-8859-1'),[/font] [font=arial] htmlspecialchars($firstoption["renew"], ENT_QUOTES, 'iso-8859-1')[/font] [font=arial] );[/font] [font=arial]}[/font] [font=arial] Now, how do I do the 3rd thing? And I'm really stuck on that part - - - Updated - - - I'm certainly no coder, but I think I've resolved the issue with sections 1 and 2 of my previous post. I've left the System Charset field set to ISO-8859-1. Added the currency symbols to the tblcurrencies table. Created a copy of the /myaccount/feeds/domainpricing.php file. Changed all referecnces from UTF-8 to ISO-8859-1. This is now showing the all the currencies and pricing: https://www.lanquest-hosting.net/mya...php?currency=1 and https://www.lanquest-hosting.net/test-pages $freeamt = formatCurrency(0); $tldslist = getTLDList(); foreach ($tldslist AS $tld) { $tldpricing = getTLDPriceList($tld, true); $firstoption = current($tldpricing); $year = key($tldpricing); $transfer = ($firstoption["transfer"] == $freeamt) ? $_LANG['orderfree'] : $firstoption["transfer"]; $code .= sprintf( '<tr><td>%s</td><td>%d</td><td>%s</td><td>%s</td><td>%s</td></tr>', htmlspecialchars($tld, ENT_QUOTES, 'iso-8859-1'), $year, htmlspecialchars($firstoption["register"], ENT_QUOTES, 'iso-8859-1'), htmlspecialchars($transfer, ENT_QUOTES, 'iso-8859-1'), htmlspecialchars($firstoption["renew"], ENT_QUOTES, 'iso-8859-1') ); } Now, how do I do the 3rd thing? And I'm really stuck on that part
-
Thanks Brian. You gave me some clues there with your response but I think I've hit a brick wall . I hope this helps someone else. As you suggested/hinted. I started looking at relevant WHMCS config areas in relation to pricing. Then I came across the General Settings > Localisation page and noticed that the System Charset field was set to ISO-8859-1 (I'm sure there is a valid reason for this). After setting this to the default value of UTF-8. I can now see USD and GBP costs but not EU costs : https://www.lanquest-hosting.net/test-pages or https://www.lanquest-hosting.net/myaccount/feeds/domainpricing.php?currency=1 I cannot get the Pound (£)=id1 or EU= (€)id 5 currency signs to stay entered into their fields under Payments > Currencies. Even if I use the shortcut keys. € Euro alt + 0128 £ Pound alt + 0163 So I had to change/insert the currency prefixes from the database table directly (tblcurrencies). But this then stops displaying the prices for these currencies and show up in WHMCS as � characters. If I remember correctly, this is why I had the General Settings > Localisation System Charset field set to ISO-8859-1. UPDATE: With all that said about the currency symbols and the charset. This is where I'm totally stuck. I've concluded that the prices will display with both charsets but not when the currency signs are entered. Why is this? The third thing is. Because of the large number of TLD's in the system. Is there a way I can have this list shown either 10 at a time or at least show the first 20 and click to expand the list? I'm guessing the feeds/domainpricing.php file needs to be edited to accommodate this?
-
Hi Guys, I have inserted the code below into a Joomla module on this page: https://www.lanquest-hosting.net/test-pages I cannot figure out why the pricing isn't being pulled thru. Accessing the code directly using https://www.lanquest-hosting.net/myaccount/feeds/domainpricing.php?currency=1 does not pull throu the pricing. <div id="region-top" class="row-indent"> <h2 align="center" class="ui-heading">Get a <em>Domain Name</em></h2> <div class="ui-subtitle"> <div align="center">With <span class="greytext">FREE</span>, Privacy Protection and lots more</div> </div> </div> <div> <table style="text-align: center; margin-left: auto; margin-right: auto; font-family: Arial, Helvetica, sans-serif;" class="table table-striped table-framed"> <tr> <td> <div align="center"> <script language="javascript" src="/myaccount/feeds/domainpricing.php?currency=1"></script> </div></td> </tr> </table> </div>
-
I've only noticed is after a server rebuild. I only added ModSecurity to the build.
-
Did that just now. Same result.
-
Hi Brian WHich file is that?
-
Hi Guys, I hope someone can help here. Searching through the forums I came accross a thread where this was an issue in patch 5.3.9. Other than that, I couldnt find a resolve anwhere. Our server is running WHMCS v6.2.0, Apache/2.4.18 (Unix) and PHP Version 5.5.30
-
ICANN 2013 RAA - new "Suspended" domain status needed
lanquest replied to stormy's topic in Using WHMCS
Just confirmed that the RAA Verification impacts only the Generic Top-level Domain Names as per the first table in this link: http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Generic_top-level_domains -
ICANN 2013 RAA - new "Suspended" domain status needed
lanquest replied to stormy's topic in Using WHMCS
I have already had a number of client domains go into suspend mode this month. Purely because the client says they had not received the RAA Email Notification. To at least allow us to be a little more pro-active in the meantime. What would also be great would be able enable us to see which newly registered domains have yet to be verified. Not sure if this also effects transfers. Could someone let me know please Thanks -
[resolved] Invalid Token 5.2.15 and 5.2.16 (Cannot create invoices)
lanquest replied to lanquest's topic in Troubleshooting Issues
Hi Nate, Sorry, perhaps I should have mentioned that I had opened a support request regarding this - Ticket #HAC-770209 This was indeed resolved by uploading the full version of the files again. -
"Invalid Token" issue is not fully resolved. I was getting this message in version 5.2.15 and have just upgraded to version 5.2.16 hoping it would go way. So far I'm only getting this message when I click on the Create invoice button from the Client Invoices Tab and from the Create invoice link on the client Summary tab. 1. Login into WHMCS, I'm using two part authentication, setting leave me logged in until I log out option. 2. Go straight to the areas i mentioned above with no interruptions and get the Invalid Token message. Expected Results: Whatever you were doing completed. Actual Results: Invalid Token. Browsers: Google Chrome Version 26.0.1410.64 m Firefox Version 26.0 OS: Windows 7 I'm getting the very same on my work PC and home PC.
-
We're now on Version 5.2.12 and at least 2 months after the first sighting of this issue and still no sighting of Version 5.3. Having said that. There's been no explanation (I've searched high and low) as to why this important feature is broke in the first place. How is this such a problem to resolve that you have to put yourselves in such a position to suggest that we (Your Clients) update the rates manually for at least he last 2 months?
-
Hi Guys, I have the following Exchange Rates setup under Setup > Payments > Currencies [TABLE=class: datatable, width: 100%] [TR] [TH=align: left]Currency Code[/TH] [TH=align: left]Prefix[/TH] [TH=align: left]Suffix[/TH] [TH=align: left]Format[/TH] [TH=align: left]Base Conv. Rate[/TH] [/TR] [TR] [TD]EUR[/TD] [TD]€[/TD] [TD]EUR[/TD] [TD]1234.56[/TD] [TD]1.17192[/TD] [/TR] [TR] [TD]GBP[/TD] [TD]£[/TD] [TD] GBP[/TD] [TD]1234.56[/TD] [TD]1.00000[/TD] [TD][/TD] [/TR] [TR] [TD]USD[/TD] [TD]$[/TD] [TD]USD[/TD] [TD]1,234.56[/TD] [TD]1.55830[/TD] [/TR] [/TABLE] I've noticed in an error in the logs every day and when I manually try to update the rates using the "Update Exchange Rates" button, I'm getting the following error on the page. Exchange Rates Update Results Update Failed for EUR Exchange Rate Update Failed for USD Exchange Rate The last related entry in the System Activity Log says this [TABLE=class: datatable, width: 100%] [TR] [TD]24/08/2013 00:00[/TD] [TD] Cron Job: Update Failed for USD Exchange Rate [/TD] [TD]System[/TD] [TD][/TD] [/TR] [TR] [TD]24/08/2013 00:00[/TD] [TD] Cron Job: Update Failed for EUR Exchange Rate [/TD] [TD]System[/TD] [/TR] [/TABLE] We're running WHMCS Version 5.2.7
