[commits] [Wiki] changed: Doc/Dev/H6/Developer/KnownIssues
Wiki Guest
wikiguest at horde.org
Fri Mar 17 07:11:43 UTC 2023
guest [91.32.116.242] Fri, 17 Mar 2023 07:11:43 +0000
Modified page: https://wiki.horde.org/Doc/Dev/H6/Developer/KnownIssues
New Revision: 5
Change log: added rampage
@@ -1,5 +1,27 @@
+ Known issues for the lastest alpha version
+
+++ horde
+
++++ autoload.php): Failed to open stream
+
+**Issue description:**
+
+<code>
+Got error 'PHP message: PHP Warning:
require_once(/var/www/html/horde/vendor/vendor/autoload.php): Failed
to open stream: No such file or directory in
/var/www/html/horde/vendor/horde/horde/rampage.php on line 2 PHP
message: PHP Fatal error: Uncaught Error: Failed opening required
'/var/www/html/horde/vendor/vendor/autoload.php'
(include_path='.:/usr/share/php') in
/var/www/html/horde/vendor/horde/horde/rampage.php:2\nStack trace:\n#0
{main}\n thrown in /var/www/html/horde/vendor/horde/horde/rampage.php
on line 2'
+</code>
+
+**Proposed solution from Michael <michael at johalla.de>**
+
+I changed the path to autoload.php in vendor/horde/horde/rampage.php from
+<code>
+require_once dirname(__FILE__, 3) . '/vendor/autoload.php';
+</code>
+to
+<code>
+require_once dirname(__FILE__, 3) . '/autoload.php';
+</code>
+
++ turba
+++ Non-static method Horde_Form::getType() cannot be called statically
@@ -29,10 +51,10 @@
<code>
@@ -72,11 +72,11 @@
if ($type == 'email') {
- $this->variables[$this->columns[$c - 1]] =
- new Horde_Form_Variable('', $this->columns[$c - 1],
+ $this->variables[$this->columns[$c - 1]] =
+ new Horde_Form_Variable('', $this->columns[$c - 1],
- Horde_Form::getType('html'), false);
+ (new
Horde_Form(0))->getType('html'), false);
} else {
@@ -46,9 +68,9 @@
</code>
+++ This will fix the error you get if you try to add an image or
edit an image for a contact in your address book
-
+
**Proposed solution from Brent <impuser at bitrealm.com>**
<code>
@@ -63,8 +85,10 @@
++ kronolith
+++ Non-static method Date_TimeZone::isValidID() cannot be called
statically in /usr/share/php/Date/TimeZone.php:4717
+
+**Issue description:**
<code>
EMERG: HORDE [kronolith] Error: Non-static method
Date_TimeZone::isValidID() cannot be called statically in
/usr/share/php/Date/TimeZone.php:4717
Stack trace:
More information about the commits
mailing list