Getting info syntax line not secured

You should contact your server about that. The PHP interpreter there is giving a 'true' value for comparisons whatever the text your enter. I have been selling MLM for more than 6 years and believe me, first time I see that, amazing!
 
Hi stanbusk,

what exactly should I ask from my host department? Is it a string in php.ini that I should change...?

Thanks,
S@
 
In lm.php you will find a lot of lines like this one:

Code:
if ( $pwd == $admin_password ) { .....
where $admin_password is deifined this way:

Code:
if ( isset( $_REQUEST['pwd'] ) && !empty( $_REQUEST['pwd'] ) ) { $pwd = $_REQUEST['pwd']; }
 
Top