php - TYPO3 & MAX_JOIN_SIZE error via Shared Server - Possible Workaround? -
i have multiple joins work fine. combined them , following error:
sqlstate[42000]: syntax error or access violation: 1104 select examine more max_join_size rows; check , use set sql_big_selects=1 or set max_join_size=# if select okay
i'm on hosted shared server ... there way set sql_big_selects=1 in typo3? e.g. in localconfiguration.php
<?php return array( ... 'db' => array( 'database' => 'database', 'exttablesdefinitionscript' => 'exttables.php', 'host' => 'password', 'password' => 'password', 'port' => port, 'username' => 'port', 'init_commands' => array( 'big_selects' => 'set sql_big_selects=1', ), ), ... ); ?>
Comments
Post a Comment