Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Nouvelle version faite en une matinée Dommage de ne pas retrouver l'ancienne

Dear IP-formation.

Emmanuel ROY authored on 15/04/2015 14:45:54
Showing 1 changed files
... ...
@@ -11,4 +11,3 @@ if (isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
11 11
         echo "No connector is installed.";
12 12
     }
13 13
 }
14
-
Browse code

first commit

ER authored on 30/03/2012 09:12:56
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,14 @@
1
+<?php
2
+@ini_set('zend_monitor.enable', 0);
3
+if (@function_exists('output_cache_disable')) {
4
+    @output_cache_disable();
5
+}
6
+if (isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
7
+    if (function_exists('debugger_connect')) {
8
+        debugger_connect();
9
+        exit();
10
+    } else {
11
+        echo "No connector is installed.";
12
+    }
13
+}
14
+