Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
andreamarucci
Experienced
Topic Author
Posts: 308
Joined: 01 Mar 2011, 11:13

Some new errors

09 Dec 2015, 11:04

Hello Karl, just updated to latest version and found these in my error log. Don't know if these are problems or just notices, but I'd like to let you updated on these...
Code
[09-Dec-2015 11:35:24 Europe/Oslo] PHP Warning:  exif_read_data(P5027966.jpg): Incorrect APP1 Exif Identifier Code in /home/xxx/gallery/extensions/exif_reader.php on line 39
[09-Dec-2015 11:35:24 Europe/Oslo] PHP Warning:  exif_read_data(P5027966.jpg): Incorrect APP1 Exif Identifier Code in /home/xxx/gallery/extensions/exif_reader.php on line 40
[09-Dec-2015 11:35:24 Europe/Oslo] PHP Warning:  exif_read_data(P5027966.jpg): Incorrect APP1 Exif Identifier Code in /home/xxx/gallery/extensions/exif_reader.php on line 87
[09-Dec-2015 14:07:08 Europe/Oslo] PHP Notice:  Undefined index: HTTP_USER_AGENT in /home/xxx/gallery/app/stacey.inc.php on line 77
[09-Dec-2015 14:07:10 Europe/Oslo] PHP Notice:  Undefined index: HTTP_USER_AGENT in /home/xxx/gallery/app/stacey.inc.php on line 77
[09-Dec-2015 14:07:11 Europe/Oslo] PHP Notice:  Undefined index: HTTP_USER_AGENT in /home/xxx/gallery/app/stacey.inc.php on line 77
[09-Dec-2015 16:31:01 Europe/Oslo] PHP Fatal error:  Maximum execution time of 30 seconds exceeded in /home/xxx/gallery/app/helpers.inc.php on line 142
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

Re: Some new errors

09 Dec 2015, 23:15

Except the last one where it says "error", this is just notices.
Code
[09-Dec-2015 11:35:24 Europe/Oslo] PHP Warning:  exif_read_data(P5027966.jpg): Incorrect APP1 Exif Identifier Code in /home/xxx/gallery/extensions/exif_reader.php on line 39
exif_reader.php is an external PHP library. Looks like there is some disambiguation with exif tags in one of your images, but nothing to worry about.
Code
[09-Dec-2015 14:07:08 Europe/Oslo] PHP Notice:  Undefined index: HTTP_USER_AGENT in /home/xxx/gallery/app/stacey.inc.php on line 77
Looks like a bot accessed your website without sending HTTP_USER_AGENT header to server. Therefore, the variable is undefined. Not a problem
Code
PHP Fatal error:  Maximum execution time of 30 seconds exceeded in /home/xxx/gallery/app/helpers.inc.php on line 142
[/quote]
Looks like you tried to "create site object" or "create menu" and the process timed out? It is not related to pages, but its a process your server was not able to handle for any reason.

If you don't get errors in browser then don't worry about the error_log.
 
User avatar
andreamarucci
Experienced
Topic Author
Posts: 308
Joined: 01 Mar 2011, 11:13

Re: Some new errors

10 Dec 2015, 03:17

Ok perfect, Just telling you for your knowledge...