What are best practices for setting up Zend Debugger with PHP on Ubuntu 14.10 64bit?

Setting up Zend Debugger with PHP on Ubuntu 14.10 64bit requires installing the necessary packages and configuring the debugger properly. One way to do this is by using the Zend Server, which includes the Zend Debugger extension. Once installed, you need to configure your PHP settings to enable the debugger and set up your IDE to connect to Zend Debugger for debugging purposes.

// Make sure Zend Debugger extension is installed and enabled in php.ini
zend_extension=/path/to/ZendDebugger.so

// Configure Zend Debugger settings
zend_debugger.allow_hosts=127.0.0.1
zend_debugger.expose_remotely=always
zend_debugger.connector_port=10137
zend_debugger.connector_host=127.0.0.1