1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Web Browser Based FTP/SCP Client with Monsta FTP</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="FTP,Web Based Tools,PHP,PHP Based Tools,Browser,Monsta FTP,i12bretro,Tutorial,How To">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Web Browser Based FTP/SCP Client with Monsta FTP">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Web Browser Based FTP/SCP Client with Monsta FTP</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Install Apache and PHP</h2>
- <ol>
- <li>Log into the Debian device</li>
- <li>Run the following commands in a terminal:
- <div class="codeBlock"># update repositories and install any available software updates<br />
- sudo apt-get update<br />
- sudo apt-get upgrade<br />
- # install Apache HTTPD<br />
- sudo apt-get install apache2<br />
- # install PHP components<br />
- sudo apt-get install php7.3 libapache2-mod-php7.3 php7.3-common</div>
- </li>
- </ol>
- <h2>Installing Monsta FTP</h2>
- <ol>
- <li>Run the following commands in a terminal:
- <div class="codeBlock"># download and extract Monsta FTP<br />
- wget https://www.monstaftp.com/downloads/monsta_ftp_2.10.2_install.zip<br />
- sudo unzip monsta_ftp*.zip -d /var/www/html<br />
- # optionally, rename the created mftp directory to just ftp<br />
- sudo mv /var/www/html/mftp /var/www/html/ftp</div>
- </li>
- <li>Open a web browser and navigate to http://DNSorIP/ftp</li>
- </ol>
- <h2>Customize Branding (Optional)</h2>
- <ol>
- <li>Open a browser and navigate to https://www.monstaftp.com/guides/how-to-rebrand-interface</li>
- <li>Use the UI to change the colors of the Monsta FTP interface</li>
- <li>Click the Generate CSS File button</li>
- <li>Copy the file to the Monsta FTP installation /settings directory, for example:
- <div class="codeBlock">sudo cp ./theme.css /var/www/html/ftp/settings/</div>
- </li>
- <li>Refresh your Monsta FTP installation to see the updated interface theme</li>
- <li>Alternatively, edit the /var/www/html/ftp/settings/theme.css file directly to fully customize the look and feel</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|