Summary
The Laserfiche Server may stop responding when thumbnails are generated. The issue only occurs when thumbnails are displayed in the document viewer and are generated the first time. If the thumbnail view is disabled, the issue does not occur.
Cause
This issue results from the third-party drivers used to create thumbnails. These drivers occasionally cause issues when generating high-resolution images.
Workaround
This issue can be resolved by reducing the resolution of the images. This can be done in Laserfiche 7.2.1 by modifying your repository's SQL database. Note that this workaround cannot be performed with versions prior to 7.2.1; you must upgrade before performing the workaround.
Important: Reducing the resolution of the images in this fashion may negatively impact thumbnail image quality. It is not necessary or desirable to perform this workaround unless you experience this issue.
To reduce thumbnail image resolution using Enterprise Manager or SQL Server Management Studio Express
To reduce thumbnail image resolution using osql
cmd
osql -E -S SQLInstance -d DatabaseName
SQLInstance is the name assigned to the desired instance of SQL Server. This term should be replaced by the name of the computer hosting SQL Server. If you are using MSDE (i.e. Laserfiche Server (Team) or Standalone), then you should also append "\Laserfiche" (e.g. Computer\Laserfiche). It is not necessary to append "\Laserfiche" to Microsoft SQL Server 2005 or Microsoft SQL Server 2005 Express.INSERT INTO dboptions VALUES ('UseLowResThumbnail','Y')
GO
More Information
If you would like to return to using high-resolution thumbnail images, you can do so by removing this value and clearing the thumbnail table. Note that this may cause the server issue to re-occur.
To revert to high-resolution thumbnail images
cmd
osql -E -S SQLInstance -d DatabaseName
SQLInstance is the name assigned to the desired instance of SQL Server. This term should be replaced by the name of the computer hosting SQL Server. If you are using MSDE (i.e. Laserfiche Server (Team) or Standalone), then you should also append "\Laserfiche" (e.g. Computer\Laserfiche).delete from dboptions where optionname like 'UseLowResThumbnail'
GO
delete from lft
This step removes all existing thumbnails from your repository. Laserfiche will automatically re-generate new high-resolution thumbnails when you view documents.
Note: If you are using MSDE or SQL Server 2005 Express, thumbnail data is stored in the expansion database(s). You must perform this statement on all your DatabaseName_Data_X expansion database(s)
GO