Summary | In whups-mail-filter I had to edit Application.php location |
Queue | Whups |
Queue Version | 2.0 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | jan (at) horde (dot) org |
Requester | szimszon (at) oregpreshaz (dot) eu |
Created | 12/06/2011 (4974 days ago) |
Due | |
Updated | 12/21/2011 (4959 days ago) |
Assigned | |
Resolved | 12/09/2011 (4971 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
whups-mail-filter is found only the Application.php not.
But If I see the
http://git.horde.org/horde-git/-/commit/330c5ace6772b6cb4e890ad3b47806fae4aac9cb git
diff:
---
if (file_exists(dirname(__FILE__) . '/../../whups/lib/Application.php')) {
$baseDir = dirname(__FILE__) . '/../';
} else {
---
I think it should look like:
---
if (file_exists(dirname(__FILE__) . '/../../whups/lib/Application.php')) {
$baseDir = dirname(__FILE__) . '/../../';
} else {
---
Command output: PHP Warning:
require_once(/usr/share/php/www/horde/whups/lib/Application.php):
failed to
open stream: No such file or directory in
/var/www/horde/pear/whups-mail-filter on line 66 PHP Fatal error:
require_once(): Failed opening required
'/usr/share/php/www/horde/whups/lib/Application.php'
(include_path='/var/www/horde/pear/php') in
/var/www/horde/pear/whups-mail-filter on line 66
Because horde isn't installed in common way but in a separate pear
environment.
[jan] Fix some CLI scripts if run from a PEAR installation (
Bug #10839).6 files changed, 35 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/330c5ace6772b6cb4e890ad3b47806fae4aac9cb
State ⇒ Resolved
[jan] Fix some CLI scripts if run from a PEAR installation (
Bug #10839).6 files changed, 35 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/330c5ace6772b6cb4e890ad3b47806fae4aac9cb
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ In whups-mail-filter I had to edit Application.php location
Queue ⇒ Whups
Milestone ⇒
Patch ⇒ No
State ⇒ Unconfirmed
In whups-mail-filter I had to edit Application.php location at line 59
because it is in
/../webmail/lib/Application.php
Horde is installed in separate pear location...