2010-11-26 00:33:32 +01:00
|
|
|
<?php
|
2010-12-11 05:21:34 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 16:34:23 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2010-12-11 05:21:34 +01:00
|
|
|
*
|
2020-02-09 16:34:23 +01:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2010-12-11 05:21:34 +01:00
|
|
|
*
|
|
|
|
* 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
|
2015-01-02 00:01:17 +01:00
|
|
|
* execute this file with a command line argument, and see if it
|
|
|
|
* echoes the argument back to us. Otherwise notify the person
|
2010-12-11 05:21:34 +01:00
|
|
|
* that their installation doesn't meet the system requirements.
|
|
|
|
*
|
2015-01-02 00:01:17 +01:00
|
|
|
*/
|
|
|
|
|
2020-09-07 11:51:26 +02:00
|
|
|
if (php_sapi_name() !== 'cli') {
|
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
|
|
|
|
exit();
|
|
|
|
}
|
2010-12-11 05:21:34 +01:00
|
|
|
|
2017-01-26 14:28:43 +01:00
|
|
|
if (($_SERVER["argc"] > 1) && isset($_SERVER["argv"][1])) {
|
2015-01-02 00:01:17 +01:00
|
|
|
echo $_SERVER["argv"][1];
|
2017-01-26 14:28:43 +01:00
|
|
|
} else {
|
2010-11-26 00:33:32 +01:00
|
|
|
echo '';
|
2017-01-26 14:28:43 +01:00
|
|
|
}
|