I have 455 pictures and, when I try to create thumbnails (first step) I get this error:
Fatal error: Maximum execution time of 30 seconds exceeded
And I get the following message at top (every time):
$conf['show_exif'] must be to set to false in your config_local.inc.php file because exif are not supported.
how can I fix them?
thanks
Last edited by danilm (2007-10-08 14:34:36)
Offline
Hi !
message is saying that the server where your gallery is lodged kills PHP process when time execution is longer than 30seconds.
So, two solution :
- make thumbnails by group (don't create the 455 in the same request)
- make thumbnails with an external software and updload them on the server
for the second message, it's because PHP modules for EXIF aren't installed on the server.
so, if you don't want to see this alert, modify the config_local.inc.php file and set the value of $conf['show_exif'] parameter to 'false'
you have an example of this file in the 'tools' directory.
open it, modify it, and move this file into the 'include' directory
(and sorry for my bad english ^^; )
Offline
grum wrote:
for the second message, it's because PHP modules for EXIF aren't installed on the server.
so, if you don't want to see this alert, modify the config_local.inc.php file and set the value of $conf['show_exif'] parameter to 'false'
you have an example of this file in the 'tools' directory.
open it, modify it, and move this file into the 'include' directory
....or use [extension by Piwigo Team] LocalFiles Editor
Offline
ok, thanks, I haven't seen the extensions area :P
Offline