mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:42:53 +00:00
26 lines
775 B
PHP
26 lines
775 B
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*
|
|
* During installation we need to check if register_argc_argv is
|
|
* enabled for the command line PHP processor, because otherwise
|
|
* deliveries will fail. So we will do a shell exec of php and
|
|
* execute this file with a command line argument, and see if it
|
|
* echoes the argument back to us. Otherwise notify the person
|
|
* that their installation doesn't meet the system requirements.
|
|
*
|
|
*/
|
|
|
|
if (php_sapi_name() !== 'cli') {
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
|
|
exit();
|
|
}
|
|
|
|
if (($_SERVER["argc"] > 1) && isset($_SERVER["argv"][1])) {
|
|
echo $_SERVER["argv"][1];
|
|
} else {
|
|
echo '';
|
|
}
|