Joomla 5 Notice

We are pleased to announce that as of January 29, 2024, all of our Joomla extensions are compatible with Joomla 5.

For all who are still updateing from Joomla 3 to Joomla 4: Joomla 4 Migration instructions are available here:

There is now a separate Documentation for Visforms for Joomla 4 and for Visforms for Joomla 5!

Forum

Visforms Subscription user can ask questions in our forum. Please log in with the relevant user first.
Everybody can access the forum for reading.

Please only ask 1 question per topic.

Kein Aufruf der Formulare mehr möglich, Keine Anzeige im Backend

More
5 years 4 months ago #5920 by Norbert-2
Hallo,

es sind keine Aufrufe der Formulare im Frontend mehr möglich. Es erscheint einfach nur eine leere Seite ohne irgendeine Meldung.
Im Backend kann ich zwar die angelegten Formulare aufgelistet sehen, wenn ich jedoch ein Formular zum bearbeiten anklicke kommt nur eine leere Seite. Ein neues Formular kann ich ebenfall nicht anlegen. Auch hier erscheint nur eine leere Seite.

Es handelt sich um das Intranet eines Unternehmens.
Konfiguration des Servers:
PHP version, 5.6.39-1+ubuntu14.04.1+deb.sury.org+1

Gruß

Norbert Blume

More
5 years 4 months ago #5922 by Administrator AV
Visforms Version?
Subscription Version?

Schalte mal den Debug modus an. Gibt es da Fehlermeldungen?

Gruß,
Aicha

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).

More
5 years 4 months ago #5923 by Norbert-2
Hallo,

beim Debug Modus bekomme ich folgende Fehlermeildung:
Fatal error: Cannot use [] for reading in /var/www/html/intranet2/plugins/visforms/vfcustommailadr/vfcustommailadr.php on line 63

Es hat gestern schon nicht funktioniert.
Heute habe ich das neuste Update eingespielt.
Visforms Version
Subscription Version

Danke für die schnelle Reaktion.

Gruß

Norbert

More
5 years 4 months ago #5924 by Administrator AV
Hallo,

ok, da habe ich vielleicht php verwendet, das es erst ab php 7 gibt. Da die alten php Versionen 5.5 und 5.6 schon sehr lange keine Sicherheitsupdates mehr erhalten und deshalb nicht mehr verwendet werden sollten und auch Joomla! ja intensiv auf php 7 drängt, entwickle ich seit langem auf php 7.

Bitte versuche mal ob folgende Code-Änderung das Problem behebt:

Datei: plugins/visforms/vfcustommailadr/vfcustommailadr.php

Zeile 54-67 private funciton addMailAddress

Ersetze den Code
Code:
private function addMailAddress($address, $type) { if (empty($address)) { return; } $addressess = explode(',', $address); foreach ($addressess as $mail) { $mail = trim($mail); if (!empty($mail)) { $this->$type[] = trim($mail); } } }



mit folgendem Code
Code:
private function addMailAddress($address, $type) { if (empty($address)) { return; } $addressess = explode(',', $address); foreach ($addressess as $mail) { $mail = trim($mail); if (!empty($mail)) { switch ($type) { case 'newmailbcc' : $this->newmailbcc = trim($mail); break; case 'newmailcc' : $this->newmailcc =trim($mail); break; default : $this->newmailto = trim($mail); break; } } } }

Gruß,
Aicha

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).

More
5 years 4 months ago #5927 by Administrator AV
Hallo,
könntest du mir bitte eine Rückmeldung geben, ob das das Problem löst, damit ich es als Bugfix in den Code übernehmen kann.
Gruß,
Aicha

:idea: I recommend you the new and up-to-date documentation for Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/en/docs/
Most of this also applies retrospectively to Joomla 3.
Please only ask 1 question per topic :-).

:idea: Ich empfehle Dir die neue und aktuelle Dokumentation für Joomla 4:
docs.joomla-5.visforms.vi-solutions.de/docs/
Das meiste gilt rückwirkend auch für Joomla 3.
Bitte immer nur 1 Frage pro Thema stellen :-).
The following user(s) said Thank You: Norbert-2

More
5 years 4 months ago #5928 by Norbert-2
Hallo Aicha,

es funktioniert alles wieder.

Ich danke für die schnelle Hilfe.

Frohe Weihnachten und einen Guten Rutsch.

Gruß

Norbert

Moderators: Administrator AVAdministrator IV
Powered by Kunena Forum