This article doesn't cover backing up your user files, but only the FileRun installation which includes the user settings, WebLink information, metadata, file comments and any other data the FileRun users might attach to the files and folders.
There are two parts to a complete back up of your FileRun installation:
If you are using a hosting service, you most probably have a MySQL database backup option in the hosting control panel. It should help you download an .sql
file that contains the database' structure and data.
If there isn't a dedicated backup option, there is most probably phpMyAdmin
, which is a tool for managing MySQL databases that you can use to make the backup.
Databases
(You may not need to do this step)Export
tab on the top set of tabs.df_
.Structure
, Add DROP TABLE
, Add IF NOT EXISTS
, Add AUTO_INCREMENT
, Enclose table and field names with backquotes
Save as file
option, and leave the template name as is.Go
and you should be prompted for a file to download. Save the file to your computer. Depending on the database size, this may take a few moments.You will need SSH access to the server or direct access to the server's command line prompt.
cd /path/to/filerun/ filerun> mysqldump --add-drop-table -h localhost -u mysqlusername -p databasename -c > filerun.backup.sql
Replace mysqlusername
and databasename
with the actual names. You can find them inside system/data/autoconfig.php
.
You will be asked to enter your MySQL password. Type it and hit Enter.
This is simple as making a duplicate copy of the FileRun installation folder.
You can use any method (FTP, SSH, or the hosting control panel file manager).