Jump to content
View in the app

A better way to browse. Learn more.

IPBMafia.ru - поддержка Invision Community, релизы, темы, плагины и приложения

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

RealUser

Актив
  • Регистрация

  • В сети

  1.    sdgfhhfd reacted to пост в теме: ForumVolt skin
  2.    Vyacheslav2 reacted to пост в теме: ForumVolt skin
  3.    Kira reacted to пост в теме: ForumVolt skin
  4.    Андрей Вінницький reacted to пост в теме: ForumVolt skin
  5. Лучше было бы, если бы Вы обратились в тему хука, по которому у Вас возникают вопросы. Всего хорошего)
  6.    Эрик Королёв reacted to файл: (ReUs) NewYear.
  7.    Эрик Королёв reacted to файл: ForumVolt skin
  8.    yiran reacted to пост в теме: Bump Up Topic 2.0.2 RUS /Поднятие темы
  9. Когда результаты?) Эх, в этом году тоже в пролете(
  10. С Новым Годом)
  11.    RealUser reacted to пост в теме: C Новым 2015 годом!
  12. Recouse в бане. Всё равно участвует?)
  13. Я И флудер и Хелпер? Хммм.
  14. AngelRay, что именно не нравиться? Просто вставьте в GlobalTempalate нужные куски кода
  15. /admin/applications/forums/extensions/furlTemplates.php заменить все на: <?php /** * <pre> * Invision Power Services * IP.Board v3.2.3 * Sets up SEO templates * Last Updated: $Date: 2011-08-02 15:53:39 -0400 (Tue, 02 Aug 2011) $ * </pre> * * @author $Author: bfarber $ * @copyright © 2001 - 2009 Invision Power Services, Inc. * @license __www.invisionp... * @package IP.Board * @subpackage Forums * @link __www.invisionp... * @since 20th February 2002 * @version $Rev: 9351 $ * */ if ( ! defined( 'IN_IPB' ) ) { print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files."; exit(); } /** * SEO templates * * 'allowRedirect' is a flag to tell IP.Board whether to check the incoming link and if not formatted correctly, redirect the correct one * * OUT FORMAT REGEX: * First array element is a regex to run to see if we've a match for the URL * The second array element is the template to use the results of the parenthesis capture * * Special variable #{__title__} is replaced with the $title data passed to output->formatUrl( $url, $title) * * IMPORTANT: Remember that when these regex are used, the output has not been fully parsed so you will get: * showuser={$data['member_id']} NOT showuser=1 so do not try and match numerics only! * * IN FORMAT REGEX * * This allows the registry to piece back together a URL based on the template regex * So, for example: "/user/(d+?)/", 'matches' => array( array( 'showuser' => '$1' ) )tells IP.Board to populate 'showuser' with the result * of the parenthesis capture #1 */ $_SEOTEMPLATES = array( 'showannouncement' => array( 'app' => 'forums', 'allowRedirect' => 1, 'out' => array( '#showannouncement=(.+?)((?:&|&)f=(.+?))?(&|$)#i', 'forums/forum-$3/announcement-$1-#{__title__}/$4' ), 'in' => array( 'regex' => '#/forums/forum-(d+?)?/announcement-(d+?)-#i', 'matches' => array( array( 'showannouncement', '$2' ), array( 'f', '$1' ) ) ) ), 'showforum' => array( 'app' => 'forums', 'allowRedirect' => 1, 'out' => array( '#showforum=(.+?)(&|$)#i', 'forums/forum/$1-#{__title__}/$2' ), 'in' => array( 'regex' => '#^/forums/forum/(d+?)-#i', 'matches' => array( array( 'showforum', '$1' ) ) ) ), 'showtopicunread'=> array( 'app' => 'forums', 'allowRedirect' => 1, 'out' => array( '#showtopic=(.+?)(?:&|&)view=getnewpost(&|$)#i', 'forums/topic/$1-#{__title__}/unread/$2' ), 'in' => array( 'regex' => '#^/forums/topic/(d+?)-([^/]+?)/unread(/|$)#i', 'matches' => array( array( 'showtopic', '$1' ), array( 'view', 'getnewpost' ) ) ) ), 'showtopicnextunread'=> array( 'app' => 'forums', 'allowRedirect' => 1, 'out' => array( '#showtopic=(.+?)(?:&|&)view=getnextunread(&|$)#i', 'forums/topic/$1-#{__title__}/nextunread/$2' ), 'in' => array( 'regex' => '#^/forums/topic/(d+?)-([^/]+?)/nextunread(/|$)#i', 'matches' => array( array( 'showtopic', '$1' ), array( 'view', 'getnextunread' ) ) ) ), 'showtopic' => array( 'app' => 'forums', 'allowRedirect' => 1, 'out' => array( '#showtopic=(.+?)(&|$)#i', 'forums/topic/$1-#{__title__}/$2' ), 'in' => array( 'regex' => '#^/forums/topic/(d+?)-#i', 'matches' => array( array( 'showtopic', '$1' ) ) ) ), 'acteqst' => array( 'app' => 'forums', 'allowRedirect' => 1, 'out' => array( '#act=ST(.*?)&t=(.+?)(&|$)#i', 'forums/topic/$2-#{__title__}/$3' ), 'in' => array( 'regex' => '#^notavalidrequest$#i', 'matches' => array( array( 'showtopic', '0' ) ) ) ), 'act=idx' => array( 'app' => 'forums', 'allowRedirect' => 0, 'out' => array( '#act=idx(&|$)#i', 'forums/$1' ), 'in' => array( 'regex' => '#^/forums(/|$|?)#i', 'matches' => array( array( 'act', 'idx' ) ) ) ), ); /initdata.php Ищем if ( ! defined( 'IPS_DEFAULT_PUBLIC_APP' ) ) { define( 'IPS_DEFAULT_PUBLIC_APP', 'forums' ); } Заменяем: if ( ! defined( 'IPS_DEFAULT_PUBLIC_APP' ) ) { define( 'IPS_DEFAULT_PUBLIC_APP', 'ccs' ); } Белиссимо. Не забудьте обновить кеш ЧПУ.
  16. Вы, когда переносили, делали изменения в conf_global? Попробуйте обратиться к Технической поддержке вашего сервера с ключом запроса "ошибка mysqld.sock".
  17. Выставите права на UPGRADE.LOG Вообще, для теста, выставите 777 для директорий и под-директорий.
  18. В этой ошибке виноваты не вы. Это косяк переводчиков. Решение в картинках:
  19. Установил стиль себе на localhost. Одним словом, вот картинки:
  20. На Вашем форуме не вижу данного стиля.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.