Is the same problem I am acing on local machine. On localhost it doesn't do anything, however, it works on a remote URL.
You can see more discussion in this older post:
https://groups.google.com/forum/#!topic/firebug/5gp45wiFtvgHow i configured is using a PHP script
Line commands:
Executable: path to PHP executable
Arguments:c:\path_to_php_file"%url" /%line
inside the PHP file I translate the URL argument($argv[1]) into filesystem path(I use xampp), and then open the file with pspad at line $argv[2]. The localhost condition doesn't work, but you can change the
yourdomain.com condition as you need, that one works
<?php
if(preg_match("/^http\:\/\/localhost/",$argv[1])) {
$argv[1] = preg_replace(array("/^http\:\/\/localhost/","/\?.+$/"), array("C:\xampp\htdocs",""),$argv[1]);
}
if(preg_match("/^http\:\/\/
yourdomain.com/",$argv[1])) {// if
http://yourdomain.com/styles.css corresponds to C:\xampp\htdocs\project\styles.css
$argv[1] = preg_replace(array("/^http\:\/\/
yourdomain.com/","/\?.+$/"), array("C:\xampp\htdocs\project",""),$argv[1]);
}
system('"c:\\Program Files (x86)\\PSPad editor\\PSPad.exe" '.$argv[1]." ". $argv[2]);
?>