21 / 35
Nov 2022

Hello I just updated to the latest version with archive installation and getting below errors after login.

GEThttp://website/egroupware/api/js/jsapi/egw.min.js?[HTTP/1.1 404 Not Found 0ms]
Loading module from “http://website/egroupware/api/js/jsapi/egw.min.js?” was blocked because of a disallowed MIME type (“text/html”).
index.php
Loading failed for the module with source “http://website/egroupware/api/js/jsapi/egw.min.js?”. index.php:110:1
Uncaught TypeError: window.egw_ready is undefined
    <anonymous> http://website/egroupware/notifications/js/notificationajaxpopup.js?1665000577:19
    <anonymous> http://website/egroupware/notifications/js/notificationajaxpopup.js?1665000577:950
notificationajaxpopup.js:19

Looks like you used the first archives I uploaded, they were lacking the minified JavaScript sources.

Download it again, and it should work.

Ralf

I downloaded the version again and it’s still giving me this issue

GEThttp:/website/egroupware/api/js/jsapi/egw.min.js?
[HTTP/1.1 404 Not Found 0ms]

Loading module from “http://website/egroupware/api/js/jsapi/egw.min.js?” was blocked because of a disallowed MIME type (“text/html”)

Actually it’s giving the same two issues as first time with
Uncaught TypeError: window.egw_ready is undefined
and egw.min.js

api/js/jsapi/egw.min.js gibt es nicht und soll es auch nicht geben. Schau mal in Deiner Document Root ob das File evtl. bei Dir vorhanden aber nicht lesbar ist, dann lösche es einfach.

Die Datei die es gibt heißt api/js/jsapi.min.js und die ist auch in dem aktuellen (.bz2) Archive enthalten, habe es gerade nochmal runter geladen und entpackt.

Warum verwendest Du nicht die Standard Installation, die hat mehr Features (z.B. Push) und ist einfacher zu handhaben?

Ralf

There is no file in the js directory by that name. However I found references in the code for that file and also I noticed there’s no jsapi.min.js it’s only jsapi.js.

Framework.php file

// 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"';

/**
	 * Constructor for static variables
	 */
	public static function init_static()
	{
		self::$js_include_mgr = new Framework\IncludeMgr(array(
			// We need LABjs, but putting it through Framework\IncludeMgr causes it to re-load itself
			//'/api/js/labjs/LAB.src.js',

			// always load jquery (not -ui) first
			'/vendor/bower-asset/jquery/dist/jquery.js',
			// always include javascript helper functions
			'/api/js/jsapi.min.js',
			'/api/js/jsapi/egw.min.js',
		));
	}

Bundle.php

