I have leftnav.php which has amongst other nav items
<form method="get" action="search/search.php" target="_blank">
<input type="text" name="zoom_query" size="15" />
<input type="submit" value="Search" />
</form>
leftnav is an include that's included on every page of the site
I have all of the zoom stuff in a folder called search
when i test the search, by going to index.php I get the following error message
Warning: fopen(./logs/searchwords.log) [function.fopen]: failed to open stream: No such file or directory in...
I know the issue is search/search.php but I am not quite sure how to change the search.php page code to open the correct filepath
Thanks for any assistance you can offer
<form method="get" action="search/search.php" target="_blank">
<input type="text" name="zoom_query" size="15" />
<input type="submit" value="Search" />
</form>
leftnav is an include that's included on every page of the site
I have all of the zoom stuff in a folder called search
when i test the search, by going to index.php I get the following error message
Warning: fopen(./logs/searchwords.log) [function.fopen]: failed to open stream: No such file or directory in...
I know the issue is search/search.php but I am not quite sure how to change the search.php page code to open the correct filepath
Thanks for any assistance you can offer
Comment