* let's not discriminate unix :) (= generalized paths)

* added checks so all scripts are only executable from CLI
release-0.6
till 16 years ago
parent 64c52c63ad
commit d4847048a1

@ -1,6 +1,6 @@
#!/usr/bin/env php
<?php
/*
#!/usr/bin/php
+-----------------------------------------------------------------------+
| bin/dumpschema.php |
@ -20,6 +20,10 @@
*/
if (php_sapi_name() != 'cli') {
die('Not on the "shell" (php-cli).');
}
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
require INSTALL_PATH.'program/include/iniset.php';

@ -1,5 +1,8 @@
#!/usr/bin/php
#!/usr/bin/env php
<?php
if (php_sapi_name() != 'cli') {
die('Not on the "shell" (php-cli).');
}
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
ini_set('memory_limit', -1);

@ -1,5 +1,8 @@
#!/usr/bin/php
#!/usr/bin/env php
<?php
if (php_sapi_name() != 'cli') {
die('Not on the "shell" (php-cli).');
}
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
ini_set('memory_limit', -1);

@ -1,6 +1,8 @@
#!/usr/bin/php
#!/usr/bin/env php
<?php
if (php_sapi_name() != 'cli') {
die('Not on the "shell" (php-cli).');
}
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
require_once INSTALL_PATH . 'program/include/iniset.php';

Loading…
Cancel
Save