ftp.html 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <div class="ui blue message windowsonly" style="display:none; margin-top: 0;">
  2. <h4 class="ui header">
  3. <i class="windows icon"></i>
  4. <div class="content">
  5. Mount FTP on Windows
  6. </div>
  7. </h4>
  8. <p>To connect your File Explorer to the ArozOS FTP server, enter the link above into the address bar of your file explorer window.</p>
  9. <p>If you <b><a href="https://superuser.com/questions/1309756/not-able-to-access-ftp-server-from-other-machines-in-same-lan-when-windows-firew">cannot access the FTP without turning off the Windows Firewall</a></b>, execute this command in cmd as administrator<br>
  10. <code>netsh advfirewall set global StatefulFTP disable</code></p>
  11. </div>
  12. <div class="ui basic message maconly" style="display:none;">
  13. <h4 class="ui header">
  14. <i class="apple icon"></i>
  15. <div class="content">
  16. Mount FTP on your Mac
  17. </div>
  18. </h4>
  19. <p>To connect your Finder to the ArozOS FTP server, select <code>Go</code> <i class="arrow right icon"></i> <code>Connect to Server</code> and enter the link above into the address bar</p>
  20. </div>
  21. <script>
  22. var isMac = navigator.platform.indexOf('Mac') > -1;
  23. var isWindows = navigator.platform.indexOf('Win') > -1;
  24. if (isMac){
  25. $(".maconly").show();
  26. }else if (isWindows){
  27. $(".windowsonly").show();
  28. }
  29. </script>