Project

General

Profile

Bug #79425

Updated by Thomas Hohn over 7 years ago

We have seen some examples of a long URL's URL that makes the RefIndexer crash. 
 This seems to be due to the fact that 
 # The field ref_string in the table sys_refindex is limited to 200 characters 
 # There is no check/truncation of the field if it has a length greater that 200 characters. 

 We propose to 
 # Extend the field ref_string to a varchar(1024) 
 # Add a mb_substr with a limit of 1023 where the value is added to the array that will be  
 stored in the database 

Back