Author |
|
czmilosz Newbie
Joined: 20 July 2020 Location: United States
Online Status: Offline Posts: 2
|
Posted: 20 July 2020 at 5:18am | IP Logged
|
|
|
Hello Folks!
I have an installation running on Ubuntu and am looking to change the directory where files are stored.
I installed via package and am running apache2 for the front end.
What do I need to edit to modify the default data directory?
Thanks!
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 20 July 2020 at 5:36am | IP Logged
|
|
|
Currently, the recommended approach is to move the directory elsewhere, and create symbolic link pointing to the expected location of the data directory. For example:
Code:
mv /usr/share/aurora-files/data /var/data
ln -s /var/data /usr/share/aurora-files/data |
|
|
There's a legacy option that allows for changing data directory location by supplying inc_settings_path.php file but it looks like there's currently an issue preventing that from working, I have reported it to the developers.
--
Regards,
Igor, Afterlogic Support
|
Back to Top |
|
|
czmilosz Newbie
Joined: 20 July 2020 Location: United States
Online Status: Offline Posts: 2
|
Posted: 20 July 2020 at 5:54am | IP Logged
|
|
|
Awesome!
Thanks Igor!!
|
Back to Top |
|
|