I downloaded a completely fresh installation of 8.4.1 and notice that every module has an undefined field listed, and the two buttons below delete are ‘undefined’.
Does anyone else have this?
This is a permissions issue - File ownership in particular.
If your web user is www-data:www-data use this
find . -type d -not -perm 2755 -exec chmod 2755 {} ;
find . -type f -not -perm 0644 -exec chmod 0644 {} ;
find . ! -user www-data -exec chown www-data:www-data {} ;
chmod +x bin/console
If your user is not www-data:www-data use this
find . -type d -not -perm 2775 -exec chmod 2775 {} ;
find . -type f -not -perm 0664 -exec chmod 0664 {} ;
find . ! -user WEBUSER -exec chown WEBUSER:WEBUSER {} ;
chmod +x bin/console
Hi,
It can be related to system Base URL settings in config.php
and
htaccess
file settings.
Check and correct them