Hi,
First of all, this is a great search engine! I'm impressed with the speed, quality of results, easy configurability, and the low cost of premium packages!
I'm having an issue with including search results, the problem code is as follows:
What ends up happening is that my apache 2.2 server spits out a 200+MB error log file, and while my browser is waiting on the results - but the results never come, and I have to restart apache before I can regain control over my system.
Note that the following works perfectly, and is the method I was using prior to switching to controlling output via functions:
Any idea on what's wrong here? I want the search results to be embedded in a dynamically generated results page. Basically index.php calls an include on content.php, then runs functions print_headers() and print_content() so that header and content adds are written in the correct part of the output html code.
First of all, this is a great search engine! I'm impressed with the speed, quality of results, easy configurability, and the low cost of premium packages!
I'm having an issue with including search results, the problem code is as follows:
Code:
<?php function print_content() { ?> <div id="content_total"> <?php virtual("search.php"); ?> </div> <?php } ?>
Note that the following works perfectly, and is the method I was using prior to switching to controlling output via functions:
Code:
<div id="content_total"> <?php virtual("search.php"); ?> </div>
Comment