Login     Sign up
Albert (@mavma)
114 months ago
955 Views

Hi all,I am getting error (Deprecated: mysql_escape_string(): This function is deprecated; use mysql_real_escape_string() instead. in /home/www/m.com/includes/libs/ss.inc.php on line 226..... Strict Standards: Non-static method story::show_tags() should not be called statically in /home/www/m.com/includes/libs/ss.inc.php on line 1495) how to fix these errors???

1 people followed this question
1

put this in the index.php somewhere on top (after <?php)
[code]
error_reporting(E_ALL & ~(E_STRICT|E_NOTICE|E_DEPRECATED));
[/code]

Jcow Master @falcone
114 months ago
1

Thank Very Much For Helping

Albert @mavma
114 months ago
@mavma You'd better add your comment directly under the answer.
114 months ago
0

From v9.6.1, Jcow is using "mysqli" instead "mysql", and there will be no such notificaton.

paul @paul
114 months ago