You are not logged in.
Pages: 1
I'm reading the forums and can access the first page of results normally, but when I go to the second,
third, fourth, etc pages it come empty. The page itself says "Forum is empty" under the "Topic" title of the title.
I made some tests:
* Work computer (Windows; Firefox 34.0)
Anonymous access: problem
Logged on: problem
* Smartphone (Android; through 3G/4G connection, Opera Browser 41.2.2246.111806)
Anonymous access: problem
Logged on: problem
Offline
We changed the server, updated the forum engine, and changed also the storage engine...
This is a bug...
I will investigate further...
Test with biggest sub-forums like "mORMot Framework", "PDF Engine", etc.
Thank you.
Last edited by FabricioAraujo (2017-01-04 21:02:13)
Offline
Should be OK now.
But the fix is not a perfect fix...
I will need to fork and send fixes to https://github.com/adaur/fluxbb-sqlite3
Online
Should be OK now.
But the fix is not a perfect fix...
I will need to fork and send fixes to https://github.com/adaur/fluxbb-sqlite3
It's ok now.
Offline
I've fixed the following function as such:
function num_rows($query_id = 0)
{
if ($query_id && preg_match ('/\bSELECT\b/i', $this->last_query))
{
$res = 0;
while ($query_id->fetchArray(SQLITE3_NUM))
++$res;
$query_id->reset();
return $res;
}
else
return false;
}
Even if it may be sub-optimal, it is working as expected.
It should have fixed other issues in the forum.
Don't hesitate to report back here any problem you encounter...
Thanks for your feedback!
Online
Pages: 1