
Het loopt dus spaak bij het openen van de site.
Code: Selecteer alles
Got error 'PHP message: PHP Warning: mysqli_select_db() expects exactly 2 parameters, 1 given in /var/www/vhosts/domain.tld/httpdocs/includes/config.php on line 10\nPHP message: PHP Warning: mysqli_query() expects at least 2 parameters, 1 given in /var/www/vhosts/domain.tld/httpdocs/includes/alg_funcs.php on line 78\nPHP message: PHP Warning: mysqli_fetch_object() expects parameter 1 to be mysqli_result, null given in /var/www/vhosts/domain.tld/httpdocs/includes/alg_funcs.php on line 84\n', referer: https://domain.tld/404.shtml
Code: Selecteer alles
<?php
@session_start();
catchAlias();
setLanguageID();
function catchAlias()
{
if(isset($_REQUEST["news_alias"]))
{
$table = "news";
$alias = $_REQUEST["news_alias"];
}
else if(isset($_REQUEST["alias"]))
{
// echo "alias : " . $_REQUEST["alias"];
$table = "menuitems";
$alias = $_REQUEST["alias"];
/*$alias = explode("/", $alias);
$alias = $alias[count($alias)-1]; */
}
setCurrID($alias, $table);
}
function setLanguageID()
{
if(!isset($_SESSION["langID"]))
{
$_SESSION["langID"] = getDefaultLanguage();
}
}
function isHome()
{
$id = addslashes($_REQUEST["id"]);
if($id == getHomepage())
return true;
else
return false;
}
function getHomepage()
{
$query = mysqli_query("select id from menuitems where home='y' and langID=" . $_SESSION["langID"]) or die(mysqli_error());
$obj = mysqli_fetch_object($query);
return $obj->id;
}
function getPageName()
{
return basename($_SERVER['PHP_SELF']);
}
function setCurrID($alias, $table)
{
if($alias != "")
{
if($table == "menuitems")
$query = mysqli_query("select id, langID from $table where alias='$alias'");
// $query = mysqli_query("select id, langID from $table where alias='index'");
else
{
$query = mysqli_query("select id from $table where alias='$alias'");
}
$obj = mysqli_fetch_object($query);
if($obj->id != "")
{
$_REQUEST["id"] = $obj->id;
if($obj->langID != "")
{
$_SESSION["langID"] = $obj->langID;
}
}
else if($table == "news")
{
header("Location: /all_newsitems.php");
exit();
}
else
{
header("Location: 404.shtml");
exit();
}
}
}