Jump to content

tristar

Retired Forum Member
  • Posts

    13
  • Joined

  • Last visited

Everything posted by tristar

  1. Same problem with neteartone here, bullten's approach is worked.
  2. hello, please add this line to configuration.php, and trace the errors. $display_errors = true;
  3. Hi, do you get WHMCS Domain Syncronisation Cron Report mail? new domain sync was discussed in here for 5.1.x. Additionally you have to secure crons/domainsync.php. This folder has accessible by others. Regards
  4. yes Si, we make a mistake & don't read the manual but, if you know we are wrong, why don't you warned us. This is forum & forum's logic is share the knowledge. reading or not reading the manual is another problem.
  5. Finally found the domain sync logic. new whmcs 5.1 series use the cron actions separately about domain sync. Anyone who has domain expiry date sync problem, please use the command via browser or create cron job. I think we missed to read this new functionality. Sorry for this. But no one warned us? According to me, another important issue that crons/domainsync.php folder must be set as password protected folder or htaccess restriction rules must be set from outside usage (unwanted folder-file usage) domain.com/crons/domainsync.php regards.
  6. hello, I've latest patched version 5.1.2, Pending status for domain registration/transfer ss. [ATTACH=CONFIG]3266[/ATTACH] Active Status for domain registration/transfer ss. domain status changed pending to active manually (when transfer initiated, it stuck as pending) in active status mode, domain expiry date & status modes cannot communicate with registrar. (If it is normal) regards
  7. hello, another missing one for 5.1.2 in /templates/default/clientareaproductdetails.tpl <div class="styled_title"><h2>{$LANG.clientareahostingaddons}</h2></div> <p>You have the following addons for this product.</p> <br /> {if $addonsavailable}<p><a href="cart.php?gid=addons&pid={$id}">{$LANG.orderavailableaddons}</a></p>{/if} </div>
  8. Hello, may be this useful for showing product details. Some Customer couldn't see product details button.(because of near the dropdown menu ) This small modification may be added for later whmcs versions. Screen Shot: OPEN templates/default/clientareaproducts.tpl FIND <strong>{$service.group} - {$service.product}</strong> REPLACE WITH THIS <a href="clientarea.php?action=productdetails&id={$service.id}"><strong>{$service.group} - {$service.product}</strong></a> Thanks for your attention.
  9. hi, there is no problem in my side, everything looks good on this issue i placed an order with activated, generate invoice, suspend the order's product, product set as suspended, finaly i set the invoice mark as paid. Products set as activated automaticaly. cpanel, whmcs5.1.2
  10. Hello, if you use comparison theme in order page, did you check password Strength bar movement while registration. I have tested & there is no bar movement observed. Version: WHMCS 5.1.2 Lets look at the issue in my side. (please test your own & report your feelings to this thread) PROBLEM: <script type="text/javascript" src="includes/jscript/pwstrength.js"></script> this code needs to be moved up. quick solution for this: OPEN templates/orderforms/comparison/viewcart.tpl [FIND] <script type="text/javascript" src="includes/jscript/jqueryui.js"></script> <script type="text/javascript" src="templates/orderforms/{$carttpl}/js/main.js"></script> <script type="text/javascript" src="includes/jscript/statesdropdown.js"></script> <script type="text/javascript" src="includes/jscript/pwstrength.js"></script> <link rel="stylesheet" type="text/css" href="templates/orderforms/{$carttpl}/style.css" /> <link rel="stylesheet" type="text/css" href="templates/orderforms/{$carttpl}/uistyle.css" /> [CHANGE] <script type="text/javascript" src="includes/jscript/jqueryui.js"></script> <script type="text/javascript" src="includes/jscript/pwstrength.js"></script> <script type="text/javascript" src="templates/orderforms/{$carttpl}/js/main.js"></script> <script type="text/javascript" src="includes/jscript/statesdropdown.js"></script> <link rel="stylesheet" type="text/css" href="templates/orderforms/{$carttpl}/style.css" /> Another problem is International Language Problem on Password strenght bar while registration. Screenshot the javascript code(includes/jscript/pwstrength.js) only shows English Language on the template/comparison/viewcart.tpl file at registration page or order page. Template file is not using language translations. Look at the issue: OPEN template/comparison/viewcart.tpl FIND <tr><td colspan="2" align="center"><script language="javascript">showStrengthBar();</script></td></tr> here, showStrengthBar(); code is using for strenght bar movement. lets look at the language translates for showStrengthBar(); in pwstrength.js file. OPEN includes/jscript/pwstrength.js PART 1 FIND function showStrengthBar() { document.write('<table align="center"><tr><td>Password Strength:</td><td width="102"><div id="pwstrengthpos" style="position:relative;float:left;width:0px;background-color:#33CC00;border:1px solid #000;border-right:0px;"> </div><div id="pwstrengthneg" style="position:relative;float:right;width:100px;background-color:#efefef;border:1px solid #000;border-left:0px;"> </div></td><td><div id="pwstrength">Weak</div></td></tr></table>'); } Password Strength word is not use international translates, just show english word in order page. We have to change manually (why?) PART 2 FIND jQuery("#newpw").keyup(function () { var pwvalue = jQuery("#newpw").val(); var pwstrength = getPasswordStrength(pwvalue); jQuery("#pwstrength").html("Strong"); jQuery("#pwstrengthpos").css("background-color","#33CC00"); if (pwstrength<75) { jQuery("#pwstrength").html("Moderate"); jQuery("#pwstrengthpos").css("background-color","#ff6600"); } if (pwstrength<30) { jQuery("#pwstrength").html("Weak"); jQuery("#pwstrengthpos").css("background-color","#cc0000"); } jQuery("#pwstrengthpos").css("width",pwstrength); jQuery("#pwstrengthneg").css("width",100-pwstrength); Strong, Moderate, Weak words are not use international translates, just show english word. We have to change manually (why?) This code needs to be revised again. If you have same problem please share your feelings. thanks for your attention.
×
×
  • 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