Skip to content

Commit 6311ac0

Browse files
committed
PoSHServer v3.4
PHP POST Fix, Standalone Version
1 parent 8cb3966 commit 6311ac0

File tree

7 files changed

+4
-1
lines changed

7 files changed

+4
-1
lines changed

Documentation.pdf

1.21 MB
Binary file not shown.

PoSHServer.ps1

432 Bytes
Binary file not shown.

PoSHServer.psd1

0 Bytes
Binary file not shown.

apps/PoSHServer-Standalone.exe

420 KB
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration><startup><supportedRuntime version="v2.0.50727"/></startup></configuration>

apps/PoSHServer-Standalone.ps1

292 KB
Binary file not shown.

modules/config.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ $ContentFiltering = "Off"
3535
$ContentFilterBlackList = "audio/mpeg video/mpeg"
3636

3737
# PHP Cgi Path
38-
$PHPCgiPath = "C:\Program Files (x86)\PHP\v5.3\php-cgi.exe" # WebPI Location
38+
$PHPCgiPath = ($env:PATH).Split(";") | Select-String "PHP"
39+
$PHPCgiPath = [string]$PHPCgiPath + "\php-cgi.exe"

0 commit comments

Comments
 (0)