Jump to content

Mondoir

Retired Forum Member
  • Posts

    15
  • Joined

  • Last visited

Everything posted by Mondoir

  1. Thank you for this. I just changed the default URL to httpS and it seems to solve the problem temporary. I will open a trouble ticket ro request for a custom version of announcement.php that call the feed from URL related to how its called. I really do appreciate your time on this.
  2. As I told you, I changed the location of twitter feed. Its in white area on the top of footer.
  3. click on login and it will take you to the secured URL.
  4. sure. appreciate it. Its not ready though ! http://www.parsnic.com/online
  5. Also, forget to mention that the twitter section shows only the loading bar forever over SSL.
  6. Yes. The slider is fine with JS. the twitter code is in homepage.tpl here is the code: <div style="padding:5px 30px 5px 30px;height:auto"> {if $twitterusername} <h2>{$LANG.twitterlatesttweets}</h2> <div id="twitterfeed"> <p><img src="images/loading.gif"></p> </div> {literal}<script language="javascript"> jQuery(document).ready(function(){ jQuery.post("announcements.php", { action: "twitterfeed", numtweets: 3 }, function(data){ jQuery("#twitterfeed").html(data); }); }); </script>{/literal} {elseif $announcements} <h2>{$LANG.latestannouncements}</h2> {foreach from=$announcements item=announcement} <p>{$announcement.date} - <a href="{if $seofriendlyurls}announcements/{$announcement.id}/{$announcement.urlfriendlytitle}.html{else}announcements.php?id={$announcement.id}{/if}">{$announcement.title}</a><br />{$announcement.text|strip_tags|truncate:100:"..."}</p> {/foreach} {/if} </div>
  7. I have done everything that came to my mind so far !!! The slider is not working without JS for sure Template_c is emptied. yes. no luck !
  8. I already tested that. The thing is the header is same with and without SSL. If there were the JS conflict, it must have affect the site without SSL as well but it is working fine with no SSL. !!!
  9. Thank you taylorn; I checked the source and the address is not included the domain and is as you mentioned. I also checking the chrome console and there is no errors or warnings at all !!! Whats your idea?
  10. I have the twitter problem when browsing the site with SSL. Without SSL its showing fine, but in secure pages, it shows only the loading bar. any ideas?
  11. Hi All When some one is checking .tel domain names for availability, the error checking is not working on this extension. I mean you can not register a 2 words domain like po.tel, but in WHMCS, lients do not get any error for that. it is ok for similar domains like .me, but not working for .tel. any suggestions?
  12. Hi everyone I had a problem with WHMCS for registering .tel domains. When you add .tel extension into your domains list, it will show in all domain registration fields. When someone wants to order a hosting package, he has to choose a domain name. what will happen if he chose a .tel domain with the hosting package? as you know, .tel domains do not use regular hosting packages. So I tried to remove this extension when the order is being made by a hosting package. You have to find this page: configureproductdomain.tpl in your orderforms folder. Find these codes: {foreach key=num item=listtld from=$registertlds} <option value="{$listtld}"{if $listtld eq $tld} selected="selected"{/if}>{$listtld}</option> {/foreach} then change it with this: {foreach key=num item=listtld from=$registertlds}{if $listtld neq '.tel'} <option value="{if $listtld neq '.tel'}{$listtld}{/if}"{if $listtld eq $tld} selected="selected"{/if}>{if $listtld neq '.tel'}{$listtld}{/if}</option> {/if} {/foreach} This will hide .tel extension in domain order form after a hosting package has been chosen. Next, in your client area, you can let your clients change DNS of .tel domains, also they can not register a DNS on this domain. So in clientareadomaindetails.tpl, look for this code: <td class="fieldarea" width="150">{$LANG.domainnameserver1}:</td> <td><input type="text" name="ns1" value="{$ns1}" size="40"></td> and change it with: <td class="fieldarea" width="150">{$LANG.domainnameserver1}:</td> <td><input type="text" name="ns1" value="{$ns1}" size="40" {if $tld eq "tel"}disabled="disabled"{/if}></td> Remember that you have to make change to ns2 to ns 4 as well. Also find this line for registering DNS: <input type="submit" value="{$LANG.domainregisterns}" class="button"> and change to : <input type="submit" value="{$LANG.domainregisterns}" class="button" {if $tld eq 'tel'}disabled="disabled"{/if}> This will disable the DNS registration on .tel domains. I know this is a little amature coding, but this is what I figure out !
×
×
  • 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