I use an Ajax application to upload files in a Symfony2 web application. When I upload the files, I put them in a path like:
"%kernel.root_dir%/../web/bundles/acmehome/images/uploaded"
I have a lot of troubles regarding the management of these files.
Are all the files in web directory visible/searchable/browsable? If yes, which path should I use for storage purpose in order to make them visible only for registered users?
I make this question because here the user Rook suggested not to store the files in the web root.