Is there any way to pass GET parameters to the debugged page?
I have configured a launch-settings for a "PHP Web Page" configuration,
which runs fine. The problem is my page expects GET parameters on the URL.
I have tried adding the params to the URL in the URL textboxes in the
Server tab of the run configuration (e.g. http://localhost/
/mypage?param=value), but it seems PDT strips the params off the URL.
As temporary workaround, I changed my debugged page to set the required
params into the request, but this is an ugly hack.