Hi. It appears you have 404 thumbnail handling partially set up, which is messing things up because it needs to be either fully setup or not at all. (I come to this conclusion because thumb.php can render images, but images are not being rendered on parse or on 404 hit. Additionally, there are multiple "Autres résolutions" links on the image page, which only show up when 404 thumbnail handling is enabled.)
There are two different ways you can fix: Disable 404 Thumbnail rendering completely. You can do this by making sure that $wgGenerateThumbnailOnParse is not getting overriden in LocalSettings.php (We want it to be the default, which is true). Additionally, if you have a custom file repo config, the transformVia404 directive must be set to false. Or you can fully enable 404 thumbnail handling, which means you need set up a rewrite rule so that thumb.php will handle any 404 responses for a thumbnail. See https://www.mediawiki.org/wiki/Manual:Thumb.php for instructions on how to do that. -- Brian On Thu, Jan 5, 2017 at 1:31 PM, <[email protected]> wrote: > Hi, > > On my wiki this image is not visible : > http://drivrsdu.fr/dicof/w/index.php/Fichier:On_vous_g%C3%AAne2.jpg > > I must clic on the first link > http://drivrsdu.fr/dicof/w/images/c/c7/On_vous_g%C3%AAne2.jpg with text > Fichier:On vous gêne2.jpg and I see the image. > > Why ? How I can resolv that ? > > I should want see the image on this page. > > Thanks. > > _______________________________________________ > MediaWiki-l mailing list > To unsubscribe, go to: > https://lists.wikimedia.org/mailman/listinfo/mediawiki-l _______________________________________________ MediaWiki-l mailing list To unsubscribe, go to: https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
