Hallo, Gast! (Registrieren)

Letzte Ankündigung: MyBB 1.8.37 veröffentlicht (04.11.23)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
Installation
#21
Kannst du deine geänderte Datei mal anhängen?
[Bild: banner.png]

Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
#22
wie anhängen?

Code:
<?php
/**
* MyBB 1.4
* Copyright © 2008 MyBB Group, All Rights Reserved
*
* Website: http://www.mybboard.net
* License: http://www.mybboard.net/about/license
*
* $Id: functions_compat.php 4273 2008-11-17 00:36:29Z Tikitiki $
*/

/**
* Below are compatibility functions which replicate functions in newer versions of PHP.
*
* This allows MyBB to continue working on older installations of PHP without these functions.
*/

if(!function_exists("stripos"))
{
    function stripos($haystack, $needle, $offset=0)
    {
        return my_strpos(my_strtoupper($haystack), my_strtoupper($needle), $offset);
    }
}


if(!function_exists("file_get_contents"))
{
    function file_get_contents($file)
    {
        $handle = @fopen($file, "rb");

        if($handle)
        {
            while(!@feof($handle))
            {
                $contents .= @fread($handle, 8192);
            }
            return $contents;
        }

        return false;
    }
}

if(!function_exists('html_entity_decode'))
{
    function html_entity_decode($string)
    {
       // replace numeric entities
       $string = preg_replace('~&#x([0-9a-f]+);~ei', 'chr(hexdec("\\1"))', $string);
       $string = preg_replace('~&#([0-9]+);~e', 'chr(\\1)', $string);

       // replace literal entities
       $trans_tbl = get_html_translation_table(HTML_ENTITIES);
       $trans_tbl = array_flip($trans_tbl);

       return strtr($string, $trans_tbl);
    }
}

if(!function_exists('htmlspecialchars_decode'))
{
    function htmlspecialchars_decode($text)
    {
        return strtr($text, array_flip(get_html_translation_table(HTML_SPECIALCHARS)));
    }
}

if(!function_exists('scandir'))
{
    function scandir($directory, $sorting_order=0)
    {
        if($handle = opendir($directory))
        {            
            while(false !== ($file = readdir($handle)))
            {
                $files[] = $file;
            }
            
            closedir($handle);
            if($sorting_order == 1)
            {
                rsort($files);
            }
            else
            {
                sort($files);
            }
            
            return $files;
        }
        return false;
    }
}

if(!function_exists('str_ireplace'))
{
    function build_str_ireplace(&$pattern)
    {
        $pattern = "#".preg_quote($pattern, "#")."#";
    }
    
    function str_ireplace($search, $replace, $subject)
    {
        if(is_array($search))
        {
            array_walk($search, 'build_str_ireplace');
        }
        else
        {
            build_str_ireplace($search);
        }
        return preg_replace($search, $replace, $subject);
    }
}

?>
#23
Die Datei scheint korrekt. Bitte überschreibe nochmal damit die Datei auf dem Webserver. (evtl. auch vorher löschen)
anhängen = Als Attachment hochladen.
[Bild: banner.png]

Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
#24
habe ich nun :

Language deutsch_sie (/usr/export/www/vhosts/funnetwork/hosting/sromxxt/inc/languages/deutsch_sie) is not installed
#25
Bitte benutze die Suche.
https://www.mybb.de/forum/thread-4798.html
[Bild: banner.png]

Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
#26
Geschafft Juhuuu!!
Danke schön dragon Wink