X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=d96f2396e41e110482d2a66a52c5b3050e3604b0;hb=aa004d03aab4ef8035cc204bc8718c9d2296100a;hp=a4beec9e5e8a7b08e4fa1bf10329a206b182bb91;hpb=44c10bb2aafb31aa54cda53c6ef9af85bb4fbf80;p=quix0rs-gnu-social.git diff --git a/index.php b/index.php index a4beec9e5e..d96f2396e4 100644 --- a/index.php +++ b/index.php @@ -40,6 +40,12 @@ $_startTime = microtime(true); $_perfCounters = array(); +// We provide all our dependencies through our own autoload. +// This will probably be configurable for distributing with +// system packages (like with Debian apt etc. where included +// libraries are maintained through repositories) +set_include_path('.'); // mainly fixes an issue where /usr/share/{pear,php*}/DB/DataObject.php is _old_ on various systems... + define('INSTALLDIR', dirname(__FILE__)); define('GNUSOCIAL', true); define('STATUSNET', true); // compatibility @@ -87,9 +93,9 @@ function handleError($error) return; } - $logmsg = "PEAR error: " . $error->getMessage(); - if ($error instanceof PEAR_Exception && common_config('site', 'logdebug')) { - $logmsg .= " : ". $error->toText(); + $logmsg = "Exception thrown: " . _ve($error->getMessage()); + if ($error instanceof PEAR_Exception && common_config('log', 'debugtrace')) { + $logmsg .= " PEAR: ". $error->toText(); } // DB queries often end up with a lot of newlines; merge to a single line // for easier grepability... @@ -97,7 +103,7 @@ function handleError($error) common_log(LOG_ERR, $logmsg); // @fixme backtrace output should be consistent with exception handling - if (common_config('site', 'logdebug')) { + if (common_config('log', 'debugtrace')) { $bt = $error->getTrace(); foreach ($bt as $n => $line) { common_log(LOG_ERR, formatBacktraceLine($n, $line)); @@ -260,10 +266,8 @@ function main() $args = $r->map($path); - $site_ssl = common_config('site', 'ssl'); - // If the request is HTTP and it should be HTTPS... - if ($site_ssl != 'never' && !GNUsocial::isHTTPS() && common_is_sensitive($args['action'])) { + if (GNUsocial::useHTTPS() && !GNUsocial::isHTTPS()) { common_redirect(common_local_url($args['action'], $args)); }