-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathphpcommand.php
More file actions
30 lines (30 loc) · 989 Bytes
/
phpcommand.php
File metadata and controls
30 lines (30 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?PHP
## Uncomment the command you need to run PHP
## This are only examples
## If you miss one, feel free to add it
## Only one single command should be active at the same time!
##
## Default, which should normally working on Linux and Windows
$phpcommand = 'php';
##
## LINUX
#$phpcommand = 'php74';
#$phpcommand = '/usr/bin/php7.3';
#$phpcommand = '/usr/bin/php7.4';
#$phpcommand = '/opt/plesk/php/7.3/bin/php';
#$phpcommand = '/opt/plesk/php/7.4/bin/php';
##
##
## WINDOWS
#$phpcommand = 'C:\PHP7\php.exe';
#$phpcommand = 'C:\wamp\bin\php\php.exe';
#$phpcommand = 'C:\xampp\php80\php.exe';
# On blanks or special characters inside the path, you need to escape these with special marks --> \" <-- at the beginning and end of the path, see example below
#$phpcommand = '\"C:\Program Files (x86)\PHP\php.exe\"';
#$phpcommand = '\"C:\Program Files (x86)\Plesk\Additional\PHP73\php.exe\"';
##
##
## OTHER
## Synology NAS
#$phpcommand = '/volume1/@appstore/PHP7.2/usr/local/bin/php72';
?>