0206.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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,i12bretro,Tutorial,How To">
  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. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Web Browser Based FTP/SCP Client with Monsta FTP</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <h2>Install Apache and PHP</h2>
  25. <ol>
  26. <li>Log into the Debian device</li>
  27. <li>Run the following commands in a terminal:
  28. <div class="codeBlock"># update repositories and install any available software updates<br />
  29. sudo apt-get update<br />
  30. sudo apt-get upgrade<br />
  31. # install Apache HTTPD<br />
  32. sudo apt-get install apache2<br />
  33. # install PHP components<br />
  34. sudo apt-get install php7.3 libapache2-mod-php7.3 php7.3-common</div>
  35. </li>
  36. </ol>
  37. <h2>Installing Monsta FTP</h2>
  38. <ol>
  39. <li>Run the following commands in a terminal:
  40. <div class="codeBlock"># download and extract Monsta FTP<br />
  41. wget https://www.monstaftp.com/downloads/monsta_ftp_2.10.2_install.zip<br />
  42. sudo unzip monsta_ftp*.zip -d /var/www/html<br />
  43. # optionally, rename the created mftp directory to just ftp<br />
  44. sudo mv&nbsp;/var/www/html/mftp /var/www/html/ftp</div>
  45. </li>
  46. <li>Open a web browser and navigate to http://DNSorIP/ftp</li>
  47. </ol>
  48. <h2>Customize Branding (Optional)</h2>
  49. <ol>
  50. <li>Open a browser and navigate to&nbsp;https://www.monstaftp.com/guides/how-to-rebrand-interface</li>
  51. <li>Use the UI to change the colors of the Monsta FTP interface</li>
  52. <li>Click the Generate CSS File button</li>
  53. <li>Copy the file to the Monsta FTP installation /settings directory, for example:
  54. <div class="codeBlock">sudo cp ./theme.css /var/www/html/ftp/settings/</div>
  55. </li>
  56. <li>Refresh your Monsta FTP installation to see the updated interface theme</li>
  57. <li>Alternatively, edit the /var/www/html/ftp/settings/theme.css file directly to fully customize the look and feel</li>
  58. </ol>
  59. </div>
  60. </div>
  61. </body>
  62. </html>