Bonjour,
J’ai deux raspi. Sur l’un j’ai déjà la V4. Sur l’autre j’étais en V3 et plutôt que de migrer j’ai refait une install total en reprenant la doc d’installation ici :
installation jeedom
Mais là sa ne fonctionne pas. Une fois l’installation terminé si je me rend à l’URL de ma jeedom j’ai cette erreur :
Citation
. */ try { if (!file_exists(DIR . ‹ /core/config/common.config.php ›)) { header(« location: install/setup.php »); } if (!isset($_GET[‹ v ›])) { $useragent = (isset($_SERVER[« HTTP_USER_AGENT »])) ? $_SERVER[« HTTP_USER_AGENT »] : ‹ none ›; $getParams = (stristr($useragent, « Android ») || strpos($useragent, « iPod ») || strpos($useragent, « iPhone ») || strpos($useragent, « Mobile ») || strpos($useragent, « WebOS ») || strpos($useragent, « mobile ») || strpos($useragent, « hp-tablet »)) ? ‹ m › : ‹ d ›; foreach ($_GET AS $var => $value) { $getParams .= ‹ & › . $var . ‹ = › . $value; } $url = ‹ index.php?v= › . trim($getParams, ‹ & ›); if (headers_sent()) { echo ‹ ›; } else { exit(header(‹ Location: ’ . $url)); } die(); } require_once DIR . « /core/php/core.inc.php »; if (isset($_GET[‹ v ›]) && $_GET[‹ v ›] == ‹ d ›) { if (isset($_GET[‹ modal ›])) { try { include_file(‹ core ›, ‹ authentification ›, ‹ php ›); if (!isConnect()) { throw new Exception( ›{{401 - Accès non autorisé}}'); } include_file(‹ desktop ›, init(‹ modal ›), ‹ modal ›, init(‹ plugin ›)); } catch (Exception $e) { ob_end_clean(); echo ’
'; echo translate::exec(displayException($e), ‹ desktop/ › . init(‹ p ›) . ‹ .php ›); echo ’
'; } catch (Error $e) { ob_end_clean(); echo ’
'; echo translate::exec(displayException($e), ‹ desktop/ › . init(‹ p ›) . ‹ .php ›); echo ’
'; } } elseif (isset($_GET[‹ configure ›])) { include_file(‹ core ›, ‹ authentification ›, ‹ php ›); include_file(‹ plugin_info ›, ‹ configuration ›, ‹ configuration ›, init(‹ plugin ›)); } elseif (isset($_GET[‹ ajax ›]) && $_GET[‹ ajax ›] == 1) { try { $title = config::byKey(‹ product_name ›); if (init(‹ m ›) != ‹ ›) { try { $plugin = plugin::byId(init(‹ m ›)); if (is_object($plugin)) { $title = $plugin->getName() . ’ - '.config::byKey(‹ product_name ›); } } catch (Exception $e) { } catch (Error $e) { } } else if (init(‹ p ›) != ‹ ›) { $title = ucfirst(init(‹ p ›)) . ’ - ’ . config::byKey(‹ product_name ›); } echo ‹ ›; include_file(‹ core ›, ‹ authentification ›, ‹ php ›); include_file(‹ desktop ›, init(‹ p ›), ‹ php ›, init(‹ m ›)); } catch (Exception $e) { ob_end_clean(); echo ’
'; echo translate::exec(displayException($e), ‹ desktop/ › . init(‹ p ›) . ‹ .php ›); echo ’
'; } catch (Error $e) { ob_end_clean(); echo ’
'; echo translate::exec(displayException($e), ‹ desktop/ › . init(‹ p ›) . ‹ .php ›); echo ’
'; } } else { include_file(‹ desktop ›, ‹ index ›, ‹ php ›); } } elseif (isset($_GET[‹ v ›]) && $_GET[‹ v ›] == ‹ m ›) { $_fn = ‹ index ›; $_type = ‹ html ›; $_plugin = ‹ ›; if (isset($_GET[‹ modal ›])) { $_fn = init(‹ modal ›); $_type = ‹ modalhtml ›; $_plugin = init(‹ plugin ›); } elseif (isset($_GET[‹ p ›]) && isset($_GET[‹ ajax ›])) { $_fn = $_GET[‹ p ›]; $_plugin = isset($_GET[‹ m ›]) ? $_GET[‹ m ›] : $_plugin; } include_file(‹ mobile ›, $_fn, $_type, $_plugin); } else { echo « Erreur : veuillez contacter l’administrateur »; } } catch (Exception $e) { echo $e->getMessage(); }
J’ai raté quelque chose à un moment?
Salutations.