Hi!
First of all I would like to say that ZOOM is great, with little effort you get great, professional results, but I have some questions too:
I would like to have my individual result page. I know a good was is to customize the search_template.html file, but I can't use that file because my result page is created dynamically by a Content Management System.
So one way to solve that problem would be to include the search.asp file in my individual result page by inserting . Unfortunately this causes an error when calling my result page in the browser (Internal Server Error 500, the page cannot be displayed).
So the first question is: What's wrong? Why do I get that error?
Another way to include the results into my own template is to tell Zoom not to use the search_template.html file but my file.
So the second question is: Is there a way to do so by changing the settings in the tool or do I have to change the code of search.asp by changing the line
set fp_template = fso.OpenTextFile(MapPath(TemplateFilename), 1)
into
set fp_template = fso.OpenTextFile(MapPath("my_resultpage.html"), 1)
Thanks, Philipp
First of all I would like to say that ZOOM is great, with little effort you get great, professional results, but I have some questions too:
I would like to have my individual result page. I know a good was is to customize the search_template.html file, but I can't use that file because my result page is created dynamically by a Content Management System.
So one way to solve that problem would be to include the search.asp file in my individual result page by inserting . Unfortunately this causes an error when calling my result page in the browser (Internal Server Error 500, the page cannot be displayed).
So the first question is: What's wrong? Why do I get that error?
Another way to include the results into my own template is to tell Zoom not to use the search_template.html file but my file.
So the second question is: Is there a way to do so by changing the settings in the tool or do I have to change the code of search.asp by changing the line
set fp_template = fso.OpenTextFile(MapPath(TemplateFilename), 1)
into
set fp_template = fso.OpenTextFile(MapPath("my_resultpage.html"), 1)
Thanks, Philipp
Comment