Skip to main content
Participant
October 27, 2022
Question

InDesign 2023 makes a read only file

  • October 27, 2022
  • 63 replies
  • 73405 views

I have just updated to the 2023 InDesign, and now suddently my documents are read-only and I cannot save the file, but have to make a save as version and give the document a new name everytime I have to save my work.

Do you know why this is happening? And how to avoid this?

63 replies

Rishabh_Tiwari
Community Manager
Community Manager
October 28, 2022

Hi @Christina228449123bw0 ,

 

Sorry to hear about the trouble. Please try the steps shared here https://community.adobe.com/t5/indesign-discussions/problem-saving-documents-to-external-drive-and-book-on-mac/m-p/13282196#M498084 and let us know if this helps or if you need any further assistance.

 

Regards

Rishabh

Participant
November 3, 2022

I tried these steps, allowed full access, and still having the same issue as the original poster.

 

Participating Frequently
November 17, 2022

Thanks for trying the suggestion. Have you noticed this happening only with the current version? Could you please try this on the previous version and let us know if the problem persists?

 

Is it happening with the new files or old files? 

 

We'll try our best to investigate the issue.

 

Thanks,

Harshika


This problem is driving us crazy. Looking forward to a fix soon.

rob day
Community Expert
Community Expert
October 28, 2022

With major updates documents saved with an earlier version open as converted, and you are forced to Save As either to a new name or overwrite the original. It’s a safety feature in case you are forced to drop back to an earlier version—the title bar title will include [Converted]. If you are sure you want to overwrite the original you can script the overwrite. I give this script the Command-S key command;

 

var doc = app.activeDocument;
var fp = doc.filePath;
var n = doc.name;

if (doc.converted) {
    doc.save (File(fp + "/" + n))
} else {
    doc.save()
}

 

Participant
December 14, 2022

This script saved another user.... had a user call me after 3-4 hours of editing and no longer could save since it had converted. Saved as .jsx and ran perfect. Save, Save your Ass as we used to say. Thanks for the short but perfect script!

Community Expert
October 28, 2022

A long shot if it's a MAC, please check if the InDesign application has full disk access or not. If it does not then grant it the permission and test.

Also, where exactly are these documents saved? On the computer's internal harddisk, external drive or a network drive.

-Manan

-Manan