cancel
Showing results for 
Search instead for 
Did you mean: 

Re: Print From URL not finding documents

Okay I think you need to add this to your "httpd-autoindex.conf" file

 

IndexOptions FancyIndexing HTMLTable VersionSort NameWidth=*

 I basically erased all the contents of mine and have this one line in that file.  Now my output is 

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
 <head>
  <title>Index of /</title>
 </head>
 <body>
<h1>Index of /</h1>
  <table>
   <tr><th valign="top">&nbsp;</th><th><a href="?C=N;O=D">Name</a></th><th><a href="?C=M;O=A">Last modified</a></th><th><a href="?C=S;O=A">Size</a></th><th><a href="?C=D;O=A">Description</a></th></tr>
   <tr><th colspan="5"><hr></th></tr>
<tr><td valign="top">&nbsp;</td><td><a href="0023_m.jpg">0023_m.jpg</a></td><td align="right">2006-10-14 17:48  </td><td align="right"> 30K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="0044_m.jpg">0044_m.jpg</a></td><td align="right">2006-10-14 17:48  </td><td align="right"> 24K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="0065_m.jpg">0065_m.jpg</a></td><td align="right">2006-10-14 17:49  </td><td align="right"> 31K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="2gx3cix.jpg">2gx3cix.jpg</a></td><td align="right">2008-07-26 13:33  </td><td align="right">200K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="4ODS4WONZ3WE43TKB66VE4TBCX2TNGKH.jpeg">4ODS4WONZ3WE43TKB66VE4TBCX2TNGKH.jpeg</a></td><td align="right">2008-05-13 02:57  </td><td align="right"> 83K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="7PW6QFVR77UOWNPRRV3YJ2DDUBVYHAT3.jpeg">7PW6QFVR77UOWNPRRV3YJ2DDUBVYHAT3.jpeg</a></td><td align="right">2008-05-13 01:54  </td><td align="right"> 38K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="7TKO3A2ISTRZLXE6JQN3RXO25SZLXSZY.jpeg">7TKO3A2ISTRZLXE6JQN3RXO25SZLXSZY.jpeg</a></td><td align="right">2008-05-13 01:51  </td><td align="right"> 63K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="10-1.jpg">10-1.jpg</a></td><td align="right">2008-04-08 22:16  </td><td align="right">8.8K</td><td>&nbsp;</td></tr>
<tr><td valign="top">&nbsp;</td><td><a href="New%20Folder%20(2)/">New Folder (2)/</a></td><td align="right">2015-01-13 21:30  </td><td align="right">  - </td><td>&nbsp;</td></tr>
   <tr><th colspan="5"><hr></th></tr>
</table>
</body></html>

 

 

0 Kudos

Re: Print From URL not finding documents

The site was originally developed against the IIS server format.  I think it's having trouble parsing your page since its using a slightly different format and the parsers can't work through it.  For example the HTML for your page is 

<html>
 <head>
  <title>Index of /vegas</title>
 </head>
 <body>
<h1>Index of /vegas</h1>
<ul><li><a href="/"> Parent Directory</a></li>
<li><a href="AppStudio/"> AppStudio/</a></li>
<li><a href="SFTFS-28UA.pdf"> SFTFS-28UA.pdf</a></li>
</ul>
<address>Apache Server at www.sohowebhosts.com Port 80</address>
</body></html>

 Whereas the IIS would look like 

<html><head><title>localhost - /</title></head><body><H1>localhost - /</H1><hr>

<pre> 
<A HREF="/">[To Parent Directory]</A><br>
1/11/2015 11:44 AM        &lt;dir&gt; <A HREF="/AppStudio//">AppStudio/</A><br>
1/13/2015  8:17 PM          168 <A HREF="/SFTFS-28UA.pdf">SFTFS-28UA.pdf</A><br>
</pre><hr></body></html>

 Notice the lack of BR to separate the files whereas apache is using an unordered list.  The problem with Apache's directory listings is that there are some modules out there that make everything look pretty and they break the app.  I'd check the modules you have installed and see if you can disable them.  In particular there's mod_autoindex.  I'd see if you can disable that if you're using it.

 

0 Kudos

Print From URL not finding documents

 I trying to get print from URL working but it does not find any documents. 

 

I can see the documents if I browse the URL so I don't think it's a .htaccess issue but just in case, I created a .htaccess file to allow directory browsing. I can still see the documnts in a browser but Print from URL does not find anything. 

 1-13-2015 3-36-25 PM.png

The server weblogs show the device accessing the server and there are no errors in the apaches error log.

log.png

 

Thanks,

Tony

0 Kudos