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.