WHEN counter = $limit THEN \"{$this->othersLabelValue}\"
WHEN counter = $limit THEN '{$this->othersLabelValue}'
ELSE !`$column`
END AS !`$column`
";
Now archive.php is running fine. But withing the Transitions plugin, there is still an error:
SQLSTATE[42S22]: Column not found: 1054 Unknown column !'' in 'field list'
The same problem exists with a totaly new and clean install of piwik
My setup:
SuSE Linux Enterprise
PHP 5.3.17 with APC
mysql 5.5.28 x64 Community
The text was updated successfully, but these errors were encountered:
(In [7293]) Fixes #3453 Compatibility with ANSI_QUOTES
If the ANSI_QUOTES SQL mode is enabled, string literals can be quoted only within single quotes because a string quoted within double quotes is interpreted as an identifier.
As mentioned in the forum (http://forum.piwik.org/read.php?2,94529) there is a problem with core/RankingQuery.php.
The fix from matt solves the problem:
--- core/RankingQuery.php (revision 7136)
+++ core/RankingQuery.php (revision )
@@ -288,7 +288,7 @@
{
$labelColumnsOthersSwitch[] = "
CASE
Now archive.php is running fine. But withing the Transitions plugin, there is still an error:
SQLSTATE[42S22]: Column not found: 1054 Unknown column !'' in 'field list'
The same problem exists with a totaly new and clean install of piwik
My setup:
SuSE Linux Enterprise
PHP 5.3.17 with APC
mysql 5.5.28 x64 Community
The text was updated successfully, but these errors were encountered: