Jump to content

falkon

Пользователи

Solutions

  1. falkon's post in Помогите перименовать. was marked as the answer   
    В шаблонах поищи.
    globaltemplate
  2. falkon's post in Нету званий was marked as the answer   
    '?do=embed' frameborder='0' data-embedContent>>
  3. falkon's post in Репутация пользователей. Как исправить was marked as the answer   
    2. Создаешь группу проверенные когда пользователь из группы пользователи(запрещено ставить репутацию) набирает 10 сообщений переходит в группу проверенные
  4. falkon's post in Не могу сделать добавление темы через php скрипт was marked as the answer   
    Нашел, всем спс
    <?php //------------------------- // Init //------------------------- 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(); $DB = $registry->DB(); require_once( IPSLib::getAppDir('forums') . '/sources/classes/post/classPost.php' ); $member_id = 1; $member = IPSMember::Load( $member_id, 'members' ); $member['member_group_id'] = 4; $member['g_post_new_topics'] = 1; $forumID = 181; $postClass = new classPost( $registry ); $postClass->setForumID( $forumID ); $postClass->setForumData( ipsRegistry::getClass('class_forums')->forum_by_id[$forumID] ); $postClass->setTopicTitle( "title" ); $postClass->setPostContent( "text" ); $postClass->setAuthor( $member ); if($postClass->addTopic()) { echo "ok"; } else { echo $postClass->_postErrors."<br>". $postClass->getAuthor( 'member_id' )."<br>". $postClass->getAuthor('g_post_new_topics')."<br>". $perm_array; } ?>