Otto Posted July 28, 2018 Posted July 28, 2018 When the PDF is composing on the Server it is using something like Temporary files folder: C:\Users\Public\Documents\PTI\FusionPro\TEMP_7016\ Can I change the path to like d: drive? Quote
Dan Korn Posted July 30, 2018 Posted July 30, 2018 In FP Server? Sure, just add a "TempFolder" entry in the CFG file, pointing to the folder you want, such as: TempFolder=D:\your folder name This can be done with a setting in the Producer API as well. Or you can change the base path under which FusionPro will create the composition-specific temp folder with the "TempFolderBase" setting. If you're running Producer, you can change the TEMP environment variable for the user account under which the jobs are set to run. Quote
Otto Posted August 1, 2018 Author Posted August 1, 2018 Currently Fusionpro Server is installed on D: drive, but the temporary files are running on the C drive. I'm looking at changing the base path, can you elaborate on how to do that? Quote
Dan Korn Posted August 1, 2018 Posted August 1, 2018 Currently Fusionpro Server is installed on D: drive, but the temporary files are running on the C drive. I'm looking at changing the base path, can you elaborate on how to do that? Well, I assume you don't want the files on the root of "D:". I would create a base folder for your temp files, something like "D:\FusionProTemp", and then add this line to your CFG file: TempFolderBase=D:\FusionProTemp And FusionPro will create a new temp subfolder under that folder for each composition. Quote
Otto Posted August 3, 2018 Author Posted August 3, 2018 Instead of changing for each individual process that has their .CFG, Can I change the default path for the Server temp location? Quote
Dan Korn Posted August 3, 2018 Posted August 3, 2018 (edited) Instead of changing for each individual process that has their .CFG, Can I change the default path for the Server temp location? You mean like with a Registry setting or something? No. It's a CFG setting. Our expectation is that an application utilizing FusionPro VDP Server will either want to control the temp file path on a per-job (composition) basis, via the "TempFolder" CFG file setting, or point the base path to a folder, via the "TempFolderBase" CFG setting, under which each job will make its own subfolder for its temp files, and delete that folder when it finishes. In either case, we expect that the CFG file will be modified in a programmatic way by the application using FP Server, so really it would just be a setting in your own app. Our own FusionPro VDP Producer API system does this. In other words, I wouldn't expect you to be manually modifying each CFG file. Rather, I would expect that whatever automated process you have that invokes the FusionPro Server composition would automatically add a line to each CFG file as needed. All that said, however, if you really don't want to be modifying CFG files, you can always change the TEMP environment variable, either on a per-process basis, or system-wide on your machine, or for the account under which you'll be running your jobs Edited August 3, 2018 by Dan Korn added note about TEMP environment variable Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.