Issues with user menu 18.0.2 FreeBSD

Nextcloud version 18.0.2
Operating system and version FreeBSD 11.3-RELEASE-p6
Apache or nginx version Apache24-2.4.41
PHP version php72-7.2.28

The issue you are facing:
User menu looks different (Very tall entries instead of the short height entries; see image),
when I change the quota it doesn’t show the change or any indication that it will be changed,
difficulty adding users (works after a few tries but the error prompts don’t always show up).

This is NOT an issue with not being able to edit your own password due to admin. This is a separate issue.

Is this the first time you’ve seen this error? Yes.

Steps to replicate it:

  1. Installed Nextcloud 18.0.2
  2. Navigate to user menu via the menu in top right nav.
  3. Try to add users

The output of your Nextcloud log in Admin > Logging:

Nothing of note in /var/log/nextcloud/nextcloud.log.

The output of your config.php file in \usr\local\www\nextcloud\config\ (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'apps_paths' => 
  array (
    0 => 
    array (
      'path' => '/usr/local/www/nextcloud/apps',
      'url' => '/apps',
      'writable' => true,
    ),
    1 => 
    array (
      'path' => '/usr/local/www/nextcloud/apps-pkg',
      'url' => '/apps-pkg',
      'writable' => false,
    ),
  ),
  'logfile' => '/var/log/nextcloud/nextcloud.log',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'instanceid' => 'REDACTED',
  'passwordsalt' => 'REDACTED',
  'secret' => 'REDACTED',
  'trusted_domains' => 
  array (
    0 => '192.168.1.xxx',
    1 => 'cloud.REDACTED.com',
  ),
  'datadirectory' => '/mnt/data',
  'dbtype' => 'mysql',
  'version' => '18.0.2.2',
  'overwrite.cli.url' => 'http://192.168.1.xxx',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost:/tmp/mysql.sock',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'REDACTED',
  'dbpassword' => 'REDACTED',
  'installed' => true,
  'redis' => 
  array (
    'host' => '/tmp/redis.sock',
    'port' => 0,
  ),
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'theme' => '',
  'loglevel' => 2,
  'maintenance' => false,
  'mail_smtpmode' => 'smtp',
  'mail_smtpsecure' => 'tls',
  'mail_sendmailmode' => 'smtp',
  'mail_from_address' => 'REDACTED',
  'mail_domain' => 'REDACTED',
  'mail_smtpauth' => 1,
  'mail_smtphost' => 'REDACTEDm',
  'mail_smtpport' => '587',
  'mail_smtpname' => 'REDACTED',
  'mail_smtppassword' => 'spamxpftrahndrah',
  'mail_smtpauthtype' => 'LOGIN',
);

The output of your Apache/nginx/system log in /var/log/____:

No log provided.

You are not blocking or failing to load css/js files? There are also some small issues regarding the user management (you couldn’t change stuff of your own admin account, I think). check out for loaded content and the bug tracker for known issues: https://github.com/nextcloud/server/issues

Thanks for responding! I don’t think I’m blocking or failing to load any files. I inspected the web page with chrome tools on two different machines and nothing looks out of the ordinary. Yeah, I took a look around the forums and github to see if anyone had a similar issue but nothing of note. It might be an anomaly in my instance. I followed a really good guide from samueldowling.com a few times before and never had this UI issue before. I was hoping there was a way to reinstall Nextcloud or the required dependencies but I’m weary to do so.