phped

Best method for debugging a called webservice in php?

I have an n-tier system where a frontend templating layer makes calls out to a backend application server. For instance, I need to retrieve some search results, and the frontend calls the backend to get the results. Both the templating engine and the appserver are written in PHP. I currently use PHPed to initiate debug sessions to the t...

Why doesn't code insight in PHPEd work with the Zend Framework?

I am currently working with the Zend Framework and I use PHPEd as my favourite PHP editor. I have already seen that the IDE can trace my own functions and libraries and display them in the code insight. How can I add the libraries of Zend Framework to the code insight? They are loaded with a internal autoload function of the Zend Frame...

How to integrate Mercurial with PHPed IDE ?

Hello Can anyone post the steps for integrating mercurial to phped. I followed the following steps, listed by one member on their forum: What to do: Creating a Commit Shortcut * Install Mercurial if you have not already. I've installed mine to c:\development\Mercurial\ * Go to PHPEd Settings > Tools > Integration * Creat...

How to integrate PHP_Beautifier into NuSphere PHPed IDE ?

Hello Can anyone list the steps to integrate PHP_Beautifier in phped. ...

How to configure PHPEd to run debug from within the subfolder of a workspace?

To debug a PHP app in PHPEd the root of the project needs to be set to the web folder of my app. However, the PHP files to be editted are outside of the web folder. Is it possible to configure PHPEd to run debug from within the /web folder, while displaying all of the PHP files in the workspace? Desired workspace layout ** Workspace ...

phped debugging "step out" functionality

When using phped to debug, "step out" returns from the current function, then steps over the line with the calling function. For example, imagine the following code: print(a().' '.b()); exit(); function a(){ return 'Hello'; } function b(){ return 'World!'; } I start debugging, I step into the function calls at line 1, which takes me...

Setup mobile/USB version of PhpEd 5.9.5

The newest version (5.9.5 build 5957) of PhpEd is supposed to be "mobile" by putting PhpEd and/or the settings on a USB key according to the new features. Has anyone figured out how to do this? Someone mentioned setting the AppData/Roaming folder in this forum post. I think this is for Windows 7 so for Windows XP it would be Applicatio...

PhpED: Fastest way to open a file?

Hi! I'm looking for a faster way to open files in PhpED projects. The way I do it is to pull up the Workspace pane with Ctrl+Alt+W (explorer is Ctrl+Alt+E), then Page Up/Down to find the file. This is not very effective; it takes to much time to locate the file, mostly since Page Up/Down jumps some 50-100 files/folders at a time. I t...

web dev environment : cvs + localhost + server in sync : nusphere phped + wamp

Hello, I am a freelance web developer (php/js/xhtml/css etc). Currently: 1) I use wamp on windows 7 for local development (localhost) 2) I use nusphere phped. 3) then when I have to check it on server, I transfer all files through cuteftp to my server. 4) I dont use any kind of CVS at all. What I want is a development environment whe...