messer
Retired Forum Member-
Posts
32 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Hotfixes
Everything posted by messer
-
clear template_c folder and cashe files in browser as well
-
Why lang file from admin folder is encoded in ver 5.0.5?
-
When we could expect 5.2.3 release? Lucky who using dev version and not upgrading core system, but lot of us abandon testing new release version as our reports are without response. I don't mind to get new release every few days if there will be progress on it, even 5.2.30 if it is necessary. I'm asking for 5.2.3 because since 5.0 only acceptable as stable was 5.x.3, everything before was like 5.x.1 alpha, 5.x.2 beta
-
[FIXED] 5.2.2 captcha issue: clientarea.php/domainchecker.php
messer replied to messer's topic in Troubleshooting Issues
Bug fixed by support. -
Hi, This bug was reported on 5.2 beta, not fixed before 5.2.1 stable, then partial fix on 5.2.2. General Setting / Security / Captcha Form Protection = Always On When client is logged in on clientarea.php page and he's checking domain availability then captcha should be visible but it isn't, so after click button "check availability" getting error "the characters you entered didn't match the image shown. Please try again" Ticket #NKB-678559 opened: 13/03/2013 00:50 and I've got patch 13/03/2013 22:00 which fixed only problem with Captcha Form Protection = Always Off, so ticket was updated: 13/03/2013 22:49 with notice that it wasn't fully fixed
-
Hi Chris, so could you explain instruction from README.txt file on 5.2.2 upgrade incremental:
-
it's comming from lang file - one of this $_LANG['orderregisterdomain'] $_LANG['cartregisterdomainchoice'] all text in Client Area are from lang var except modules - some of modules are hard coded
-
first beta r2 was different than stable version eg custom pages where change on stable - that cause lot of issue with mods as dev can't test it on beta second not all bugs reported on beta where fixed , eg hard coded text on clientareadomaindetails.php line 77 hard coded ('Every'), when you are not using captch (as logged in) on clientarea (main page) and check domain avalability then on domainchecke.php Fatal error: Call to undefined function recaptcha_check_answer() in /includes/classes/class.validate.php on line 0 Why stable version was released? should you give first to beta tester "stable version" to test that everything was fixed and now we will have new release every 6 weeks - can't imagine who will update
-
5.2.r2 upgraded to 5.2.1 stable General Settings / Security / Captcha Form Protection = Off when logged in Login as Client and on home page (clientarea.php) check domain availability then click Check button, domainchecker.php page should gave results, but I'm getting blank page I've reported this as bug in beta. Could you verify that on your end as well
-
v.5.0.4 had the same issue - when checked domain and it was available then click order button (cart.php) it should be domain configuration before checkout but it was checing domain availability again. I downloaded patch from whmcs.com again and uploaded to server - now looks ok
-
Login to Client Area then Services / Licenses & Services / View Details (on your license) / Downloads
-
As per Release Notes (http://docs.whmcs.com/Version_5.2_Release_Notes) I was expecting today download new stable version 5.2.1, but right now we have security patches to other version (5.0.4 / 5.1.4). Will be any delays in release new version? -- Update: 5.2.1 is available right now to download as well
-
it was already, just search: http://forum.whmcs.com/showpost.php?p=210814&postcount=2
-
I didn't see any info about support IDN domain - only WHMCS left without supporting it, so we need to wait another few months for next release or wait till v5.0?!
-
how it will be billed if customer will take hosting with monthly payment and order SSL as addon which is paid yearly?
-
Hi, Is there any way to turn off generation invoice with zero amount on it during domain transfer? eg. when you transfer .co.uk domain in first year of registration then you don't pay for renew during transfer as it is to early to renew domain (renewal is possible 6 month before renewal date). Domain transfer is setup as free and during transfer customer will get invoice with 0 amount on it, so is any way to don't generate the invoice? Rgds
-
Hi Kikloo, I was moving my WHMCS between servers little more than year ago and I did't it manually as I had only on one server cPanel installed. I did backup of WHMCS database and move it to new serwer, then copied all WHMCS files between serwers trough ftp. Last thing was reissue license in WHMCS Client Area. I think that when you moved betwwen two servers with cPanel you just need to moved account by cPanel tools from WHM and then reissue license. Rgds, Messer PS precautions = BACKUP always
-
Hi, How you deal with national characters in contact details during registration in ResellerClub, NetEarthOne and other registrars with LogicBox system? When my customers are registering in WHMCS they are using national characters (First and Last Name, Address, City, State, Company Name) and it is necesarry for correct details in invoices and my national registrar so I can't convert details during registration in WHMCS. I have problem with global domains registered with ResellerClub as they accept only English Alphabet so all national chars need to be converted when domain is registered or contact details are updated. As WHMCS has built-in modules for above registrars and source code is encrypted I can't modify details before they are send to registrar. Any idea how to resolve that? Regards, Arthur
-
small modification if someone want to use mysqli instead mysql <?PHP $x=1; // truncate the text to only 65 chars, add ... to the end function truncate($text) { $text = substr($text,0,65); $text = substr($text,0,strrpos($text,' ')); $text = $text."..."; return $text; } // format the date to mm/dd/yyyy function formatdate($date) { $year = substr ($date, 0, 4); $month = substr ($date, 5, 2); $day = substr ($date, 8, 2); return $year.'/'.$month.'/'.$day; } // limit the number of announcements to return $limit = 2; require '/home/user/public_html/whmcs/configuration.php'; $sql = new mysqli($db_host,$db_username,$db_password,$db_name); $result = $sql->query("SELECT * FROM tblannouncements WHERE published='on' ORDER BY id DESC LIMIT ".$limit); while ($row = $result->fetch_object()) { $id = $row->id; $date = $row->date; $announcement = truncate($row->announcement); $date = formatdate($date); echo'<p><span>'.$date.'</span> - '.$announcement.' <a href="/whmcs/announcements.php?id='.$id.'"><img src="/images/more.gif" alt="more info" /></a></p>'; echo'<hr />'; $x=false; } $result->close(); $sql->close(); if(!$x) echo '<p>News & Announcements: <a href="announcements.php">View More</a></p>'; if($x) echo '<p>News & Announcements: <a href="announcements.php">View More</a></p>'; ?>
