Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

The installer was unable to detect sessions support in your server's installation of PHP. Please ask your host to ensure that PHP was compiled with session support (in fact, it has to be explicitly compiled without it.)
Session ist genauso eine Extension wie mysql:Allerdings habe ich keine Option bzgl. Session Support gesehen.
Fatal error: Call to undefined function preg_match() in /usr/local/www/apache22/data/install.php on line 1457
function detect_path($filesystem_path, $lookup_file = null)
{
$username = '';
if (isset($_SERVER['DOCUMENT_ROOT']))
{
if (preg_match('~^/home[2]?/([^/]+?)/public_html~', $_SERVER['DOCUMENT_ROOT'], $match))
{
$username = $match[1];
$path = strtr($_SERVER['DOCUMENT_ROOT'], array('/home/' . $match[1] . '/' => '', '/home2/' . $match[1] . '/' => ''));
if (substr($path, -1) == '/')
$path = substr($path, 0, -1);
if (strlen(dirname($_SERVER['PHP_SELF'])) > 1)
$path .= dirname($_SERVER['PHP_SELF']);
}
elseif (substr($filesystem_path, 0, 9) == '/var/www/')
$path = substr($filesystem_path, 8);
else
$path = strtr(strtr($filesystem_path, array('\\' => '/')), array($_SERVER['DOCUMENT_ROOT'] => ''));
}
else
$path = '';
if (is_resource($this->connection) && $this->list_dir($path) == '')
{
$data = $this->list_dir('', true);
preg_match() gehört (laut PHP-Manual) zur PCRE-Extension.Fatal error: Call to undefined function preg_match()


We use essential cookies to make this site work, and optional cookies to enhance your experience.