If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Announcement
Collapse
No announcement yet.
Newbie Questions - Excel indexing & links to parent docu
Ok! I have purchased the Pro version of zoom and after fixing some of my own errors it now searches thru my xls files quite well.
Now for my next question.
The results zoom returns link directly to the file. Is there a way to make zoom list the html page that contains the link to the xls file instead of the actual file itself?
The results zoom returns link directly to the file. Is there a way to make zoom list the html page that contains the link to the xls file instead of the actual file itself?
No. At least, not without regular post-processing of results or additional script modifications.
You are asking for Zoom to link to the parent document but not the document itself. The problems are,
1) Zoom doesn't store information about links between parent and child pages in the index. It has not been required in the past and would take up unnecesary space.
2) There can be many (even hundreds) of links to the child document. So which parent URL shoud be displayed?
3) There could be other complications, like what URL is returned for the child of a child if the child URL itself should never be returned.
So to get something working how you want, possible solutions are,
a) Do a server side re-direct to the parent document when users access the Excel file with an invalid refering URL
b) Manually edit the zoom_pages.zdat file after each indexing session. Changing URLs as required.
c) Write a program to automatically post process the zoom_pages.zdat in a manner similar to b)
d) Extract an abstract from the Excel file (all the keywords) and place it on the parent page. Then don't index the Excel file, just index the parent page with the abstract.
e) You modify the search script to transform the URLs being outputed during a search to the correct URLs. What is actually required would depend on the structure of your site. This would probably only work if you have a structured site.
In short, there are solutions, but not easy solutions.
Comment