We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 1122
    • 209 Posts
    I guess that you are using "Text" input type for your image TV and, subsequently, you are manually filling in value for your image, for example, as: "someimage.jpg", but please consider that the snippet needs to know both correct path of the image and image’s name itself -- otherwise, the image does not exist from the point of snippet’s view. All snippets in MODx are parsed by main index.php file located in root folder and from this perspective images are seen by all snippets. So, correct value for image TV -- when manually inserted -- should be "assets/images/someimage.jpg" (provided that you are keeping them in standard folder). Or, alternatively, simply use "Image" input type for your TV thus allowing MODx to take care of providing TV’s value with correct path for your image.
      • 22369
      • 11 Posts
      Hi Alik,

      Thanks for you post, but I’m using the image widget not a text path. the image widget automates the thumbnail creation so I don’t think it is this, unless of course I’m missing something?

        • 4041
        • 788 Posts
        If you have the widget type set to image, that may be your problem. With just the TV set as Image and no widget, the TV value will only be the path (and the thumbnails are created upon upload), which is what this snippet looks for. Adding the Image type widget param adds <img src=""> around the TV value automatically and probably causes the snippet to fail.
          xforum
          http://frsbuilders.net (under construction) forum for evolution
          • 1122
          • 209 Posts
          2Breezer
          That’s correct. Extra code returned by the widget causes that the snippet is unable to find image (let alone its thumbnail).
            • 22369
            • 11 Posts
            Thank you guys,

            Indeed this was causing the problem it is now working fine. Thank you all for your time.

            Right, now to look for more things i can get my self in a pickle over smiley

              • 28514
              • 25 Posts
              The thumbs that are created are 96x96 pixels. Is it possible to get them bigger somehow?
                • 20413
                • 2,877 Posts
                  @hawproductions | http://mrhaw.com/

                  Infograph: MODX Advanced Install in 7 steps:
                  http://forums.modx.com/thread/96954/infograph-modx-advanced-install-in-7-steps

                  Recap: Portland, OR (PDX) MODX CMS Meetup, Oct 6, 2015. US Bancorp Tower
                  http://mrhaw.com/modx_portland_oregon_pdx_modx_cms_meetup_oct_2015_us_bancorp_tower
                  • 1561
                  • 22 Posts
                  Quote from: Breezer at Nov 05, 2009, 07:25 PM

                  If you have the widget type set to image, that may be your problem. With just the TV set as Image and no widget, the TV value will only be the path (and the thumbnails are created upon upload), which is what this snippet looks for. Adding the Image type widget param adds <img src=""> around the TV value automatically and probably causes the snippet to fail.

                  Thank you Breezer. I was trying out this snippet you’re right, it’s not working with Image set as widget.

                  I’d like to ask: Can I still use this snippet even with the Image Widget turned on? Thanks in advance guys.
                    An aspiring web designer & front-end web developer who is very much interested on the modern web.

                    www.andrewabogado.com
                    • 6705
                    • 79 Posts
                    Quote from: eddygrove at Oct 20, 2009, 11:08 AM

                    Hi all,
                    Has anyone got a quick’n’dirty solution for accessing the thumbnails generated by fckeditor/the file manager?

                    I didn’t even know that the file manager could generate thumbnails! How do you get it to do this?

                    Every image that I have uploaded (to the assets/images folder) using the file manager, only shows with a built-in MODx "camera" icon/thumbnail when using the editor "Insert image" requester.

                    (I’m using MODx 1.0.2)
                      Please don't PM me unless it's absolutely essential: if a technical question is worth asking, it's worth asking in public, so that others can share their experience, and so that all can learn from the answers.
                      • 1122
                      • 209 Posts
                      Mentioned thumbnails are generated by MODx when you access file folder via TV of input type "image".