0

我的 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

我在这里忽略了什么吗?

4

1 回答 1

1

如果您在子目录中有 PHP 文件,请相应地更改根路径:

$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : '../';
于 2013-07-31T10:39:18.757 回答