├── images ├── index.php └── readme.txt ├── banners └── index.php ├── members ├── images │ ├── readme.txt │ └── index.php ├── upgrade_members.php ├── banners.php ├── mem_auth.php ├── paidtoclick.php ├── confirmsite.php ├── ad_stats.php ├── allocate.php ├── buy.php ├── subtract.php ├── delete.php ├── edit.php ├── ptc.php ├── cashout.php ├── ptcstats.php ├── confirmbar.php ├── thankyou.php ├── upgrade.php ├── buy_upgrade.php ├── site.php ├── referral.php ├── upgrade_downline.php ├── history.php └── ptcbar.php ├── logout.php ├── target.php ├── README.md ├── bars.html ├── bars_done.html ├── urltest.php ├── bar.css ├── faq.php ├── control ├── adminauth.incl.php ├── style.css ├── emergency.php ├── remover.php ├── editptc.php └── admincron.php ├── clock.js ├── bar_break.php ├── main_page.php ├── memlinks.html ├── regmail.php ├── report.php ├── header.php ├── lost.php ├── timer.js ├── confirm.js ├── bonus.php ├── auth.php ├── vars.php ├── index.php ├── bonus_cash.php ├── activate.php ├── surfvisitor.php ├── stats.php ├── surf.php ├── contact.php ├── footer.php ├── styles.css ├── headfoot.php ├── banner.php └── surfbarvisitor.php /images/index.php: -------------------------------------------------------------------------------- 1 | 2 | header('Location: ../') 3 | ?> 4 | -------------------------------------------------------------------------------- /banners/index.php: -------------------------------------------------------------------------------- 1 | 2 | header('Location: ../') 3 | ?> 4 | -------------------------------------------------------------------------------- /images/readme.txt: -------------------------------------------------------------------------------- 1 | Add images here. Check css files for compatibility. 2 | -------------------------------------------------------------------------------- /members/images/readme.txt: -------------------------------------------------------------------------------- 1 | Check css files for image compatibility and other files. 2 | -------------------------------------------------------------------------------- /members/images/index.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |