zend-debugger

Using Xdebug & Zend Debugger Simultaneously?

Is it possible to run both debuggers within the same PHP installation simultaneously. They both use different ports so communication with the client IDEs/other apps wouldn't be an issue. I ask only because using the Zend Debugger with ZendStudio has proven to be much easier (fewer steps to start/stop debugging from the browser), but I r...

PHP w/ Zend Debugger on OS X 10.5

I have OS X 10.5 set up with the precompiled versions of PHP 5 and Apache 2. I'm trying to set up the Zend Debugger, but with no luck. Here's what I did: I downloaded ZendDebugger-5.2.14-darwin8.6-uni.tar I created the directory /Developer/Extras/PHP and set the permissions to: Permissions: drwxrwxr-x Owner: root:admin I copied Zen...

PHP debugging - where to set the breakpoints? how to authenticate?

So I've just recently made the step from ad hoc debugging with dump, print_r and echo to some more sophisticated methods and I'm having a struggle. I work with Zend Framework, Aptana and Zend Debugger. At this moment I'm trying to debug a custom controller and whatever I try I don't get to my breakpoint which I understand since there ...

.htaccess for Zend Debugger, Eclipse and Zend Framework

Hi, I want to debug my project in Zend Framework in Eclipse. Zend Debugger is already running bud now I have problem with Debug tool in Eclipse. It give an extra GET parametrs and the project in Zend don't like it. I tried to google it and found this I modifed the .htaccess file but not make it working. RewriteEngine On RewriteCond ...

Xdebug or ZendDebugger & Logging

Do any of the well-known PHP debuggers offer any method of logging stack traversal? Say I wanted to somehow store a log of every entry/exit of every class, class method, and function. Is there any way to do this all on the server side (maybe some sort of plaintext client that could log every step-in/step-out automatically)? Update: It ...

Can't install zend debugger

Hi, I'm trying to install zend debugger in my Ubuntu 9.04 machine, I've done it in win. but not in linux, I hope you could help me, this is what I've done: 1)Copied the file ZendDebugger.so to /etc/php5/apache2 (didn't choose this folder for anything in special). 2)Added this lines to php.ini: zend_extension="/etc/php5/apache2/ZendDeb...

Where can I find a recent version of the Zend Debug Protocol?

I am interessted in using the Zend Debugger. The newest and only document about the Zend Debug Protocol seems to be this http://www.eclipse.org/pdt/documents/PDT%20-%20Debug%20Protocol.pdf document from 2006. Aptana and PDT are using Zend Debug Protocol, or at least have it as an option. Any idea where I can find a more recent version of...

Debug PHP scripts using Eclipse

I've been using Eclipse 3.4.2 with PHPEclipse and Zend Debugger for some time without issue. Suddenly, I cannot debug the PHP scripts. I can run them fine but when I select Debug As... the script shows in the Debug window as if it were running, but it is not. If I click pause it reports as being on line 0. I can step through it, if I ...

Working Aptana with Zend Debugger config, anyone?

I was wondering if anyone has an Aptana / Zend Debugger combination which is actually working. I have the latest Zend Server CE installed which has Zend Debugger enabled by default and I have the latest Aptana IDE installed. For a few days already I've been trying to make those two work together... to no avail. When I run the Aptana deb...

Zend Debugger using Solaris

I'm trying to setup debugging for PHP applications using the following environment: -Clients: Windows XP, Zend Studio 7, Firefox+Zend Studio Toolbar -Server: Solaris 5.10 32Bits, Apache 2.2.8, PHP 5.2.5 I'd like to use the Zend Debugger because of its easy integration into Zend Studio, and the profiling abilities; Although I'm aware o...

Zend Debugger Terminates After Index Page

I have a website running using Zend Framework and am trying to setup Zend Debugger. Zend Debugger is installed and it works correctly with the tutorial PHP pages however when I try debugging with my app, it will work for the index page but then the debugger will terminate. I am running Apache2.2 with PHP 5.3. I have a virtual host set...

Zend Studio Debugger returns Application Error

When I run debug for my public/index.php I got an application error as output. <?php class Model_DbTable_FeedEntries extends Zf_Db_Table { public function fetchNewEntries($feed_id) { $Feeds = new Model_DbTable_Feeds(); $Feed = $Feeds->getById($feed_id); // ERROR IS HERE! The column doesn't exists! /...

How to pass request variables like controller and action to Zend Studio debugger (zend-debugger)?

Hi, it's the first time I use Zend Studio to debug an application and I'm a little bit lost on how to specify request parameters when debugging as a php script. ...

How to install Eclipse + PHP Development Tools (PDT) + Debugger on Mac in The Year 2010

I had a lot of trouble installing Eclipse and PDT on my system. It took two days, largely because all the tutorials I could find were out of date (written in 2008, it's 2010 now) and various steps they included were no longer necessary, broken, or irrelevant. I wanted to write my process here so it could be improved upon (via wiki) as ti...

How to add zend debugger support for PHP in windows?

I don't want to install Zend Server, and it doesn't work by simply adding this line in php.ini: zend_extension_ts=.\ZendDebugger.dll ...

How do I forbid zend debugger from using cookies ?

It's causing lots of trouble,the cookies are not cleared after debugging! how can I make it only use $_GET parameters? ...

Is there anyone here familiar with this zend debugger error found in apache's error log?

[Zend Debugger] Cannot receive start command ... [Zend Debugger] Cannot send message I googled and found there are others also having this problem (here and this one on serverfault), but unluckily no fix yet. PHP 5.2.8 (cli) (built: Dec 8 2008 19:31:23) Copyright (c) 1997-2008 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2008...

Eclipse PHP Zend: running old script even though it has been modified and saved?

i am running eclipse php with zendserver and debugging with zend debugger. that all worked. however, i just reinstalled windows 7 due to a computer crash and dragged over my eclipse folder from my old windows to my new (current) installation of windows. when i edited my old file, index.php, i saved it then ran in debug mode, but it look...

Zend Debugger breaks at every Zend Framework class

I recently installed PDT Helios and now when using the debugger, it will break everytime a new class is referenced in the stack for all of Zend Framework classes. As far as I can tell, it is only done with ZF classes, and not my application's own classes. If I have no breakpoints set, it will run continuously until completion but when I...

Cannot redeclare class Zend_Loader_Autoloader

Hello, I am using Zend Debugger to debug my php application built based on the Zend Framework. Currently I am running the 1.10.6 version. When debugging my application i Get this error: Compile Error: /var/www/Zend/ZendFramework-1.10.6/library/Zend/Loader/Autoloader.php line 36 - Cannot redeclare class Zend_Loader_Autoloader Is this...