Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Parisian Posted August 21, 2017 Posted August 21, 2017 In the file system/Content/Search/Mysql/Index.php: public function index( \IPS\Content\Searchable $object ) { /* Get the index data */ $indexData = $this->indexData( $object ); An OutOfRangeException can be thrown since the search index may be corrupt due to tasks timing out and such, this is a problem for large forums several GB in size. Since the code below checks if the variable is not null anyway a fix is easy as changing that last line to: try { $indexData = $this->indexData( $object ); } catch (\OutOfRangeException $e) { $indexData = null; }
bfarber Posted August 21, 2017 Posted August 21, 2017 indexData() should not be throwing an OutOfRangeException on the surface. If you are experiencing this, I would recommend submitting a ticket so we can take a closer look at what is happening.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.