我的 PHPBB 版本安装/board
在我的网站上
我正在尝试在一个名为store
该文件的新目录中创建一个自定义页面decals.php
贴花.php
<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();
page_header('Store - Decals');
$template->set_filenames(array(
'body' => 'store_decals_body.html',
));
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
page_footer();
?>
已store_decals_body.html
上传到我的styles
目录,我似乎无法开始mysite.com/board/store/decals.php
工作。它总是让我mysite.com/board
我在这里忽略了什么吗?