Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\openphpfile] @="\"URL:openphpfile Protocol\"" "EditFlags"=hex:02,00,00,00 "URL Protocol"="" [HKEY_CLASSES_ROOT\openphpfile\DefaultIcon] @="\"C:\\Users\\ABC\\Documents\\Programs\\CB\\Chunks\\CGI.exe\",0" [HKEY_CLASSES_ROOT\openphpfile\shell] [HKEY_CLASSES_ROOT\openphpfile\shell\open] [HKEY_CLASSES_ROOT\openphpfile\shell\open\command] @="\"C:\\Users\\ABC\\Documents\\Programs\\CB\\Chunks\\CGI.exe\" -c \"%1\""
The main problem was underscores in your protocol. After the removal, everything started to work fine. You can change the path of the executable file according to your desire, that is, "C: \ Program Files (x86) \ NuSphere \ 7.0 \ phped.exe".
I tried openphpfile:blast and it worked pretty well :)
EDIT:
The problem with this solution is that% 1 is replaced with "open_php_file: // [file]" instead of "[file]". This way I need some kind of filter that interrupts "open_php_file: //".
enter a space after openphpfile: [Space] Your_Content and change the parameter to% 2, you will get the expected result
[HKEY_CLASSES_ROOT\openphpfile\shell\open\command] @="\"C:\\Users\\ABC\\Documents\\Programs\\CB\\Chunks\\CGI.exe\" -c \"%2\""
perilbrain
source share