Sorry to bother you but I am very interested to have an insight/school lesson from an expert like you about these things. https://area51.phpbb.com/phpBB/viewtopi ... 06#p290106Nicofuma wrote:@
TIA for your time if any.
Sorry to bother you but I am very interested to have an insight/school lesson from an expert like you about these things. https://area51.phpbb.com/phpBB/viewtopi ... 06#p290106Nicofuma wrote:@
I see, thanks.Nicofuma wrote: Tue Apr 12, 2016 4:23 am The environment is a way to define different services and settings for the same board. Basically it allow us to have the installer using the same code but being completely dissociated and it also allow us having an env optimized for production and one optimized for development (slower but with debug tools and live reload of the cache).
Code: Select all
@define('PHPBB_INSTALLED', true);
@define('PHPBB_DISPLAY_LOAD_TIME', true);
//@define('PHPBB_ENVIRONMENT', 'production');
@define('DEBUG_CONTAINER', true);
Code: Select all
@define('PHPBB_INSTALLED', true);
@define('PHPBB_DISPLAY_LOAD_TIME', true);
@define('PHPBB_ENVIRONMENT', 'production');
@define('DEBUG_CONTAINER', true);
Code: Select all
@define('PHPBB_INSTALLED', true);
@define('DEBUG', true);
@define('DEBUG_CONTAINER', true);
@define('PHPBB_DISPLAY_LOAD_TIME', true);
Code: Select all
@define('PHPBB_ENVIRONMENT', 'development');
CHItA wrote: Wed Apr 13, 2016 7:23 am TryCode: Select all
@define('PHPBB_ENVIRONMENT', 'development');
That will only work if you have a "development" config in place otherwise it will give an error.CHItA wrote: Wed Apr 13, 2016 7:23 am TryCode: Select all
@define('PHPBB_ENVIRONMENT', 'development');