Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
members
* member_id
* members_l_display_name
* members_l_username
* mgroup
* bday_day
* bday_month
* member_banned
* members_bitoptions
* ip_address
* failed_login_count
* joined
* fb_uid
* twitter_id
* email
vk_uid
У меня кажись лицензию требует.Нуллед версия технической версии форума исправляющая ошибки и недочеты предыдущей версии 3.1.3.
<?php
/**
* <pre>
* Invision Power Services
* IP.Board v3.1.4
* Installer: License Key
* Last Updated: $LastChangedDate: 2010-08-03 04:16:45 -0400 (Tue, 03 Aug 2010) $
* </pre>
*
* @author $Author: mark $
* @copyright (c) 2001 - 2009 Invision Power Services, Inc.
* @license http://www.invisionpower.com/community/board/license.html
* @package IP.Board
* @link http://www.invisionpower.com
* @version $Rev: 6720 $
*
*/
class upgrade_license extends ipsCommand
{
/**
* Execute selected method
*
* @access public
* @param object Registry object
* @return void
*/
public function doExecute( ipsRegistry $registry )
{
if ( IPSSetUp::is300plus() !== TRUE )
{
$this->registry->autoLoadNextAction( 'upgrade' );
return;
}
$lcheck = $this->check();
if ( $lcheck === TRUE )
{
$this->registry->autoLoadNextAction( 'upgrade' );
return;
}
$this->registry->output->setTitle( "Ключ лицензии" );
$this->registry->output->setNextAction( "license&do=check" );
$this->registry->output->sendOutput();
}
/**
* Check License Key
*
* @access public
* @return bool
*/
private function check()
{
return true;
}
}