Files
TSN-Ranksystem/other/phpcommand.php
Newcomer1989 46c5f0a6ce release 1.3.0
2019-06-11 13:04:44 +02:00

29 lines
854 B
PHP

<?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 = 'php56';
#$phpcommand = 'php70';
#$phpcommand = '/usr/bin/php5';
#$phpcommand = '/usr/bin/php7.2';
##
##
## WINDOWS
#$phpcommand = 'C:\PHP5\php.exe';
#$phpcommand = 'C:\PHP7\php.exe';
#$phpcommand = 'C:\wamp\bin\php\php.exe';
#$phpcommand = 'C:\xampp\php\php.exe';
# On blanks 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\"';
##
##
## OTHER
## Synology NAS
#$phpcommand = '/volume1/@appstore/PHP7.2/usr/local/bin/php72';
?>