Hi Ralf @RalfBecker
Any idea why this happening ?
Hello @RalfBecker
Is there something you can suggest for the above two issues
okay yeah I understand about docker installation
I have always updated to the latest version by archive installation and this is the first time I received these issues regarding js files on my non docker environment.
It was from the october version, any ideas to get rid of these will be appreciated.
Also will there be any other maintenance release version soon ?
Hi Ralf @RalfBecker
These two issues only came up after the latest update of egroupware and I’m stuck because we need to get the php 8.1 upgrade going.
I understand I might be the only one getting these issues but I have always been updated to the latest version with my archive installation but never got stalled like this before.
If there’s anything you can suggest that would be great.
One question, will now the latest version work with Composer 2 ?
I have been using Composer 1, should I upgrade for the archive installation
Yes, we are supporting the current Compose 2.x since a while now.
You can do a composer installation, that is what we do to create the container and it’s relativ easy to upgrade. It’s described in the Readme3.
Ralf
I have been upgrading egroupware with composer
composer create-project --prefer-source --keep-vcs egroupware/egroupware.
Is this still a valid way because I did it again and it’s giving me older version.
Creating a "egroupware/egroupware" project at "./egroupware"
Warning from https://repo.packagist.org: Support for Composer 1 is deprecated and some packages will not be available. You should upgrade to Composer 2. See https://blog.packagist.com/deprecating-composer-1-support/
Info from https://repo.packagist.org: #StandWithUkraine
Installing egroupware/egroupware (20.1.20210503)
- Installing egroupware/egroupware (20.1.20210503): Cloning fdaa1d1bcd from cache
Maybe that’s caused by your Composer 1.x, I would try it with an up-to-date Composer, for our container-build we always use the newest version:
Alternativ you can clone the EGroupware main repo and use our install-cli.php script to get the other depending repos. But you need Composer and npm with grunt-cli installed!
Ralf
here’s what I did like you suggested
- clone the EGroupware main repo and use our install-cli.php script to upgrade to latest version
- it was installed successfully, cleared cache in setup and tried to login, same error as below,
egroupware/api/js/jsapi/egw.min.js?
[HTTP/1.1 404 Not Found 0ms]
Loading module from “egroupware/api/js/jsapi/egw.min.js?” was blocked because of a disallowed MIME type (“text/html”)
I found the file that contains reference to this script, Framework.php
// load our clientside entrypoint egw.min.js with a cache-buster
$java_script .= '<script type="module" src="'.$GLOBALS['egw_info']['server']['webserver_url'].
'/api/js/jsapi/egw.min.js?'.filemtime(EGW_SERVER_ROOT.'/api/js/jsapi/egw.min.js').
'" id="egw_script_id"';
I replaced the file here with jsapi.js and it gives me jquery undefined after.
Despite cloning the repo as it is, it’s giving me the same issue as in the beginning.