foreach($js_includes as $file)
		{
			if (in_array($file, ['/api/js/jsapi/egw.js','/api/js/jsapi/egw.min.js'])) continue;	// loaded via own tag, and we must not load it twice!

I did not find jsapi.min.js, there’s only jsapi.js. Also egw.min.js is non existant in the directory.

How complicated will it be to change the installation to docker

Not complicated. If the conditions fit.

For you, because you don’t have a package installation:

Installation on a suitable system
Example:

Copy files (including backup) to new system
Read also:

Import backup
Ready


Please read also:

Stefan

even on docker test setup these issues are happening. Please advice

9 days later

No, does not happen for me.

It must be something in your environment.

Hundreds of installations using the docker container, and you are the only one reporting that problem.

Sorry :frowning:

Ralf

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

okay updated composer and ran this command
composer create-project --prefer-source --keep-vcs egroupware/egroupware

It gives this error

[InvalidArgumentException]
Could not find package egroupware/egroupware. with stability stable.

here’s what I did like you suggested

  1. clone the EGroupware main repo and use our install-cli.php script to upgrade to latest version
  2. 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.

Have you installed npm and grunt-cli, as I asked, so install-cli.php finds them and creates the minified JavaScript Files?

Ralf

yes, npm and grunt cli was installed and it installed all the dependencies.
I now see jdots and node_modules folder in egroupware directory. Composer is also updated to 2.0

Where are the minified files supposed to be located ?
I don’t see any minified files in in the jsapi folder

I don’t see the js files in Gruntfile.js.
I installed npm, node js and grunt cli, did the clone of repo and then ./install-cli.php in egroupware directory.
Am I missing anything ?

Probably :wink:

Have you tried running grunt manually, in case install-cli.php does not find grunt:

cd /path/to/egroupware
grunt

install-cli.php also outputs the tasks it run, did that include grunt?

Ralf

grunt
Running “cssmin:pixelegg” (cssmin) task

5 sourcemaps created.
5 files created. 2.03 MB → 1.45 MB

Running “cssmin:jdots” (cssmin) task

3 sourcemaps created.
3 files created. 607.3 kB → 439.69 kB

Are you sure you are on the 21.1 branch and not master, as grunt build no javascript files.

Test with git branch or change with ./install-cli.php 21.1

Ralf

okay, yeah I was on master.
That worked.
But now , I went to setup to make sure db and my custom app is working but I see this



process->upgrade(): Application not installed: news_admin
process->upgrade(): Incoming : appname: openid, version: 21.1.001, status: U
process->upgrade(): No table upgrade available for appname: openid, version: 21.1.001
process->upgrade(): Outgoing : appname: openid, status: F

process->upgrade(): Application not installed: projectmanager

process->upgrade(): Application not installed: registration

process->upgrade(): Application not installed: resources

process->upgrade(): Application not installed: rocketchat
process->upgrade(): Incoming : appname: smallpart, version: 21.1.005, status: U
process->upgrade(): No table upgrade available for appname: smallpart, version: 21.1.005
process->upgrade(): Outgoing : appname: smallpart, status: F

process->upgrade(): Application not installed: swoolepush

process->upgrade(): Application not installed: timesheet

process->upgrade(): Application not installed: tracker

process->pass(): api skipped on this pass
process->pass(): openid skipped on this pass
process->pass(): smallpart skipped on this pass
process->pass(): #19 for upgrade processing
process->upgrade(): Incoming : appname: api, version: 21.1.003, status: U
process->upgrade(): No table upgrade available for appname: api, version: 21.1.003
process->upgrade(): Outgoing : appname: api, status: F

process->upgrade(): Application not installed: bookmarks

process->upgrade(): Application not installed: news_admin
process->upgrade(): Incoming : appname: openid, version: 21.1.001, status: U
process->upgrade(): No table upgrade available for appname: openid, version: 21.1.001
process->upgrade(): Outgoing : appname: openid, status: F

process->upgrade(): Application not installed: projectmanager

process->upgrade(): Application not installed: registration

process->upgrade(): Application not installed: resources

process->upgrade(): Application not installed: rocketchat
process->upgrade(): Incoming : appname: smallpart, version: 21.1.005, status: U
process->upgrade(): No table upgrade available for appname: smallpart, version: 21.1.005
process->upgrade(): Outgoing : appname: smallpart, status: F

process->upgrade(): Application not installed: swoolepush

process->upgrade(): Application not installed: timesheet

process->upgrade(): Application not installed: tracker

process->pass(): api skipped on this pass
process->pass(): openid skipped on this pass
process->pass(): smallpart skipped on this pass
Setup failure: excess looping in process->pass():
Pass:

Array
(
)


Passed:

Array
(
)

EGroupware does NOT support downgrading the DB schema.

Looking at the updates, they don’t stop your instance from working:

So either do nothing, or use the following SQL to set the version again back to 21.1.001:

UPDATE egw_applications SET app_version='21.1.001' WHERE app_name='api'

Ralf

okay thankyou, just curious why was there a mismatch of app version when upgrading like this

5 months later

Hello,

I’ve got the exact same error with : ./install-cli.php -v 23.1.20230314 : 404 for /api/js/jsapi/egw.min.js and egw_LAB is not defined

Doing the same install this morning with /install-cli.php -v 21.1.20230210 gives no error.

The error is :

52 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
/usr/bin/npm install --legacy-peer-deps

up to date, audited 501 packages in 770ms

50 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities
/usr/bin/npm run build

> EGroupware@23.1.20230228 build
> rollup -c

[!] Error: ENOENT: no such file or directory, scandir './chunks'
Error: ENOENT: no such file or directory, scandir './chunks'
    at Object.readdirSync (node:fs:1456:3)
    at Object.<anonymous> (/home/egroup/public_html/rollup.config.js:34:4)
    at Module._compile (node:internal/modules/cjs/loader:1275:14)
    at Object.require.extensions.<computed> [as .js] (/home/egroup/public_html/node_modules/rollup/dist/shared/loadConfigFile.js:621:20)
    at Module.load (node:internal/modules/cjs/loader:1133:32)
    at Function.Module._load (node:internal/modules/cjs/loader:972:12)
    at Module.require (node:internal/modules/cjs/loader:1157:19)
    at require (node:internal/modules/helpers:119:18)
    at loadConfigFromBundledFile (/home/egroup/public_html/node_modules/rollup/dist/shared/loadConfigFile.js:631:42)
    at getDefaultFromTranspiledConfigFile (/home/egroup/public_html/node_modules/rollup/dist/shared/loadConfigFile.js:613:12)


14 tasks successful run, 2 failed: egroupware, rollup (npm run build)

node - v : v19.8.1
rollup -v : v3.20.0

I’m trying to figure it out …

If you have some clue …

Thanks,

Eric

Hello,

Its solved.

Thats simply the folder chunks that is not created when sync files. I think it should be checked/created from install-cli.php.

So, create a folder named chunks at root of project and that will be solved.

Thanks,

Eric

13 days later