I wanna config IMCE profiles and also roles and also the folders in profile based on each barnd in multisite of drupal 8.0 but i don't find any documentaion about this in IMCE , how i can do this ?

Comments

HbtTundar created an issue. See original summary.

thalles’s picture

You can get the values based on the settings form to overhide IMCE settings like:

sites/default/settings.php

$config['imce.settings']['abs_urls'] = TRUE;
$config['imce.profile.admin']['conf']['folders'][0]['path'] = '.';

But, I do not like this solution, because, the form show an information, but another will be run

However in Drupal 8 this not will be reflected in IMCE form, but if you show the global settings with:
\Drupal::config('imce.settings')->get('abs_urls')

you will see this settings

See: Configuration override system

thalles’s picture

Status: Active » Fixed
thalles’s picture

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.