2

I moved to a new workspace in zend studio. Then debugging won't work because

The file 'http://localhost/dummy.php',which is required by the zend debugger,could not be found.please verify that the zend debugger is properly installed on the server and that the 'dummy.php' is located in your web server's document root

The file was usually there by itself.

I do not know why.

Where do I get this dummy.php? What should I do so the file is there.

user4234
  • 1,523
  • 1
  • 20
  • 37

1 Answers1

1

Here is dummy.php you needed:

<?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.";
    }
}
?>
Stefano Coletta
  • 680
  • 6
  • 12