1
0
This commit is contained in:
2022-09-29 16:40:13 +02:00
parent e0296f3756
commit 2ccd3a7505
3 changed files with 69 additions and 3 deletions

View File

@ -12,7 +12,12 @@ session_start();
error_reporting(E_ALL);
date_default_timezone_set("Europe/Paris");
$base_path = "/var/www/html/vote";
set_include_path(get_include_path() . ':' .$base_path . '/include');
$base_path = "/var/www/html";
set_include_path(get_include_path() . ':' .$base_path . '/vote/include');
set_include_path(get_include_path() . ':' .$base_path . '/css');
set_include_path(get_include_path() . ':' .$base_path . '/font-awesome');
set_include_path(get_include_path() . ':' .$base_path . '/img');
set_include_path(get_include_path() . ':' .$base_path . '/js');
?>