Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If you are allowed to go further then javascript/html facilities - I would use the apache web server to represent your directory listing via http.</p> <p>If this solution is appropriate. these are the steps:</p> <ol> <li><p>download apache hhtp server from one of the mirrors <a href="http://httpd.apache.org/download.cgi" rel="nofollow">http://httpd.apache.org/download.cgi</a></p></li> <li><p>unzip/install (if msi) it to the directory e.g C:\opt\Apache (the instruction is for windows)</p></li> <li><p>map the network forlder as a local drive on windows (\server\folder to let's say drive H:)</p></li> <li><p>open conf/httpd.conf file</p></li> <li><p>make sure the next line is present and not commented</p> <p>LoadModule autoindex_module modules/mod_autoindex.so</p></li> <li><p>Add directory configuration</p></li> </ol> <p><code>&lt;Directory "H:/path"&gt;</code></p> <p><code>Options +Indexes</code></p> <p><code>AllowOverride None</code></p> <p><code>Order allow,deny</code></p> <p><code>Allow from all</code></p> <p><code>&lt;/Directory&gt;</code> 7. Start the web server and make sure the directory listingof the remote folder is available by http. hit localhost/path 8. use a frame inside your web page to access the listing</p> <p><strong>What is missed:</strong> 1. you mignt need more fancy configuration for the host name, refer to Apache Web Server docs. Register the host name in DNS server</p> <ol> <li>the mapping to the network drive might not work, i did not check. As a posible resolution - host your web server on the same machine as smb server.</li> </ol>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload