With TYPO3 6.2, my site entirely lives in public_html/mydir
, which corresponds to mydir.mydomain.com
.
Now I would like to place file storages outside that subdomain / directory, say, public_html/otherdir
.
So I tried setting the file storage path to absolute and /home/username/public_html/subdomaindir/public/
, as such:
This would result in FAL errors in the backend, no file tree displayed anymore, and the storage going offline.
Can this be done, and if so, how?
And, extra question: If I just set a symlink with
ln -s /home/username/public_html/subdomaindir/public/ /home/username/public_html/mydir/public/
would that (also) work?