MyBB Community Forums

Full Version: Statistic in Admin Plugin [MyBB Sayac v1.0]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
How can i solv?
Do a search for mysql_real_escape_string and have it replaced with $db->escape_string
(2009-03-01, 10:41 PM)DeLLy Wrote: [ -> ]It's not good plugin for big Forums wait v2.0 (:


finally, after try using this great plugins for more 36 hours. I've got 7849 Google keywords and mybb_sayac_ziyaretciler database grow 3.86MB. Now, temporary disable this nice plugins Smile
Quote:Do a search for mysql_real_escape_string and have it replaced with $db->escape_string

I knewRolleyes
I Searched them but they aren'tAngel
Please someone can help me?
Nada de nada?
(2009-03-16, 05:07 PM)Giangy94 Wrote: [ -> ]Nada de nada?
I thought you were italian.. but that seems portuguese to me. Unless it's the same in italian Confused
Yeah Nada de nada is portuguese, I am portuguese and can confirm that Toungue unless it's the same in italian
No:p
In Italian is "niente di niente?" or "Nulla di nulla?" but I like the expression "Nada de nada" :p
Open /mybb_root/inc/plugins/mybbsayac.php and find:
    function tekniktemizlik($gelen) 
        {
            $gelen=stripslashes($gelen);
            $gelen=mysql_real_escape_string($gelen);
            return $gelen;
        }
Replace:
    function tekniktemizlik($gelen) 
        {
	    global $db;
            $gelen=stripslashes($gelen);
            $gelen=$db->escape_string($gelen);
            return $gelen;
        }
Pages: 1 2 3