aff_check_security() error in blogs
I found the solution of “aff_check_security() error” , generally this error comes with blog.
Whenever you get the error like
======================================================
Fatal error: Cannot redeclare aff_check_security() (previously declared in /home/nodepo79/public_html/poker-affiliates-online.com/affconfig.php:61) in /home/nodepo79/public_html/poker-affiliates-online.com/affconfig.php on line 59
======================================================
You go to blog directory of that domain where the client install the blog.
Open the file “affiliate.php” and make the changes as below:-
================================================
change
Code:
include “affconfig.php”;
To
Code:
include_once “affconfig.php”;
================================================
after that you check the url . It will work.