0206.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Web Browser Based FTP/SCP Client with Monsta FTP</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="FTP,Web Based Tools,PHP,PHP Based Tools,Browser,Monsta FTP,Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Apache,FTP Client,File Transfer Protocol,Free Software,System Administrator,Web Server Administration,Web Based FTP Client,Browser Based FTP Client,PHP Based FTP Client,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Web Browser Based FTP/SCP Client with Monsta FTP">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="05/15/2022 08:24:08 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Web Browser Based FTP/SCP Client with Monsta FTP</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Install Apache and PHP</h2>
  26. <ol>
  27. <li>Log into the Debian device</li>
  28. <li>Run the following commands in a terminal:
  29. <div class="codeBlock"># update repositories and install any available software updates<br />
  30. sudo apt-get update<br />
  31. sudo apt-get upgrade<br />
  32. # install Apache HTTPD<br />
  33. sudo apt-get install apache2<br />
  34. # install PHP components<br />
  35. sudo apt-get install php7.3 libapache2-mod-php7.3 php7.3-common</div>
  36. </li>
  37. </ol>
  38. <h2>Installing Monsta FTP</h2>
  39. <ol>
  40. <li>Run the following commands in a terminal:
  41. <div class="codeBlock"># download and extract Monsta FTP<br />
  42. wget https://www.monstaftp.com/downloads/monsta_ftp_2.10.2_install.zip<br />
  43. sudo unzip monsta_ftp*.zip -d /var/www/html<br />
  44. # optionally, rename the created mftp directory to just ftp<br />
  45. sudo mv&nbsp;/var/www/html/mftp /var/www/html/ftp</div>
  46. </li>
  47. <li>Open a web browser and navigate to http://DNSorIP/ftp</li>
  48. </ol>
  49. <h2>Customize Branding (Optional)</h2>
  50. <ol>
  51. <li>Open a browser and navigate to&nbsp;https://www.monstaftp.com/guides/how-to-rebrand-interface</li>
  52. <li>Use the UI to change the colors of the Monsta FTP interface</li>
  53. <li>Click the Generate CSS File button</li>
  54. <li>Copy the file to the Monsta FTP installation /settings directory, for example:
  55. <div class="codeBlock">sudo cp ./theme.css /var/www/html/ftp/settings/</div>
  56. </li>
  57. <li>Refresh your Monsta FTP installation to see the updated interface theme</li>
  58. <li>Alternatively, edit the /var/www/html/ftp/settings/theme.css file directly to fully customize the look and feel</li>
  59. </ol>
  60. </div>
  61. </div>
  62. </body>
  63. </html>