public IProcess run(InterpreterRunnerConfiguration configuration, ILaunch launch) {
String[] env;
+ String name, value;
PHPDBGProxy newPHPDBGProxy= new PHPDBGProxy();
+ int pos;
+
newPHPDBGProxy.start();
- env= setEnvironmentVariables(newPHPDBGProxy.getPort(), configuration.getAbsoluteFileName());
-
- IProcess process = super.run(configuration, launch, env);
+ env= setEnvironmentVariables(newPHPDBGProxy.getPort(), configuration.getAbsoluteFileName(), configuration.getInterpreter().getCommand());
+
+ for(int i= 0; i < env.length; i++) {
+ pos= env[i].indexOf("=");
+ if(pos > -1) {
+ name= env[i].substring(0, pos);
+ value= env[i].substring(pos + 1);
+ } else {
+ name= env[i];
+ value= "";
+ }
+ Environment.setenv(name, value);
+ }
+ // now enviroment settings is made with Environment class
+ // because if new parameters are passed by array, doesn't inherit system vars
+ IProcess process = super.run(configuration, launch, null);
PHPDebugTarget debugTarget = new PHPDebugTarget(launch, process);
newPHPDBGProxy.setDebugTarget(debugTarget);
launch.addDebugTarget(debugTarget);
return process;
}
- protected String[] setEnvironmentVariables(int listenPort, String AbsoluteFileName) {
+ protected String[] setEnvironmentVariables(int listenPort, String AbsoluteFileName, String interpreter) {
IPath FilePath= new Path(AbsoluteFileName);
String OSFilePath= FilePath.toOSString();
String DBGSessID;
env[6]= "SERVER_ADDR=127.0.0.1";
env[7]= "SERVER_PORT=80";
env[8]= "REMOTE_ADDR=127.0.0.1";
- env[9]= "SCRIPT_FILENAME=c:\\php\\php.exe";
+ env[9]= "SCRIPT_FILENAME=" + interpreter;
env[10]= "GATEWAY_INTERFACE=CGI / 1.1";
env[11]= "SERVER_PROTOCOL=HTTP / 1.1";
env[12]= "REQUEST_METHOD=GET";