I git clone the latest repo and composer install and npm install and grunt. After logged in, it showes:
I use Nginx as web server. Are there some special configs for eTemplates loading? My Nginx config is as below:
server
{
listen 443 ssl;
server_name egroupware.mycompany.com;
ssl_certificate /etc/ssl/fullchain.pem;
ssl_certificate_key /etc/ssl/privkey.pem;
root /var/www/html/egroupware;
index index.php;
client_max_body_size 512M;
rewrite ^/egroupware/(.*)$ /$1 last;
try_files $uri $uri/ /index.php?$args;
location ~ ^(?<script>.+\.php)
{
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php/php8.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$script;
fastcgi_param SCRIPT_NAME $script;
}
}