PDA

View Full Version : Skipped files that are located on a different server


celarsen
03-28-2006, 07:54 PM
W2003 web server
Zoom Pro
plugins are installed
extensions added

Almost all of our .doc .pdf, etc. files are located on another server. Zoom skips indexing these files. I have gone through the faq section. I do not know if the Javascript faq applies. Below is the top section of code for you to check out.

I have given permissions for the web server to access the data server.

Cory

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Forms</title>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">


<script src="D2_open.js" language="javascript" type="text/javascript">
</script>
<meta name="Microsoft Theme" content="none, default">
<meta name="Microsoft Border" content="none, default">
</head>

<body><center>
<address><span style="font-style: normal"><font size="6" face="Arial">L&amp;R
Intranet - Forms
Page</font></span></address>
<address></address>
<table border="0" cellpadding="0" style="border-collapse: collapse" id="table1" width="640">
<tr>
<td align="center">Employee</td>
<td align="center">General Office</td>
</tr>
<tr>
<td align="center"><form name="JumpForm30309" action="">


<select size="1" name="Employee_Forms" tabindex="1">
<option value="">Select a Form Then Click GO</option>
<option value="file:///G:/Intranet/Final_Forms/Emp-Request%20for%20Paid-Unpaid%20Leave.doc">Request for Paid-Unpaid Leave</option>
<option value="file:///G:/Intranet/Final_Forms/Emp-Request%20for%20Unpaid%20Leave.doc">Request for Unpaid Leave</option>
<option value="file:///G:/Intranet/Final_Forms/Emp-Time%20sheet%20for%20non-exempt.xls">Time Sheet for Non-exempt Employees</option>
</select><input type="button" value="GO" name="JumpButton" onclick="javascript:D2_doJump(JumpForm30309,true,false);"></p>
</form>
</td>
<td align="center"><form name="JumpForm6419" action="">


<select size="1" name="General_Forms" tabindex="2">
<option value="">Select a Form Then Click GO</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Circulation.doc">Circulation</option>
<option value="http://192.168.2.1/lepin-intranet/computer_help_form.htm">Computer Support Form</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Disc%20Rating.doc">Disc Rating</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-E-employee%20info.current.xls">Employee Information</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-FAX%20NUMBERS-new.doc">Fax Numbers</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Fax%20Transmittal.doc">Fax Transmittal</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Incentive%20and%20Pager%20Duty%20Worksheet.doc">Incentive and Pager Duty</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Incident%20Report%203.04.05.doc">Incident Report</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-INSTRUCTION.DOC">Instruction</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-LEGAL%20INTERPRETATION%20TABLE%20OF%20CONTENTS.doc">Legal Interpretation of Table of Contents</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Mileage%20Reimbursement.xls">Mileage Reimbursement</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-NONROUTINE%20CHARGES.doc">Non-Routine Charges</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Printing%20Instructions.doc">Printing Instructions</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Printing%20Proxy%20color.doc">Printing Proxy</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Properties%20Managed.doc">Properties Currently Managed</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Properties%20Previously%20Managed.doc">Properties Previously Managed</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Receipt%20of%20Contractor%20Key%20Form.doc">Receipt of Contractor Key</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Receipt%20of%20File.doc">Receipt of File</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-REFERENCE%20LIBRARY%20CONTENTS.doc">Reference Library Contents</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-SPECIAL%20INSTRUCTIONS.doc">Special Instructions</option>
<option value="http://192.168.2.1/lepin-intranet/supplies_order_form.htm">Supplies Order Form</option>
<option value="http://192.168.2.1/lepin-intranet/tops_help_form.htm">Tops Help Form</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Waiver%20of%20Personal%20Injury%20Claim%20form.doc">Waiver of Personal Injury Claim</option>
<option value="file:///G:/Intranet/Final_Forms/Gen-Workers%20Comprehensive%20Request%20Exemption.doc">Workmans Comprehensive Request Exemption</option>
</select><input type="button" value="GO" name="JumpButton0" onclick="javascript:D2_doJump(JumpForm6419,true,false);"></p>
</form>
</td>
</tr>

Ray
03-28-2006, 11:49 PM
I presume you are using Spider Mode indexing.

The first problem here is that those are not actually links. The path for those files are simply values in a dropdown box. You are using Javascript to make it possible for the user to open them. As explained in this FAQ (http://www.wrensoft.com/zoom/support/faq_problems.html#javascriptmenus), it is not possible for the spider to follow Javascript generated "links".

Consult the FAQ linked above for a solution to provide actual hypertext links to the files within the Javascript menu (using a <noscript> tag block).

Once you have actual hypertext links to these files, you should also make sure you have enabled "Scan files linked via file:// URLs" in the Configuration window (under the "Scan Options" tab).

Hope that helps.

celarsen
03-29-2006, 04:29 PM
Thanks for suggestions. I'll let you know the outcome.