Dear IP-formation.
Emmanuel ROY authored on 15/04/2015 14:45:541 | 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 |
+ |