]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
*** Privacy Leak fixed: ***
[quix0rs-gnu-social.git] / lib / common.php
1 <?php
2 // This file is part of GNU social - https://www.gnu.org/software/social
3 //
4 // GNU social is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Affero General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // GNU social is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU Affero General Public License for more details.
13 //
14 // You should have received a copy of the GNU Affero General Public License
15 // along with GNU social.  If not, see <http://www.gnu.org/licenses/>.
16
17 defined('GNUSOCIAL') || die();
18
19 /* Work internally in UTC */
20 date_default_timezone_set('UTC');
21
22 /* Work internally with UTF-8 */
23 mb_internal_encoding('UTF-8');
24
25 // All the fun stuff to actually initialize GNU social's framework code,
26 // without loading up a site configuration.
27 require_once INSTALLDIR . '/lib/framework.php';
28
29 try {
30     GNUsocial::init(@$server, @$path, @$conffile);
31 } catch (NoConfigException $e) {
32     // XXX: Throw a conniption if database not installed
33     // XXX: Find a way to use htmlwriter for this instead of handcoded markup
34     // TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
35     echo '<p>'. _('No configuration file found.') .'</p>';
36     // TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
37     // TRANS: Is followed by a list of directories (separated by HTML breaks).
38     echo '<p>'. _('I looked for configuration files in the following places:') .'<br /> ';
39     echo implode($e->configFiles, '<br />');
40     // TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
41     echo '<p>'. _('You may wish to run the installer to fix this.') .'</p>';
42     // @todo FIXME Link should be in a para?
43     // TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
44     // TRANS: The text is link text that leads to the installer page.
45     echo '<a href="install.php">'. _('Go to the installer.') .'</a>';
46     exit;
47 }