123456789101112131415161718192021222324252627282930 |
- <div class="ui blue message windowsonly" style="display:none; margin-top: 0;">
- <h4 class="ui header">
- <i class="windows icon"></i>
- <div class="content">
- Mount FTP on Windows
- </div>
- </h4>
- <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>
- <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>
- <code>netsh advfirewall set global StatefulFTP disable</code></p>
- </div>
- <div class="ui basic message maconly" style="display:none;">
- <h4 class="ui header">
- <i class="apple icon"></i>
- <div class="content">
- Mount FTP on your Mac
- </div>
- </h4>
- <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>
- </div>
- <script>
- var isMac = navigator.platform.indexOf('Mac') > -1;
- var isWindows = navigator.platform.indexOf('Win') > -1;
- if (isMac){
- $(".maconly").show();
- }else if (isWindows){
- $(".windowsonly").show();
- }
- </script>
|