CINEVERSITY

    Maxon Logo
    • Login
    • Search
    • Recent
    • Popular
    • Users
    • Groups

    c4d thumbnail doesn't show on MacOS on a MBP

    Question & Answers
    11
    74
    12571
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • E
      edge-island @noseman last edited by

      @noseman Are you kidding? Is working in Cinema 4D a lottery?

      1 Reply Last reply Reply Quote
      • Tisi
        Tisi last edited by Tisi

        hey, just wanted to let you know that finally I was able to solve the thumbs for me in two hours vibecoding with codex.
        I'll check if I can provide a test version without apple signing problems (I am not a developer) and let you know... maybe @maxon just try to let Codex fix your software if it isn't already at work.

        @noseman at this point a statement like this really really makes people angry, we have been issuing bug reports, even pointing to the exact problem without Maxon doing sh*t except closing the bug reports - it's really a sad joke.
        If you missed it read McGavrans quote I posted earlier and have a big laugh.

        since I can't post any "big" images here:

        https://www.dropbox.com/scl/fi/op6uitx6qezptqkhkdpik/c4dthumbs.jpg?rlkey=3ogphfxlsxp7vjt9xn90kxq13&dl=0
        
        W 1 Reply Last reply Reply Quote
        • A
          army-purpose last edited by

          Wahou! incredible. Is it possible to share your work ?

          Tisi 1 Reply Last reply Reply Quote
          • Tisi
            Tisi @army-purpose last edited by

            @army-purpose like I said I have to check because I'm not 100% sure with the self-signed-apple thing, I'll ask codex and see what I can share later today ok? 🤞

            E 1 Reply Last reply Reply Quote
            • E
              edge-island @Tisi last edited by

              @Tisi Thank you !!

              1 Reply Last reply Reply Quote
              • A
                army-purpose last edited by

                Big thanks! and bravo

                1 Reply Last reply Reply Quote
                • B
                  bike-disaster last edited by

                  OMG PARTYYYYYY timeeeeeeeeeeeeeeeeeeeeee BIG THANKS

                  1 Reply Last reply Reply Quote
                  • B
                    bike-disaster @noseman last edited by

                    @noseman 3 times I have done this.

                    now I am commenting on Maxons post on X.

                    κάνε κάτι πατριώτη .LOL

                    it is so difficult to work without thumps. imagine I run a Virtual machine with old MacOs so I can search the files.

                    ευχαριστώ πολύ

                    noseman 1 Reply Last reply Reply Quote
                    • noseman
                      noseman @bike-disaster last edited by

                      @bike-disaster
                      🙂

                      1 Reply Last reply Reply Quote
                      • W
                        whereas-stuff @Tisi last edited by

                        @Tisi whaaaaaaaaaaa! Please make it happen somehow! What a hero. And what a shame to Maxon and their speed they are providing 😄

                        Liebe Grüße aus Berlin

                        1 Reply Last reply Reply Quote
                        • Tisi
                          Tisi last edited by

                          Hey, I think installing (=dragging it into your Applications Folder) might work, you probably have to do the whole right-click "open anyway" thing for unsigned apps because macos won't let you just open it. fingers crossed*

                          https://www.dropbox.com/t/R7IZVTxoLBOsPsrc

                          E W B 3 Replies Last reply Reply Quote
                          • E
                            edge-island @Tisi last edited by

                            @Tisi It works great. Thank you so much.

                            1 Reply Last reply Reply Quote
                            • W
                              whereas-stuff @Tisi last edited by

                              @Tisi Thanks a lot for preparing. Unfortunately I can't even open the app on my Mac (Tahoe, M4). Apps are allowed from anywhere and I also tried some permission things in the terminal.

                              Screenshot-000141 3.png

                              1 Reply Last reply Reply Quote
                              • W
                                whereas-stuff last edited by whereas-stuff

                                Tested on M1 Macbook and M4 Mac Studio, both on Tahoe. Both showing same error.
                                Are you guys on Sillicon and Tahoe?

                                OK IT WORKED WITH FOLLOWING:

                                4. Force Executable Status on the Main Binary

                                Sometimes the internal app layout doesn't register correctly. If you haven't already applied permissions directly to the internal code:

                                1. Right-click C4DThumbnail.app in Finder and choose Show Package Contents.
                                2. Navigate into Contents > MacOS. You should see a file named C4DThumbnail inside.
                                3. Open Terminal, type chmod +x , and drag that internal C4DThumbnail file into the terminal window, then hit Enter.

                                Do you know if this app was built specifically for Apple Silicon (M-series chips) or Intel? If the architecture doesn't match your specific Mac hardware, that can also trigger this generic "can't be opened" alert.

                                W 1 Reply Last reply Reply Quote
                                • W
                                  whereas-stuff @whereas-stuff last edited by

                                  But unfortunately no C4D Thumbs are showing. Cleared cache already etc. What could be the problem?

                                  This is showing when I click now on the installed app:
                                  8cd0abed-d101-4f45-aca1-2a3bc85df35d-Screenshot-000143 3.png

                                  E 1 Reply Last reply Reply Quote
                                  • E
                                    edge-island @whereas-stuff last edited by

                                    @whereas-stuff From Claude.ai :


                                    Quick clarification up front: this is not a regular app — it's a modern macOS Quick Look extension (an .appex of type com.apple.quicklook.thumbnail) bundled inside the .app. That means it registers itself automatically as soon as the containing app is on disk and has been launched once. Note that the old ~/Library/QuickLook folder does not apply here — that's for the legacy .qlgenerator mechanism. Here's how to set it up (run these in Terminal):

                                    1. Move the app into Applications so LaunchServices keeps it registered:
                                    mv ~/Downloads/C4DThumbnail.app /Applications/
                                    
                                    1. Clear the Gatekeeper block. Heads up: this build is signed with a personal Apple Development certificate, not a Developer ID, and it isn't notarized — so macOS will flag it as coming from an unidentified developer. Strip the quarantine attribute:
                                    xattr -dr com.apple.quarantine /Applications/C4DThumbnail.app
                                    

                                    If macOS still refuses: System Settings → Privacy & Security → "Open Anyway".

                                    1. Launch the app once to trigger the extension registration:
                                    open /Applications/C4DThumbnail.app
                                    
                                    1. Confirm the system sees the extension, and enable it if needed:
                                    pluginkit -m -p com.apple.quicklook.thumbnail | grep -i tisi
                                    pluginkit -e use -i io.tisi.C4DThumbnail.Extension
                                    

                                    (The first command should list io.tisi.C4DThumbnail.Extension; a leading + means it's already active.)

                                    1. Flush the thumbnail cache and restart Finder:
                                    qlmanage -r
                                    qlmanage -r cache
                                    killall Finder
                                    
                                    1. Test it on an actual file (swap in a path to one of your own .c4d files):
                                    qlmanage -t -s 512 -o ~/Desktop "/path/to/a_file.c4d"
                                    

                                    That drops a test thumbnail on your Desktop. Otherwise, just open a folder of .c4d files in Finder using Gallery or Icon view.

                                    Two honest caveats: thumbnails will only show up for .c4d files that actually contain an embedded JPEG preview (this depends on your Cinema 4D save settings), and since the app isn't notarized, a future major macOS update could re-trigger a Gatekeeper block. If registration gets stuck, killall -KILL pkd (the PluginKit daemon) forces it to re-scan.


                                    W 1 Reply Last reply Reply Quote
                                    • W
                                      whereas-stuff @edge-island last edited by whereas-stuff

                                      Unfortunately I think either the Mac or the OS is not supported
                                      This I get on restart:

                                      5256b46d-0fa6-410b-8c48-c9e3e1cb8b9f-Screenshot-000145 3.png

                                      On what Mac / OS did you got it to work?
                                      It's installed and I see it in the extensions. But no thumbnail no matter what I do.

                                      E 1 Reply Last reply Reply Quote
                                      • E
                                        edge-island @whereas-stuff last edited by

                                        @whereas-stuff M3 max - Tahoe

                                        W 1 Reply Last reply Reply Quote
                                        • W
                                          whereas-stuff @edge-island last edited by whereas-stuff

                                          I did a lot of Claude/Gemini things also everything listed above, nothing worked and on startup it still shows my Mac is unsupported. If you find time @Tisi, maybe you can adjust the code to include all Mac models 🙂

                                          56a9aae0-2637-426c-9259-4ea36f15397a-Screenshot-000146 3.png

                                          1 Reply Last reply Reply Quote
                                          • B
                                            bike-disaster @Tisi last edited by

                                            @Tisi OMG works fine on MBP m5 max Tahoe 26.5 .

                                            I AM CRYING !!!!!!!!!!!!! I can't believe it.

                                            Thank you so much for this. you did what MAXON didn't almost 3 years now. really I am speechless.

                                            A big shame for Maxon who takes our good money and doesn't care about us.

                                            You are the man for the decade for me.

                                            I owe you a tone.

                                            BIG THANKS!!!!!!!!!!!!!!!!!

                                            here is an image on my Mac
                                            https://app.box.com/s/lppitwr0aujuycp1n5vtw4onb2gdgwf7

                                            1 Reply Last reply Reply Quote
                                            • First post
                                              Last post