I see the fault now. You have non alphanumerics in your product references. Actinic replaces these with _xx (2 digit hex code) when creating the support file names. So Actinic is writing files named e.g. (for product ref: FIBPM100.013) sr_aFIBPM100_2e013.html[/B] but the Perl patch is looking for sr_aFIBPM100_2E013.html and the upper case and lower case E are different characters.
Try this fix:
Edit SearchScript.pl and look for
Replace with
And do an Update and report back so I can change the patch if that fixes things.
Try this fix:
Edit SearchScript.pl and look for
Code:
$sResultsProdref =~ s/([^A-Za-z0-9])/sprintf("_%02X", ord($1))/seg; # transform non alphanumerics
Code:
$sResultsProdref =~ s/([^A-Za-z0-9])/sprintf("_%02x", ord($1))/seg; # transform non alphanumerics
Comment