Pentru a scăpa de License Key Missing ,urmăreşte mai jos: 1. Mergem în FileZilla ,introducem ,hostul ,usernameul şi parola ,şi apoi mereg în :
public_html - numele forumului - admin - skin_cp -cp_skin_global.php
îl deschidem cu Notepad sau WordPad şi căutăm codul următor cu funcţia CTRL şi F:
if( !$this->settings['ipb_reg_number'] )
{
$this->lang->words['license_missing_info'] = sprintf( $this->lang->words['license_missing_info'], $this->settings['base_url'] . 'app=core&module=tools&section=licensekey' );
$extra_class = 'force_license';
$license_html = <<<HTML
<div id='license_notice_force'>
<h4>{$this->lang->words['license_missing_header']}</h4>
<p>{$this->lang->words['license_missing_info']}</p>
</div>
HTML;
}
else
{
$licenseData = $this->cache->getCache( 'licenseData' );
if( ( !$licenseData OR !$licenseData['key']['_expires'] OR $licenseData['key']['_expires'] < IPS_UNIX_TIME_NOW and $licenseData['key']['_expires'] != -1 ) AND !IPSCookie::get( 'ignore-license-notice' ) )
{
if ( $licenseData['_cached_date'] < $licenseData['key']['_expires'] )
{
$this->cache->rebuildCache( 'licenseData' );
}
else
{
$extra_class = 'expired_license';
$license_html = <<<HTML
<div id='license_notice_expired'>
<div class='right'><a id='license-close' href='#'>Close</a></div>
<h4>{$this->lang->words['license_expired_header']}</h4>
<p>{$this->lang->words['license_expired_info']}</p>
</div>
HTML;
}
}
}
şi apoi îl ştergem şi ACP-ul va arăta normal .