• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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