Don’t upload the media folder, it is basically a cache folder. It should get recreated automatically on the server. If it doesn’t, check your file/folder permissions.
Hm, which thumb driver are you using? (Although svgs are not resizable and should be copied to the media folder independent of whether the driver works or not).
The /site/config/config.php does not contain anything about thumbs.
But why should I care about it, isn’t it a task of Kirby?
Why should there be a difference between my local server and the web-server?
Is ImageMagick even installed on the server? Simply enabling it in the config will not help.
That probably means that the parent folders for the images are created. What about the .jobs folders and the .json job files for thumbs insides those folders? Are they created?
Having said that, an .svg file is not resizable, so the thumb driver should not be involved at all, but the file should simply be copied into the media folder.
Could you try the following e.g. in the home template on your server:
<?php
$file = $site->image(); // here I use the first image in the site, you can replace this with any other file.
Kirby\Cms\Media::publish($file, $file->mediaRoot());
?>
Then reload the home page in the browser.
With this example, you should get a copy of the site file in `/media/site/xxx-xxx/filename.
<?php
$file = $site->image(‘projekt-logo-start.svg’); // here I use the first image in the site, you can replace this with any other file.
Kirby\Cms\Media::publish($file, $file->mediaRoot());
?>
The above code snippet works, the ‘projekt-logo-start.svg’ file shows up.
But what to do to show all the remaining images?
And yes .jobs folders have been created before and there are .json files in it.
Since it seems to work localhost: What are the differences between you local setup and the remote server? Where are you hosting the site? When you update to the current 3.5.7.1 version, does the issue persist?
You could also try and upload a fresh (up-to-date) Starterkit to the server to find out if that works without issues.
I tried now with Git by creating a remote repository on the hosting server instead of just copy the files to the server.
Now it works
I have no idea what I have done wrong before
Anyway, thanks for your patience and ultrafast, kind support!