https://bugzilla.wikimedia.org/show_bug.cgi?id=72324
--- Comment #6 from Bawolff (Brian Wolff) <[email protected]> --- (In reply to Bawolff (Brian Wolff) from comment #5) > Hmmm. Usually image scaling doesnt affect php's memory limit ver much. Are > you using image magick to scale files or GD (shoild say in LocalSettings.php) I definitely suspect GD (aka $wgUseImageMagick = false) is the reason the memory limit is being hit (line 566 is also in the middle of GD code on 1.23.2). Your wiki is probably using it since on windows its unlikely to have image magick installed (Or even if it is, its unlikely MW will be able to automatically find it). AFAIK, GD scales stuff in the php process, so is subject to php's memory_limit (aka $wgMemoryLimit) (unlike image magick which is a separate process having a separate memory limit). Maybe we should be trying to raise the php memory limit up to $wgMaxShellMemory during the scaling process if we're using GD. -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
