Hi there,
for indexing an intranet application, I use the CGI Version to perform searches. The template file (search_template.html), the search script (search.cgi) and the index files (*.zdat) are located in www/cgi-bin/ - my application resides in the directory www/app/
I use apache as web server and because of an ScriptAlias entry in my httpd.conf, everything works as expected
My question is about the current template location: My web application is written in PHP and follows the MVC pattern. Therefore, I also have a views/ directory inside this web app folder structure.
I use Git for version control and deployment (app/ folder only), so it would be really nice to select the template which will be used inside of Zoom.
tl;dr
Can I specify a custom location for the search template? Instead of using www/cgi-bin/search_template.html I want to use www/app/views/search/zoom_template.html without copying everything else (search script, database files).
Thanks in advance!
for indexing an intranet application, I use the CGI Version to perform searches. The template file (search_template.html), the search script (search.cgi) and the index files (*.zdat) are located in www/cgi-bin/ - my application resides in the directory www/app/
I use apache as web server and because of an ScriptAlias entry in my httpd.conf, everything works as expected
My question is about the current template location: My web application is written in PHP and follows the MVC pattern. Therefore, I also have a views/ directory inside this web app folder structure.
I use Git for version control and deployment (app/ folder only), so it would be really nice to select the template which will be used inside of Zoom.
tl;dr
Can I specify a custom location for the search template? Instead of using www/cgi-bin/search_template.html I want to use www/app/views/search/zoom_template.html without copying everything else (search script, database files).
Thanks in advance!
Comment