cancel
Showing results for 
Search instead for 
Did you mean: 

Disabling the FTP server.

martin_cowie
Champ in-the-making
Champ in-the-making
As I understand it, it should be possible to pop this snippet into classpath:alfresco/extension/file-servers-custom.xml

<config evaluator="string-compare" condition="FTP Server" replace="true">
   <serverEnable enabled="false"/>
</config>

… to disable the FTP server. This however, is not my experience. Could anyone point out my error?

Yours, most gratefully,

M.
3 REPLIES 3

ajr
Champ in-the-making
Champ in-the-making
I am having the same problem. Any suggestions?

dnind
Champ in-the-making
Champ in-the-making
Where in the file-servers-custom.xml did you place the changes?

The following worked for me (on Windows XP, Alfresco Community Edition 2.0, AlfrescoCommunity-2.0-Setup.exe download):

<alfresco-config area="file-servers">
…….
   <!– disable FTP server    –>
      <config evaluator="string-compare" condition="FTP Server" replace="true">
     <serverEnable enabled="false"/>
   </config>
……..
</alfresco-config>

If you place the changes (between the ………. in the code sample above) within the <config evaluator="string-compare" condition="Filesystems" replace="true"> …..  </config> section included in the sample file it does not work.

ajr
Champ in-the-making
Champ in-the-making
I tested it with 2.0 and it worked. Must have been a bug with the older versions.

thanks