Cannot have more than one discussion in a tag
AR1VU First, have you "clear cache" after uninstall? Second, maybe you can try to uninstall the extension by deleting its files and edit the composer.json file. If none of these works, please post the error.log file, perhaps I could offer some more help.
Emm, the very last but always-works solution is to uninstall and re-install the whole Flarum website, remember to backup the data if you have already created something on the website. If the problem still occur even after this grand re-install, the only two reasons I can come up with is that either the Flarum package InfinityFree provides has something wrong, or the host itself was mistakenly configured.
- Edited
This is the error message with Debug turned on
GET https://*******/api/discussions
PDOException: SQLSTATE[42000]: Syntax error or access violation: 1104 The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay in /home/vol1000_5/epizy.com/epiz_30960903/*******/htdocs/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117
I did some more testing and only some tags have this issue while other tags work perfectly fine
- Edited
Ive ended up just reinstalling flarum and everything works now
- Edited
Same problem came in the reinstalled version
GET https://*****/api/discussions
PDOException: SQLSTATE[42000]: Syntax error or access violation: 1104 The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay in
Thatβs very odd. I hope you figure out the cause soon as Iβve never had that issue. When you do get it figured out please post the solution here in case someone else down the road has the same issue maybe your solution will help them out.
- Edited
AR1VU I am going to suggest you to do something that we've never had to suggest to anyone
In your config.php
you see an array of data that define your database connection, from username
to password
etc, mine (in development) looks like this:
<?php return array (
'debug' => true,
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'port' => 3306,
'database' => 'flarum',
'username' => 'root',
'password' => NULL,
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => NULL,
'strict' => false,
'engine' => 'InnoDB',
'prefix_indexes' => true,
),
'url' => 'http://flarum.test',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
'headers' =>
array (
'poweredByHeader' => true,
'referrerPolicy' => 'same-origin',
),
);
Edit this file by adding the following in this file:
'options' => array(
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET SESSION SQL_BIG_SELECTS=1',
),
Like so:
<?php return array (
'debug' => true,
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'port' => 3306,
'database' => 'flarum',
'username' => 'root',
'password' => NULL,
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => NULL,
'strict' => false,
'engine' => 'InnoDB',
'prefix_indexes' => true,
'options' => array(
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET SESSION SQL_BIG_SELECTS=1',
),
),
'url' => 'http://flarum.test',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
'headers' =>
array (
'poweredByHeader' => true,
'referrerPolicy' => 'same-origin',
),
);
Make sure:
- the added change is within the
database
part or it won't do anything. - the line above (
'prefix_indexes' => true,
) ends with a comma
An explicit WARNING to other people. Don't do this unless you run into exactly the same error as OP and once this is proven to resolve the issue.
@AR1VU please do let me know if this resolves the issue
Xavier no it's caused by one specific version of mysql. See https://discuss.flarum.org/d/32901-staff-diary-v20-cycle/190