Jump to content
Дизайн и модификация IPS Community IPBSkinsBETA
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
Одмин

Глобально включить функцию "Лучший ответ" во всех форумах

Recommended Posts

Добрый вечер, друзья!

 

У меня вопрос таков - в АЦ - Форумы - Изменение форума есть функция "Включить функцию 'Лучший Ответ'?". А поскольку у меня несколько сотен веток (форумов) на форуме, то руками редактировать каждую ветку просто нереал. Подскажите, может есть вариант сделать сие масштабно через БД. Хотелось бы готовый запрос, заранее спасибо!

Share this post


Link to post

Это битовая настройка (forums_bitoptions) простым запросам ее не включить.

  • Upvote 1

Share this post


Link to post
<?php

define( 'IPB_THIS_SCRIPT', 'public' );
define( 'IPS_PUBLIC_SCRIPT', 'index.php');
define( 'IPS_ENFORCE_ACCESS', true);
require_once( 'initdata.php' );
require_once( IPS_ROOT_PATH . 'sources/base/ipsRegistry.php' );
require_once( IPS_ROOT_PATH . 'sources/base/ipsController.php' );

$registry = ipsRegistry::instance();
$registry->init();
$cache        =  $registry->cache();
$caches       =& $registry->cache()->fetchCaches(); 
$settings     =& $registry->fetchSettings(); 
$member       =& $registry->member()->fetchMemberData();
$DB           = $registry->DB();

$DB->build( array( 'select' => 'id, forums_bitoptions', 'from' => 'forums', 'where' => 'parent_id > 0' ) );
$res = $DB->execute();
while( $row = $DB->fetch( $res ) )
{
$bitoptions = IPSBWOptions::thaw( $row['forums_bitoptions'], 'forums', 'forums' );
$bitoptions['bw_enable_answers'] = 1;

$bitoptions = IPSBWOPtions::freeze( $bitoptions, 'forums', 'forums' );
$DB->update( 'forums', array('forums_bitoptions' => $bitoptions), 'id='.$row['id'] );
}

  • Upvote 1

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...