Posted 21 марта, 20168 yr comment_103375 Хочу подключить меню сайта к форуму ,подключаю способом <?php include("nav.php"); ?> , но нечего не отображается,помогите nav.php находится в /public_html ,а скрипт ipb в /public_html/forum
21 марта, 20168 yr comment_103377 admin/applications/forums/extensions открываем файл "furlTemplates.php" ищем: 'act=idx' => array( 'app' => 'forums', 'allowRedirect' => 0, 'out' => array( '#act=idx(&|$)#i', 'index$1' ), 'in' => array( 'regex' => '#^/index(/|$|\?)#i', 'matches' => array( array( 'act', 'idx' ) ) ) ),); меняем на это 'act=idx' => array( 'app' => 'forums', 'allowRedirect' => 0, 'out' => array( '#act=idx(&|$)#i', 'forum$1' ), 'in' => array( 'regex' => '#^/forum(/|$|\?)#i', 'matches' => array( array( 'act', 'idx' ) ) ) ),); После всего этого обновляем furl кеш в админке форума Система>Инструменты>Управление кешем>Обновить furl кеш.
21 марта, 20168 yr Author comment_103381 После нажатия Обновить furl кеш. Parse error: syntax error, unexpected ')' in /home/u111111/public_html/forum/admin/applications/forums/extensions/furlTemplates.php on line 77
23 марта, 20168 yr comment_103489 В 21.3.2016 в 23:14, usergeuv1 сказал: После нажатия Обновить furl кеш. Parse error: syntax error, unexpected ')' in forum/admin/applications/forums/extensions/furlTemplates.php on line 77 и у меня Есть как то по другому это сделать? подключить php файл
24 марта, 20168 yr comment_103533 Цитата <?php include("nav.php"); ?> В шаблоне IPB 3.x логика raw-php работать не будет. Используйте теги "<php>", "</php>". Цитата Есть как то по другому это сделать? Если скрипт лежит в корневой папке IP.Board: {parse include="file.php"}
24 марта, 20168 yr Author comment_103566 7 часов назад, Dmitriy427 сказал: В шаблоне IPB 3.x логика raw-php работать не будет. Используйте теги "<php>", "</php>". Если скрипт лежит в корневой папке IP.Board: {parse include="file.php"} Красавчик,спаибо тебе Тему можно закрыть
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.