Jun 12
Disabling ColdFusion administrator authentication
Posted by James Netherton | Thursday 12 June 2008 11:51 AM | In ColdFusion
I find having to log into the ColdFusion administrator a pain when I'm working on applications in my development environment. You can disable the authentication process by way of the following:
1. Open up WEB-INF\cfusion\lib\neo-security.xml on multiserver installations or cfinsntallationdir\lib\neo-security.xml on standalone installs
2. Edit the admin.security.enabled property so that it appears as follows:
<var name="admin.security.enabled">
<boolean value="false"/>
</var>
<boolean value="false"/>
</var>
3. Save the file and restart ColdFusion
Obviously you would not want to be doing this in a production or publicly accessible environment!
0 Comments
[Post comment]