Displaying 1 result from an estimated 1 matches for "search_function".
Did you mean:
arch_function
2009 Aug 17
1
Xapian DatabaseError
...rror message: DatabaseOpeningError: Couldn't detect type of database. The code is the same but runned in two different modality didn't work.
To test my page in local I use EasyPhp, I've loaded the php_xapian.dll extension and the problem remains. Why?
all the file and dir: search.php, search_function.inc, xapian_db are in the same dir
1) This is the code of search page
if(isset($_GET['query'])){
$query = $_GET['query'];
require_once 'search_function.inc';
simpleSearch($query,"xapian_db"); --> xapian_db is the path where is stored xapian db
}
2)...