Skip to content
Snippets Groups Projects
Commit 6f61ba46 authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

detect php cgi binary because people keep trying to run service scripts using it

parent 878a0083
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,13 @@ ...@@ -42,6 +42,13 @@
$options = getopt("", $longopts); $options = getopt("", $longopts);
if (!is_array($options)) {
die("error: getopt() failed. ".
"Most probably you are using PHP CGI to run this script ".
"instead of required PHP CLI. Check tt-rss wiki page on updating feeds for ".
"additional information.\n");
}
if (count($options) == 0 && !defined('STDIN')) { if (count($options) == 0 && !defined('STDIN')) {
?> <html> ?> <html>
<head> <head>
......
...@@ -29,6 +29,13 @@ ...@@ -29,6 +29,13 @@
die("error: This script requires PHP compiled with PCNTL module.\n"); die("error: This script requires PHP compiled with PCNTL module.\n");
} }
if (!is_array($options)) {
die("error: getopt() failed. ".
"Most probably you are using PHP CGI to run this script ".
"instead of required PHP CLI. Check tt-rss wiki page on updating feeds for ".
"additional information.\n");
}
$master_handlers_installed = false; $master_handlers_installed = false;
$children = array(); $children = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment