coldfusion file content no longer readable when we open the file in an editor

后端 未结 1 740
刺人心
刺人心 2020-12-22 04:21

My ColdFusion 11 app is working fine on my local machine (Windows 10). But when I open any .cfm file in Eclipse or even in a Not

相关标签:
1条回答
  • 2020-12-22 05:25

    You are looking at an encrypted file. Most CFML files within the CFIDE folder are encrypted to protect the code from prying eyes. This has nothing to do with IIS.

    A short description about this topic you can find here.

    Unless there is any batch encryption in place for your own files, then you should be able to open up your own code and you will see the readable content. If you accidentally encoded your own files, then you will have to restore your backup or get the original files from source control. In the past Google search brought up a (technically illegal) tool for unencrypting such files. I've no idea whether this still works with newer ColdFusion editions.

    0 讨论(0)
提交回复
热议问题