Mehdi
Mehdi
Likes also doesn't work at all for me. did you solve this problem? two months ago you reported sql bug and now this bug is bothering me!
@leem32 I replaced spl_autoload_register with your code, but the problem is still there.
@leem32 By the original code I give this error: `{"error":"hashover\\statistics.php\" file could not be included!"}` After replacing your code I give this error: `{"error":"\/var\/www\/example.com\/hashover\/scripts\\hashover.php file could not be included!"}` >...
Thank a lot dear @leem32 . Finally replacing **spl_autoload_register** in **like.php** with the following code solved the problem: spl_autoload_register(function ($class) { $get_class = explode('\\', $class); $class_name = array_pop($get_class); $file_name =...