farmanrava
January 17th, 2016, 13:55
با سلام و احترام خدمت دوستان و همکاران عزیز
دوستان عزیز ، بعد از نصب whmcs نسخه 6.2 و آپدیت از ورژن 5.3.14 قالب جدیدی برای بخش کاربری قرار دادیم
همه چیز در بخش کاربری درست هستش به جز بخش تعرفه و چک کردن دامنه ، اگه به آدرس زیر تشریف ببرید متوجه میشید :
http://irserverco.ir/whmcs/domainchecker.php
ممنون میشم در این زمینه کمک کنید ...
لازم به ذکر هستش که با تغییر قالب به six مشکل حل میشه ... ظاهرا مشکل از قالب هستش ، بنده فایل domainchecker این قالب رو هم ضمیمه کردم ( اگر نیاز به فایل دیگری هم هستش بفرمایید لطفا )
پیشاپیش از دوستان تشکر میکنم که وقت خودشون رو برای بنده قرار میدن :53:
- - - Updated - - -
ارور موجود در بخش گزارشات whmcs :
Smarty Error: Syntax error in template "/home/irserver/public_html/whmcs/templates/HostLab/domainchecker.tpl" on line 111 "{foreach from=$tldpricelist item=tldpricelist}" item variable 'tldpricelist' may not be the same variable as at 'from'
Smarty Error: Syntax error in template "/home/irserver/public_html/whmcs/templates/HostLab/domainchecker.tpl" on line 164 "{foreach from=$tldpricelist item=tldpricelist}" item variable 'tldpricelist' may not be the same variable as at 'from'
این ارور ها چندین بار تکرار شده
- - - Updated - - -
آپدیت
مشکل حل شد دوستان ...
راه رو هم قرار میدم ، شاید یک روزی به درد کسی بخوره .
فایل domainchecker.tpl رو باز کنید و به جای کد های زیر :
<tbody>
{foreach from=$tldpricelist item=tldpricelist}
<tr>
<td>{$tldpricelist.tld}</td>
<td class="textcenter">{$tldpricelist.period}</td>
<td class="textcenter">{if $tldpricelist.register}{$tldpricelist.register}{el se}{$LANG.domainregnotavailable}{/if}</td>
<td class="textcenter">{if $tldpricelist.transfer}{$tldpricelist.transfer}{el se}{$LANG.domainregnotavailable}{/if}</td>
<td class="textcenter">{if $tldpricelist.renew}{$tldpricelist.renew}{else}{$L ANG.domainregnotavailable}{/if}</td>
</tr>
{/foreach}
</tbody>
کد زیر رو یه صورت کامل جایرگزین کنید :
<tbody>
{foreach $tldpricelist as $tld}
<tr>
<td>{$tld.tld}</td>
<td class="text-center">{$tld.period}</td>
<td class="text-center">{if $tld.register}{$tld.register}{else}{$LANG.domainre gnotavailable}{/if}</td>
<td class="text-center">{if $tld.transfer}{$tld.transfer}{else}{$LANG.domainre gnotavailable}{/if}</td>
<td class="text-center">{if $tld.renew}{$tld.renew}{else}{$LANG.domainregnotav ailable}{/if}</td>
</tr>
{/foreach}
</tbody>
موفق باشید
دوستان عزیز ، بعد از نصب whmcs نسخه 6.2 و آپدیت از ورژن 5.3.14 قالب جدیدی برای بخش کاربری قرار دادیم
همه چیز در بخش کاربری درست هستش به جز بخش تعرفه و چک کردن دامنه ، اگه به آدرس زیر تشریف ببرید متوجه میشید :
http://irserverco.ir/whmcs/domainchecker.php
ممنون میشم در این زمینه کمک کنید ...
لازم به ذکر هستش که با تغییر قالب به six مشکل حل میشه ... ظاهرا مشکل از قالب هستش ، بنده فایل domainchecker این قالب رو هم ضمیمه کردم ( اگر نیاز به فایل دیگری هم هستش بفرمایید لطفا )
پیشاپیش از دوستان تشکر میکنم که وقت خودشون رو برای بنده قرار میدن :53:
- - - Updated - - -
ارور موجود در بخش گزارشات whmcs :
Smarty Error: Syntax error in template "/home/irserver/public_html/whmcs/templates/HostLab/domainchecker.tpl" on line 111 "{foreach from=$tldpricelist item=tldpricelist}" item variable 'tldpricelist' may not be the same variable as at 'from'
Smarty Error: Syntax error in template "/home/irserver/public_html/whmcs/templates/HostLab/domainchecker.tpl" on line 164 "{foreach from=$tldpricelist item=tldpricelist}" item variable 'tldpricelist' may not be the same variable as at 'from'
این ارور ها چندین بار تکرار شده
- - - Updated - - -
آپدیت
مشکل حل شد دوستان ...
راه رو هم قرار میدم ، شاید یک روزی به درد کسی بخوره .
فایل domainchecker.tpl رو باز کنید و به جای کد های زیر :
<tbody>
{foreach from=$tldpricelist item=tldpricelist}
<tr>
<td>{$tldpricelist.tld}</td>
<td class="textcenter">{$tldpricelist.period}</td>
<td class="textcenter">{if $tldpricelist.register}{$tldpricelist.register}{el se}{$LANG.domainregnotavailable}{/if}</td>
<td class="textcenter">{if $tldpricelist.transfer}{$tldpricelist.transfer}{el se}{$LANG.domainregnotavailable}{/if}</td>
<td class="textcenter">{if $tldpricelist.renew}{$tldpricelist.renew}{else}{$L ANG.domainregnotavailable}{/if}</td>
</tr>
{/foreach}
</tbody>
کد زیر رو یه صورت کامل جایرگزین کنید :
<tbody>
{foreach $tldpricelist as $tld}
<tr>
<td>{$tld.tld}</td>
<td class="text-center">{$tld.period}</td>
<td class="text-center">{if $tld.register}{$tld.register}{else}{$LANG.domainre gnotavailable}{/if}</td>
<td class="text-center">{if $tld.transfer}{$tld.transfer}{else}{$LANG.domainre gnotavailable}{/if}</td>
<td class="text-center">{if $tld.renew}{$tld.renew}{else}{$LANG.domainregnotav ailable}{/if}</td>
</tr>
{/foreach}
</tbody>
موفق باشید