Source for file search.php
Documentation is available at search.php
* @author linea21 <info@linea21.com>
* @license http://opensource.org/licenses/gpl-3.0.html
include_once("../lib/functions_auth.php");
if(!isset ($_SESSION['authenticated'])) header("Location: login.php");
if(isset ($_POST['rub']) || isset ($_GET['rub'])) {
if(isset ($_POST['rub'])) $rub= $_POST['rub'];
if(isset ($_GET['rub'])) $rub= $_GET['rub'];
include_once("../config/define.php");
include('../languages/'. U_L. '/lang_common.'. CHARSET . '.php');
include('../languages/'. U_L. '/lang_search.'. CHARSET . '.php');
include_once("../class/system/class.". SQL. ".php");
$sql_object = new $sql_entity;
$sql_object -> DBInitialise();
$sql_object -> DBConnexion();
echo '<p>Search engine is <strong>not available</strong> for pgsql >= 8.3<br />';
echo 'Your current version is : <strong>'. $v['client']. '</strong></p>';
$sql_inc_file= $dir. "/". SQL. ".inc.php";
if(file_exists($sql_inc_file)) include_once($sql_inc_file);
include_once(THEME_ADMIN_PATH. "index.php");
|