Studio Toolbox v 7.14.3 doesn't display Add Panel and Add Row

We have a new installation of v 7.14.3 and the studio Toolbox in the Edit View for all modules only shows undefined where Add Panel and Add Row should be.

Any feedback or suggestions will be greatly appreciated.

Thanks,
Jack

  1. This may be a permissions issue - File ownership in particular.

If your Suite is running as user 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 Suite is not running as user 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

  1. This may be caused by empty site_url, in config.php, set it to your Suite URL: https://crm.mysite.tld.
    and your Apache virtualhost not having the DocumentRoot set to /full/path/to/suite7, for example: /home/suite7/public_html.

Check and correct both of these.

Hi Chris,
THANK YOU!!!
We suspected it was a permissions issue.
Your instructions are very precise.
We will follow your instructions.
Thanks again.
Best regards,
Jack