1. Forum
    1. Themen Übersicht
  2. Hilfe
  3. Forenregeln
  4. Mitglieder
    1. Team
    2. Mitgliedersuche
  5. Webseite
  6. Archiv
  • Anmelden
  • Registrieren
  • Suche

Neuigkeiten

Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche

Neuigkeiten

  1. Mitglieder
  2. Tazzios

Beiträge von Tazzios

  • JoomGallery 3.7.1 Wartungsrelease veröffentlicht

    • Tazzios
    • 13. Mai 2025 20:38

    i thought 'manifest not found' or something like that?

    But i just downloaded and install it again on a different J3 site without a problem. so maybe i choose just the wrong zip file from my download folder . :|

  • JoomGallery 3.7.1 Wartungsrelease veröffentlicht

    • Tazzios
    • 8. Mai 2025 12:53

    The zip incorrect, the main folder is also included. After rezipping i could install it.

  • Recreate detailed image

    • Tazzios
    • 7. April 2022 08:57

    The recreate option for images currently does not recreate the detailed image.( atleast in my installation :saint:)

    It would be nice if Joomgallery would check if there is an original image and if so recreate the thumb AND detailed, or ask if you which you want to rebuild.

    nevermind need coffee, I uploaded a new image on the first field on 'Replace image files' that i saw which was the thumbnail instead of original. :D

    recreate just works fine. :thumbup:

  • Joomgallery button content tag

    • Tazzios
    • 22. August 2021 20:36

    Is there a way that the joomla button generates a html without "joomplu:1" tags but just with the actual content like the source url?


    Code
    <a href="joomplu:1 type=orig"><img class="jg_photo" src="index.php?option=com_joomgallery&amp;view=image&amp;format=raw&amp;id=1&amp;type=img" alt="joomplu:1" /></a>

    I tried to see if could do something by myself by looking in view.raw.php, joombu.php, joomplu.php files but it is a bit to complex for me. Idea was to add a parameter option in button plugin where you could change this behavior.

    Dirtiest what that i tried was changing onContentPrepare to onContentBeforeSave. :P

    The reason why i tried this is because acymailing decided to not to call onContentPrepare in there new version(7.x) anymore. :cursing:

    And i did not see why only the src url is generated but the 'href' and 'alt' not.

  • Use joomgallery for article images script

    • Tazzios
    • 20. April 2020 11:12

    New version:

    bugfix, old one only worked on new pages not on edits.

    Code
    /*hide default article image button*/
    a[href$="jform_images_image_intro&folder="], a[href$="jform_images_image_fulltext&folder="] {
    display: none;
    }
  • Use joomgallery for article images script

    • Tazzios
    • 8. April 2020 15:13

    To hide the default button i added this css to my template:

    Code
        /*hide default  article image  button*/
        a[href$="/component/media/?view=images&tmpl=component&asset=com_content&author=&fieldid=jform_images_image_intro&folder="], a[href$="/component/media/?view=images&tmpl=component&asset=com_content&author=&fieldid=jform_images_image_fulltext&folder="] {
            display: none;
    }

    Maybe there is an more elegant way that can be added as a config option in the plugin. But for now this also works which why i wanted to share it for other users. :)

  • Update the default settings

    • Tazzios
    • 10. September 2019 14:42

    With the current default settings joomgallery looks what outdated maybe it is an idea to tune this a bit to give new users a better impression of joomgallery.

    • images are these days pretty small.
    • layout settings more clean look. Not al options on, al the features and buttons are enabled by default.
    • Disable (or delete) some upload functions.

    Maybe some one already has a nice configuration which can be used as default?

  • Use joomgallery for article images script

    • Tazzios
    • 10. September 2019 13:36

    haha, yes that`s exactly what i need. :love:

    Well the script is maybe still usable to correct old content. :P

  • Use joomgallery for article images script

    • Tazzios
    • 10. September 2019 11:09

    i use joomgallery as media manager because :

    • i have a lot of different usersgroups and have created an hidden album for each group where the upload there
    • the current media manager from joomla is not friendly
    • User will makes a mess (of everything) so it is nice of you still can move stuff without breaking it.

    For images within an article this is not a problem but is is for the article intro and full image picture. Users can of course select there image but it will brake when images are archieved(to other category). To fix this i made the SQL script below that replaces the image path to a joomgallery url.

    Code
    /* Replace ep23j with your own prefix*/ 
    
        /*replacing article intro image with joomgalley url incase of thumbnail*/
        update `joomla`.`ep23j_content` 
        SET images=replace(images,SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1), 
        concat('index.php?option=com_joomgallery&amp;view=image&amp;format=raw&amp;id=',(SELECT  `id` FROM `joomla`.`ep23j_joomgallery` where 
        catid= (SUBSTRING_INDEX(SUBSTRING_INDEX(SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-2),'/',1),'_',-1))
        AND imgfilename=( SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-1) )
        ),'&amp;type=thumb') )  
        where images like  '%\\\\/joomgallery\\\\/thumbnails%' /*adjust acording to you own path */
        ;
        /*replacing article intro image with joomgalley url incase of detail*/
        update `joomla`.`ep23j_content` 
        SET images=replace(images,SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1), 
        concat('index.php?option=com_joomgallery&amp;view=image&amp;format=raw&amp;id=',(SELECT  `id` FROM `joomla`.`ep23j_joomgallery` where 
        catid= (SUBSTRING_INDEX(SUBSTRING_INDEX(SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-2),'/',1),'_',-1))
        AND imgfilename=( SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-1) )
        ),'&amp;type=img') )  
        where images like '%\\\\/joomgallery\\\\/details%' /*adjust acording to you own path */
        ;
        /*replacing article intro image with joomgalley url incase of original*/
        update `joomla`.`ep23j_content` 
        SET images=replace(images,SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1), 
        concat('index.php?option=com_joomgallery&amp;view=image&amp;format=raw&amp;id=',(SELECT  `id` FROM `joomla`.`ep23j_joomgallery` where 
        catid= (SUBSTRING_INDEX(SUBSTRING_INDEX(SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-2),'/',1),'_',-1))
        AND imgfilename=( SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-1) )
        ),'&amp;type=orig') )  
        where images like '%\\\\/joomgallery\\\\/originals%' /*adjust acording to you own path */
        ;
        /*replacing article intro image with joomgalley url incase of detail*/
        update `joomla`.`ep23j_content` 
        SET images=replace(images,SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1), 
        concat('index.php?option=com_joomgallery&amp;view=image&amp;format=raw&amp;id=',(SELECT  `id` FROM `joomla`.`ep23j_joomgallery` where 
        catid= (SUBSTRING_INDEX(SUBSTRING_INDEX(SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-2),'/',1),'_',-1))
        AND imgfilename=( SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-1) )
        ),'&amp;type=img') )  
        where images like '%\\\\/joomgallery\\\\/details%' /*adjust acording to you own path */
        ;
        /*replacing article full image with joomgalley url incase of thumbnail*/
        update `joomla`.`ep23j_content` 
        SET images=replace(images,SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1), 
        concat('index.php?option=com_joomgallery&amp;view=image&amp;format=raw&amp;id=',(SELECT  `id` FROM `joomla`.`ep23j_joomgallery` where 
        catid= (SUBSTRING_INDEX(SUBSTRING_INDEX(SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-2),'/',1),'_',-1))
        AND imgfilename=( SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-1) )
        ),'&amp;type=thumb') )  
        where images like '%\\\\/joomgallery\\\\/thumbnails%' /*adjust acording to you own path */
        ;
        /*replacing article full image with joomgalley url incase of original*/
        update `joomla`.`ep23j_content` 
        SET images=replace(images,SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1), 
        concat('index.php?option=com_joomgallery&amp;view=image&amp;format=raw&amp;id=',(SELECT  `id` FROM `joomla`.`ep23j_joomgallery` where 
        catid= (SUBSTRING_INDEX(SUBSTRING_INDEX(SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-2),'/',1),'_',-1))
        AND imgfilename=( SUBSTRING_INDEX(replace(SUBSTRING_INDEX(SUBSTRING_INDEX(images, '"', 4), '"',-1),"\\",""),'/',-1) )
        ),'&amp;type=orig') )  
        where images like '%\\\\/joomgallery\\\\/originals%' /*adjust acording to you own path */
        ;
    Alles anzeigen

    If some one knows how to edit the article edit pages so that the joomgallery plugin shows up instead of the joomla media manager that would be even better but till then this is maybe helpful for others.

    Use at own risk, I`m sure there are people you can make a safer script in php as i`m now depend on the number of " in the string. ^^

Letzte Beiträge

  • URLs nach Update auf JoomGallery4 und SH404SEF /4SEF

    Elfangor93 2. Juli 2025 06:35
  • Looking to replicate JG3 Gallery / Category View under JG4

    GJSchaller 1. Juli 2025 20:01
  • What can you do with Tags?

    FriendlyUser 30. Juni 2025 22:40
  • JG3 Bilder als Artikelbild verlinkt - Welche Migrationseinstellung erhält die Dateipfade?

    MrMusic 30. Juni 2025 10:21
  • JoomGallery for Joomla 4

    MrMusic 26. Juni 2025 13:53
  • Bearbeiten von Bildern nicht möglich

    kaufi88 26. Juni 2025 11:11
  • URLS nach Migration auf JG4

    Elfangor93 25. Juni 2025 12:45
  • Inconsistent category folder paths defined in the database of your JG3 tables

    MrMusic 24. Juni 2025 15:49
  • JoomImages Module in Joomgallery 4

    Elfangor93 17. Juni 2025 09:07
  • 4SEF have native support for JoomGallery

    Elfangor93 17. Juni 2025 08:36
  1. Datenschutzerklärung
  2. Impressum
Community-Software: WoltLab Suite™