• Merhaba Ziyaretçi.
    "Yapay Zeka Objektif " Fotoğraf Yarışması başladı. İlgili konuya  BURADAN  ulaşabilirsiniz. Sizi de bu yarışmada görmek isteriz...

vB 4.x ipProArcade Varning Sorunu - vB 4.1.10

YoRuMSuZ

Biz işimize bakalım...
Eğer ibProArcade 2.7.2 versiyonuna upgrade yaptıysanız ve aşağıdaki hatayı aldıysanız işlemin çözümü kod satırının altında.

Kod:
Warning: stristr() [function.stristr]: needle is not a string or an integer in /path/to/forums/arcade.php on line 5550

arcade.php dosyasını manuel olara açın ve aşağıdaki kodları bulun: (Önerim Notepat++) - (5545 - 5556 satırları arası)
Kod:
function recursive_str_ireplace($replacethis,$withthis,$inthis){
    while (1==1)
    {
        $inthis = str_ireplace($replacethis,$withthis,$inthis);
        if(stristr($inthis, $replacethis) === FALSE)
        {
            RETURN $inthis;
        }
    }
    RETURN $inthis;
}
Aşağıdaki kodlarla değiştirin.
Kod:
function recursive_str_ireplace($replacethis,$withthis,$inthis){ 
$old_inthis = "";
while ($old_inthis != $inthis)
{
$old_inthis = $inthis;
$inthis = str_ireplace($replacethis,$withthis,$inthis);
}
return $inthis;
}

Artık sorununuz çözülmüş olacak.
 
Top