Search…

X3 Photo Gallery Support Forums

Search…

Search found 4 matches

by dadesign
15 Apr 2016, 09:40
Forum: Announcements
Topic: X3 Release [0.17]
Replies: 27
Views: 61268

Re: X3 Release [0.17]

mjau-mjau wrote:
dadesign wrote:some problem with templater
That isn't related to this release. May I ask, is this a home server? You might to try to upgrade your PHP.

yes, home server


X3 Release [0.17] required a php 5.6 +
by dadesign
14 Apr 2016, 09:37
Forum: Announcements
Topic: X3 Release [0.17]
Replies: 27
Views: 61268

Re: X3 Release [0.17]

some problem with templater [14-Apr-2016 15:36:34 Europe/Oslo] PHP Fatal error: Maximum function nesting level of '100' reached, aborting! in C:\srv\wwwdadesign\app\parsers\Twig\Node.php on line 140 [14-Apr-2016 15:36:34 Europe/Oslo] PHP Stack trace: [14-Apr-2016 15:36:34 Europe/Oslo] PHP 1. {main}(...
by dadesign
13 Apr 2016, 04:16
Forum: Announcements
Topic: X3 Release [0.17]
Replies: 27
Views: 61268

Re: X3 Release [0.17]

Fatal error: Can't use method return value in write context in C:\srv\wwwdadesign\app\x3.diagnostics.php on line 291 You have database version enabled I assume? I also assume this is PHP version 5.3 or 5.4? no database, PHP Version 5.4.27 problem near if(empty($db_result->fetch_object())) { empty c...
by dadesign
13 Apr 2016, 03:30
Forum: Announcements
Topic: X3 Release [0.17]
Replies: 27
Views: 61268

Re: X3 Release [0.17]

Fatal error: Can't use method return value in write context in C:\srv\wwwdadesign\app\x3.diagnostics.php on line 291

Code
if(empty($db_result->fetch_object())) { 
need to be a
Code
$check = $db_result->fetch_object();
if(empty($check)) {