by axew3 » Mon May 22, 2017 9:55 pm
are you using the custom config.php?
if yes, check that the very last line on file, after you have edit it with same values as the phpbb root config.php file,
Code: Select all
// @define('PHPBB_INSTALLED', true);
need to be set as (activate it removing // chars in front)
in the case of root phpBB config.php inclusion you should check that the path is really correct, and that you are not into subdomain install, because if this is the case the inclusion can fail and there is documentation to resolve in case, but the best way is the custom config.php. I assume you have setuo correct path so maybe the first above is the problem?
are you using the custom config.php?
if yes, check that the very last line on file, after you have edit it with same values as the phpbb root config.php file,
[code]// @define('PHPBB_INSTALLED', true);[/code]
need to be set as (activate it removing // chars in front)
[code]@define('PHPBB_INSTALLED', true);[/code]
in the case of root phpBB config.php inclusion you should check that the path is really correct, and that you are not into subdomain install, because if this is the case the inclusion can fail and there is documentation to resolve in case, but the best way is the custom config.php. I assume you have setuo correct path so maybe the first above is the problem?