dmitri wrote: |
You may want to check your web server configuration to see if CSS is associated with PHP handler.
For example in case of Apache, a configuration option like this
AddType application/x-httpd-php .php .css
will associate css with php handler and therefore all css files will be processed by PHP.
Normally, PHP converts all the content not included in <? ?> into series of echo() calls and that's what you debug. |
That is that case, and I want to keep it that way because I want to be able to put PHP in my CSS files. The problem is that I had no breakpoints in those files yet they continued to load into the debugger. And when using Drupal that loads ~10 CSS files it can take forever to get around that issues. Ironically however, I've not experienced that issue recently.
I'm having all kind of strange situations where the debugger is called even when I do my best to avoid having it be called; I just want to refresh the page in the browser w/o invoking the debugger but the debugger keeps popping up (I'm using PhpEd Pro and refreshing using IE7, not the internal browser.) But not always, and I can't figure out what causes it to invoke the debugger and what causes it not to invoke the debugger.
Actually I have been developing a whole list of usability issues with the debugger. For example, there are cases when I want to run to cursor but ignore all other breakpoints. As is, one of those breakpoints is triggered and I loose track of where I was and it makes debugging very difficult.
Another issue is the use of the debug drop-down on the IE7 toolbar instead of just having several buttons (see
http://www.useit.com/alertbox/20001112.html regarding drop downs). Dropdowns are better for infrequently used tasks. Having to navigate that dropdown for something I do
constantly is maddening!
Yes another issue is constantly having to switch back and forth between PhpEd and the browser to stop debugging and then refresh the page to start debugging again. Why not let me stop and start the debugger using a browser toolbar and/or from within PhpEd, whereever I happen to be at the moment? Clearly the IE toolbar can automate PhpEd, and certainly PhpEd can automate IE using hooks in via the toolbar? And why grey out the 'Debug' button on the IE toolbar? Why not let clicking it restart the debug session?
And another thing is the queing of debug sessions in PhpEd. If I happed to have pressed refresh in the browser server times and then I tell PhpEd to stop debugging PhpEd will reload and restart the debugger for each of those refreshes. I want a ability to tell PhpEd to "Stop ALL debugging until I take another action" and "Flush all pending debugging from the queue." And I'd ideally like to have that on the browser's toolbar.
And there's more. How best to submit all those and other usability issues for consideration?