Debugging live php project

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
ehsan
Forum Newbie
Posts: 1
Joined: Sat Jan 24, 2009 1:10 am
Location: Karachi
Contact:

Debugging live php project

Post by ehsan »

hi

how can i debug my live project which is connect by ftp server
i am using Zend and phped
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Re: Debugging live php project

Post by josh »

install the debugger for one of the IDEs. Read the help files for instructions for your platform
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Re: Debugging live php project

Post by alex.barylski »

For starters, I wouldn't debug a "live" server. Copy the code and data to a test server, figure out the issues and re-upload when fixed.

I can't imagine the reaction on peoples faces when they visited a site I was developing and all of a sudden there was colorful language like:

Code: Select all

echo "Stupid f***in thing won't work why?";
print_r($this);
exit;
Haha...just a suggestion :)
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Re: Debugging live php project

Post by josh »

If you use a GUI debugger the user experience won't be altered
josh
DevNet Master
Posts: 4872
Joined: Wed Feb 11, 2004 3:23 pm
Location: Palm beach, Florida

Re: Debugging live php project

Post by josh »

Also of interest: http://www.firephp.org/
Post Reply