la structure :
data/siteconfig/siteconfig.php
sub-demos/demo-typo/demo.php
sub-demos/demo-typo/header.php
themes/default/static-home.php
themes/default/header.php
config.php
index.php
J'ai le message d'erreur : Use of undefined constant MYS_SITE_CONFIG
dans config.php :
dans index.php:
dans demo.php
dans header.php:
Modifié par cpalo (16 Nov 2017 - 19:19)
data/siteconfig/siteconfig.php
sub-demos/demo-typo/demo.php
sub-demos/demo-typo/header.php
themes/default/static-home.php
themes/default/header.php
config.php
index.php
J'ai le message d'erreur : Use of undefined constant MYS_SITE_CONFIG
dans config.php :
define('MYS_SITE_CONFIG', 'data/siteconfig/');
dans index.php:
define('MYS_ROOT', './');
include(MYS_ROOT.'config.php');
define('ROOT_SUBFOLDER', MYS_ROOT.'sub-demos');
dans demo.php
<?php include('/header.php') ?>
dans header.php:
<!DOCTYPE html>
<html lang="fr">
<head>
<?php require_once (MYS_SITE_CONFIG.'gtag.php');?>
<?php include(MYS_SITE_CONFIG.'siteconfig.php'); ?>
Modifié par cpalo (16 Nov 2017 - 19:19)