Comments on: Install phpBB 3 on a Debian Wheezy VPS https://www.rosehosting.com/blog/install-phpbb-3-on-a-debian-wheezy-vps/ Premium Linux Tutorials Since 2001 Fri, 16 Dec 2022 10:44:14 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: admin https://www.rosehosting.com/blog/install-phpbb-3-on-a-debian-wheezy-vps/#comment-44071 Sat, 09 May 2015 12:44:30 +0000 https://secure.rosehosting.com/blog/?p=16597#comment-44071 In reply to Marconi.

Check the log file for errors.

]]>
By: Marconi https://www.rosehosting.com/blog/install-phpbb-3-on-a-debian-wheezy-vps/#comment-44070 Sat, 09 May 2015 12:03:19 +0000 https://secure.rosehosting.com/blog/?p=16597#comment-44070 Thank you with very clear step by step intro. I follow it till the last step, but it does not do any action. And just display something like below. (I use Windows Firefox browse to access to http://192.168.1.2:3000/install)

* @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ /**#@+ * @ignore */ define(‘IN_PHPBB’, true); define(‘IN_INSTALL’, true); /**#@-*/ $phpbb_root_path = (defined(‘PHPBB_ROOT_PATH’)) ? PHPBB_ROOT_PATH : ‘./../’; $phpEx = substr(strrchr(__FILE__, ‘.’), 1); if (version_compare(PHP_VERSION, ‘5.3.3’) register(); $phpbb_class_loader = new \phpbb\class_loader(‘phpbb\\’, “{$phpbb_root_path}phpbb/”, $phpEx); $phpbb_class_loader->register(); $phpbb_class_loader_ext = new \phpbb\class_loader(‘\\’, “{$phpbb_root_path}ext/”, $phpEx); $phpbb_class_loader_ext->register(); // Set up container $phpbb_config_php_file = new \phpbb\config_php_file($phpbb_root_path, $phpEx); $phpbb_container_builder = new \phpbb\di\container_builder($phpbb_config_php_file, $phpbb_root_path, $phpEx); $phpbb_container_builder->set_use_extensions(false); $phpbb_container_builder->set_dump_container(false); $phpbb_container_builder->set_use_custom_pass(false); $phpbb_container_builder->set_inject_config(false); $phpbb_container_builder->set_compile_container(false); $other_config_path = $phpbb_root_path . ‘install/update/new/config/’; $config_path = file_exists($other_config_path . ‘services.yml’) ? $other_config_path : $phpbb_root_path . ‘config/’; $phpbb_container_builder->set_config_path($config_path); $phpbb_container_builder->set_custom_parameters(array( ‘core.root_path’ => $phpbb_root_path, ‘core.adm_relative_path’ => $phpbb_adm_relative_path, ‘core.php_ext’ => $phpEx, ‘core.table_prefix’ => ”, ‘cache.driver.class’ => ‘phpbb\cache\driver\file’, )); $phpbb_container = $phpbb_container_builder->get_container(); $phpbb_container->register(‘dbal.conn.driver’)->setSynthetic(true); $phpbb_container->compile(); $phpbb_class_loader->

]]>