Quote:
Originally Posted by Blue Moose Aaron
My banner will display for a time and then I revisit my site and nothing is showing. So for some reason it is disableing itself..
|
open clickthru.php and find:
PHP Code:
if ($Select['limit_type'] == "clicks" && ($Select[clicks]+1) >= $Select[limit_to])
replace with:
PHP Code:
if ($Select['limit_type'] == "clicks" && ($Select[clicks]+1) >= $Select[limit_num])
how it's currently setup it validates that you are limiting by clicks.. then looks for a nonexistant variable in the database.. returned 0.. and tada, 1 click, ad turns off.