Data at Your Fingertips: Explore Our New Reporting and Statistical Capabilities By Ryan Ashbrook 23 hours ago
Parisian Posted August 21, 2017 Share 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; } Link to comment Share on other sites More sharing options...
bfarber Posted August 21, 2017 Share 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. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.