Reputation: 4171
I've downloaded the introduction package for TYPO3 6.0.0rc1 and tried to use a new file storage named "fileuser". So I created an new file storage entry with the relative base path "fileuser/" and created the folder in filesystem (permission is set to 777) along with the "processed" folder (also defined in the file storage dataset).
Now i called the File -> Filelist module and reloaded the folder tree. The new file storage is shown but with the addition "offline". If I try to access it I am getting the error: "You are trying to access a folder in a storage that is not browsable.".
Any idea on how to get rid of this problem?
Upvotes: 2
Views: 2643
Reputation: 3807
This is a common problem when developing within a distributed development environment with separate working copies. Any changes made to the file/folder structure should be adopted immediately by all other working copies.
As pgampe has pointed out, the storage folder must be set online (again). This is how you do it step by step:
Your storage folder now should be accessable again.
Upvotes: 7
Reputation: 4578
You need to set the online
checkbox in the storage configuration record
on the access tab
.
Upvotes: 5