Enable the download link
Download links are added to the most recent items in the Output History overview. By default the download link will only work on the localhost, this is due to the tight security settings of printShop Mail Web. In order to enable the download link:
- Create a text file in the output folder and name this file .htaccess: /files/output/.htaccess.
The purpose of .htaccess files is to provide a means to configure Apace for users who cannot modify the main configuration file. More information about .htaccess files can be found at the following web site: http://httpd.apache.org/docs/2.0/howto/htaccess.html.
- Add the following code to the .htaccess file to allow access to all files in the output folder and its sub folders. Replace the <youripaddress> with the IP address of your domain.
<FilesMatch ".*">
Order Allow, Deny
Allow from <youripaddress>
</Filesmatch>
- Use the following code to provide access to .pdf files:
<FilesMatch ".(pdf)$">
Order Allow, Deny
Allow from <youripaddress>
</Filesmatch>
- Use the following code to provide access to .pdf and .zip files:
<FilesMatch ".(pdf|zip)$">
Order Allow, Deny
Allow from <youripaddress>
</Filesmatch>