Re: avoiding "re-deploy" during development?
Steve is right.
The redeploy process "compiles" PHP files from the "classes" directory and places processed scripts into the "var/run/classes" directory.
If you compare the files you will find minor differences (for instance, a corrected class inheritance tree). Unfortunately, without these changes the "raw" scripts from the "classes" directory won't work.
So, the only way to avoid the redeploy process is testing your changes by editing scripts in the "var/run/" directory, and then copying the changes over to the "classes" directory.
|