[MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-17 Thread Martin Urbanec
Hi, I'm still getting strange error "Error creating thumbnail: Invalid thumbnail parameters" for some images at bomosil.eu. You can see an example at http://www.bomosil.eu/index.php?title=Soubor:Jihlava_-_zemska_hranice_Cech_a_Moravy_v_okoli_Jihlavskych_drevarskych_zavodu_2.jpg&uselang=en . As you

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-17 Thread Brian Wolff
Hi. Blank page generally means a php fatal error. Most likely in this case is php max_execution_time exceeded, but check the php error log to see what it is. Also you may want to check wgShellMaxMemory (i might be mangling the name) The hash_equals is probably a bug, but probably an unrelated bug

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-17 Thread Martin Urbanec
Hi, There is nothing in the errorlog. Entirely blank file. There is only something in the accesslog but this won't be helpful I guess. See the accesslog (with the IP changed with CENSORED). I can't send you nothing more. 897939 CENSORED [17/Nov/2016:18:03:45 +0100] 5938 200 www.bomosil.eu "GET /i

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-17 Thread Brian Wolff
You may have to enable php error logging in you php.ini config (note: php error log is different from apache error log and usually in different places) -- Bawolff On Thursday, November 17, 2016, Martin Urbanec wrote: > Hi, > There is nothing in the errorlog. Entirely blank file. There is only >

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-17 Thread Martin Urbanec
Usually. Not always. Bomosil.eu uses Wedos as webhosting and at https://hosting.wedos.com/en/webhosting/logy.html. I can see "Service errorlog writes to log all errors on the site (errors from Apache and PHP). Logs are accessible via FTP in directory logs/errorlog." in it so I guess there should be

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-26 Thread Martin Urbanec
Any help for me somebody? Martin pá 18. 11. 2016 v 15:29 odesílatel Martin Urbanec < martin.urba...@wikimedia.cz> napsal: > Any help for me? > > Best, > Martin > > čt 17. 11. 2016 v 18:21 odesílatel Martin Urbanec < > martin.urba...@wikimedia.cz> napsal: > > Usually. Not always. Bomosil.eu uses

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-26 Thread Bill Traynor
On Sat, Nov 26, 2016 at 12:16 PM, Martin Urbanec wrote: > Any help for me somebody? Try adding error reporting to the top of LocalSettings.php, maybe it will give you more information: # Turns on error reporting error_reporting(E_ALL); ini_set("display_errors", 1); $wgShowExceptionDetails = true

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-26 Thread Martin Urbanec
so 26. 11. 2016 v 20:38 odesílatel Bill Traynor napsal: > On Sat, Nov 26, 2016 at 12:16 PM, Martin Urbanec > wrote: > > Any help for me somebody? > > Try adding error reporting to the top of LocalSettings.php, maybe it > will give you more information: > > # Turns on error reporting > error_repo

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-26 Thread Bill Traynor
On Sat, Nov 26, 2016 at 3:21 PM, Martin Urbanec wrote: > Allowed memory size of 134217728 bytes exhausted > (tried to allocate 7122 bytes What is memory_limit set to in php.ini? Try setting memory_limit = 512M or higher and see if this error still occurs? ___

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-26 Thread Martin Urbanec
so 26. 11. 2016 v 21:34 odesílatel Bill Traynor napsal: > On Sat, Nov 26, 2016 at 3:21 PM, Martin Urbanec > wrote: > > Allowed memory size of 134217728 bytes exhausted > > (tried to allocate 7122 bytes > > What is memory_limit set to in php.ini? Try setting memory_limit = > 512M or higher and s

Re: [MediaWiki-l] [request for help] Error "Error creating thumbnail: Invalid thumbnail parameters" when viewing some images

2016-11-26 Thread Bill Traynor
You can override it temporarily by adding php_value memory_limit 512M to your .htaccess file OR ad ini_set( 'memory_limit', '512M'); from with LocalSettings.php, I think. On Sat, Nov 26, 2016 at 3:51 PM, Martin Urbanec wrote: > so 26. 11. 2016 v 21:34 odesílatel Bill Traynor napsal: > >> On Sat,