Beiträge von MrMusic

    Hi,

    ...is Joomlagallery J4 version already usable on an online J4 site?

    unfortunately no, we are currently still in early development.


    The lower the support, the longer it takes. The greater the support, the faster JoomGallery 4 would be ready. :)


    Regards

    MrMusic

    to uninstall your component (joom gallery) completely I have to remove it from MySql ,

    No, if you uninstall the component in Joomla, the associated JoomGallery database tables will be permanently deleted.

    guess what I want to show in:


    files images/ directory


    probably all my files not your component files...

    Normally, you should be able to set the directory from which the images are loaded in the module or plugin you are using

    Maybe you should create your own directory under 'images' and save your images there and not under 'images/joomgallery'.

    Hi,


    die Einstellungen für das dynamische Wasserzeichen und die dynamische Größenänderung findest du im Konfigurations-Manager im Tab Bildmanipulation >> Dynamische Anpassungen

    Dort "Wasserzeichen einfügen?" und "Dynamischer Zuschnitt" auf Nein stellen.

    Dann kannst du überprüfen ob weiterhin diese temporäre Dateien erzeugt werden.


    Viele Grüße

    MrMusic

    Hi,


    wenn du Akeeba Backup benutzt würde ich folgendermaßen vorgehen:


    1. Sichern von Joomla und der Datenbank

    - Backup der Joomla-Dateien und der gesamten Datenbank (einschl. der JoomGallery-Tabellen).

    - Das Verzeichnis mit den JoomGallery-Bildern (normalerweise images/joomgallery) vom Backup ausschließen.


    2. Sichern der JoomGallery Bilderordner

    - Das Verzeichnis mit den Bildern (normalerweise images/joomgallery) per FTP auf den lokalen Rechner herunterladen.


    So dauert das Backup mit Akeeba Backup nicht lange und die erzeugte Datei ist relativ klein.


    Viele Grüße

    MrMusic

    Hi,


    well, reCaptcha 2.0 can be used in the JoomGallery comment function via plugin. But i can't say how well reCaptcha 2.0 protects against spam.


    So - big question - is there any setting I have overlooked in the Joomgallery configuration which restricts the length of the comment and which allows to blacklist words?

    No, the integrated comment function of the JoomGallery does not offer such functions.


    Instead of the integrated comment function of the JoomGallery you can alternatively use e.g. JComments in JoomGallery. JComments offers many more settings and also has additional protection features to protect you from spam.

    We offers a plugin and a module for the integration with JComments in our downloads.


    Regards

    MrMusic

    Ich denke, das Problem ist nun identifiziert. Der Hoster IONOS definiert in der php.ini den Wert von memory_limit mit -1.

    Die JoomGallery prüft den Wert von memory_limit auf bestimmte Einheiten (K, M, G). Der (unlogische) Wert -1 verursacht einen Fehler bei dieser Prüfung.

    Vermutlich können wir das Problem lösen indem wir in Zeile 2326 und 2332 die Prüfung von != 0 auf > 1 ändern. Einen Vorschlag habe ich mal auf Github eingereicht.

    Hi,


    in addition to what has already been said:

    1. With the help of Joomla's access rights, you can determine which user group is allowed to 'delete' or 'edit'.

    You can define the setting for the respective user group once in the JoomGallery options, then this is normally inherited by all categories and images.

    Here is a short example: https://www.en.joomgalleryfriends.net/checklist.html


    2. In order to prevent a user from changing certain data fields, you have to set a

    Code
    readonly="true"

    for the corresponding field in the xml-file.

    For the frontend edit form you can find the corresponding file here: ...components/com_joomgallery/models/forms/edit.xml

    Then you could leave only the description field changeable for example.


    Regards

    MrMusic

    Hi,


    the size of the input box is determined by the respective template and not by JoomGallery.

    The following CSS statement in the template.css of protostar determines the width of the input box:

    CSS
    input, textarea, .uneditable-input {
      width: 206px;
    }


    As Alexander has already written, you can also enlarge the size with the mouse.


    Regards

    MrMusic

    Hi,


    the question is whether ImageMagick has integrated WebP support at all. Often this is not the case.

    Is WEBP listed as a supported format in 'ImageMagick supported formats'?

    Maybe you can ask your hoster.


    Regards

    MrMusic

    Sobald ich in der Galerieübersicht eine Kategorie öffne werden die einzelnen Bilder wie vor abgebildet...

    Das ist die Kategorieansicht, wie in der Doku erklärt.

    Die zugehörigen Einstellungen findest du im Konfigurations-Manager im Tab Kategorie-Ansicht >> Generelle Einstellungen.

    Ein workaround für mich wäre, wenn man die Höhe des Bildfeldes festlegen kann

    Ja, es wäre möglich. Wobei ich hier 'min-height' benutzen würde. Dazu folgenden Code im CSS-Manager der JoomGallery eingeben:

    CSS
    .joomimg169_img {
      min-height: 270px;
    }


    Könnte ich das über den CSS Manager vielleicht hinbekommen, so dass es für alle Module gilt?


    Da jede Modul-Instanz seine eigene ID hat geht das leider nicht so einfach.

    Um es für alle Module zu ändern müsste man den Code in der helper.php ändern und z.B. eine neue CSS-Klasse hinzufügen die man im CSS-Manager ansprechen kann.


    Vielleicht hat auch noch jemand eine "sauberere" Lösung parat?