• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Horde error

B

budwaiser

Guest
Hi,
today i have noticed this error (it happens when some of my clients try to enter webmail):


Notice: Undefined index: app in d:\wwwroot\webmail\horde\services\portal\index.php on line 66

Notice: Undefined index: params in d:\wwwroot\webmail\horde\services\portal\index.php on line 66

Notice: Undefined index: params in d:\wwwroot\webmail\horde\services\portal\index.php on line 66

Warning: getblock(d:\wwwroot\webmail\horde\config/../lib/Block/.php): failed to open stream: No such file or directory in d:\wwwroot\webmail\horde\lib\Horde\Block\Collection.php on line 118

Warning: getblock(): Failed opening 'd:\wwwroot\webmail\horde\config/../lib/Block/.php' for inclusion (include_path='d:\wwwroot\webmail\horde\lib;D:\wwwroot/webmail/horde/pear;./lib;.;./includes;./pear') in d:\wwwroot\webmail\horde\lib\Horde\Block\Collection.php on line 118



Someone can help me to fix it?

Thank you
 
Hi,

I am having the same problem. Have you found a solution?

Please let me know,
Ludo
 
Yes, now it's ok. Here the solution:

There were made following modifications in code:

horde/services/portal/index.php
line 46
- $cssApps[$item['app']] = $item['app'];
+ if (isset($item['app']))
+ $cssApps[$item['app']] = $item['app'];
line 65
- if (is_array($item)) {
+ if (is_array($item) && isset($item['app'])) {

"-" - string was deleted
"+" - string was added

Bye!
 
Back
Top