From 63d9dec120b1835e9b438035933b28aedc69d3da Mon Sep 17 00:00:00 2001
From: Yannick Warnier
+
+ Access to "personal" files
+ In Chamilo 1.*, it is possible to upload files to one's "personal" folder
+ through the social network page, or through any upload popup that allows
+ you to choose the file destination (and you select your personal folder).
+
+ Due to the development background in Chamilo, these files are then directly
+ accessible by anonymous users, which can lead to personal data leaks. This
+ has been left in this mode by default because many teacher users had used
+ this option to share common images between different courses and blocking
+ the feature would have meant public courses would not have shown the given
+ images.
+
+ To avoid this issue and make files accessible *only* to authenticated users,
+ please set the following option to 'true' in configuration.php:
+
+
+ $_configuration['block_my_files_access'] = true;
+ This will prevent anonymous access, but will not prevent access from other
+ authenticated users.