SAND-framework/public/dummy.php
Emmanuel ROY 21ec903fa9 Ajout et tests des modules Wordpress et Prestashop
Installation finalisée pour wordpress
Installation en erreur pour Prestashop
2019-12-06 17:35:12 +01:00

14 lines
350 B
PHP

<?php
@ini_set('zend_monitor.enable', 0);
if (@function_exists('output_cache_disable')) {
@output_cache_disable();
}
if (isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
if (function_exists('debugger_connect')) {
debugger_connect();
exit();
} else {
echo "No connector is installed.";
}
}