├── LICENSE ├── README.md ├── activate.php ├── auth.php ├── banner.php ├── banners └── index.php ├── bar.css ├── bar_break.php ├── bars.html ├── bars_done.html ├── bonus.php ├── bonus_cash.php ├── clock.js ├── confirm.js ├── contact.php ├── control ├── ad_admin.php ├── adminauth.incl.php ├── admincron.php ├── editptc.php ├── emergency.php ├── index.php ├── ptc.php ├── remover.php ├── style.css ├── transaction_manager.php └── view.php ├── cronjob.php ├── faq.php ├── footer.php ├── header.php ├── headfoot.php ├── images ├── index.php └── readme.txt ├── index.php ├── install.php ├── logout.php ├── lost.php ├── main_page.php ├── members ├── accountdetails.php ├── ad_stats.php ├── allocate.php ├── banners.php ├── buy.php ├── buy_upgrade.php ├── cashout.php ├── confirmbar.php ├── confirmsite.php ├── delete.php ├── edit.php ├── history.php ├── images │ ├── index.php │ └── readme.txt ├── index.php ├── mem_auth.php ├── paidtoclick.php ├── ptc.php ├── ptcbar.php ├── ptcstats.php ├── referral.php ├── site.php ├── sitelist.php ├── subtract.php ├── thankyou.php ├── upgrade.php ├── upgrade_downline.php └── upgrade_members.php ├── memlinks.html ├── regmail.php ├── report.php ├── signup.php ├── stats.php ├── styles.css ├── surf.php ├── surfbar.php ├── surfbarvisitor.php ├── surfvisitor.php ├── target.php ├── timer.js ├── urltest.php └── vars.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/README.md -------------------------------------------------------------------------------- /activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/activate.php -------------------------------------------------------------------------------- /auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/auth.php -------------------------------------------------------------------------------- /banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/banner.php -------------------------------------------------------------------------------- /banners/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/bar.css -------------------------------------------------------------------------------- /bar_break.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/bar_break.php -------------------------------------------------------------------------------- /bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/bars.html -------------------------------------------------------------------------------- /bars_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/bars_done.html -------------------------------------------------------------------------------- /bonus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/bonus.php -------------------------------------------------------------------------------- /bonus_cash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/bonus_cash.php -------------------------------------------------------------------------------- /clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/clock.js -------------------------------------------------------------------------------- /confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/confirm.js -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/contact.php -------------------------------------------------------------------------------- /control/ad_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/ad_admin.php -------------------------------------------------------------------------------- /control/adminauth.incl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/adminauth.incl.php -------------------------------------------------------------------------------- /control/admincron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/admincron.php -------------------------------------------------------------------------------- /control/editptc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/editptc.php -------------------------------------------------------------------------------- /control/emergency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/emergency.php -------------------------------------------------------------------------------- /control/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/index.php -------------------------------------------------------------------------------- /control/ptc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/ptc.php -------------------------------------------------------------------------------- /control/remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/remover.php -------------------------------------------------------------------------------- /control/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/style.css -------------------------------------------------------------------------------- /control/transaction_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/transaction_manager.php -------------------------------------------------------------------------------- /control/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/control/view.php -------------------------------------------------------------------------------- /cronjob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/cronjob.php -------------------------------------------------------------------------------- /faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/faq.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/footer.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/header.php -------------------------------------------------------------------------------- /headfoot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/headfoot.php -------------------------------------------------------------------------------- /images/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /images/readme.txt: -------------------------------------------------------------------------------- 1 | Add images here. Check css files for compatibility. 2 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/install.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/logout.php -------------------------------------------------------------------------------- /lost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/lost.php -------------------------------------------------------------------------------- /main_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/main_page.php -------------------------------------------------------------------------------- /members/accountdetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/accountdetails.php -------------------------------------------------------------------------------- /members/ad_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/ad_stats.php -------------------------------------------------------------------------------- /members/allocate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/allocate.php -------------------------------------------------------------------------------- /members/banners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/banners.php -------------------------------------------------------------------------------- /members/buy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/buy.php -------------------------------------------------------------------------------- /members/buy_upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/buy_upgrade.php -------------------------------------------------------------------------------- /members/cashout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/cashout.php -------------------------------------------------------------------------------- /members/confirmbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/confirmbar.php -------------------------------------------------------------------------------- /members/confirmsite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/confirmsite.php -------------------------------------------------------------------------------- /members/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/delete.php -------------------------------------------------------------------------------- /members/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/edit.php -------------------------------------------------------------------------------- /members/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/history.php -------------------------------------------------------------------------------- /members/images/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/images/index.php -------------------------------------------------------------------------------- /members/images/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/images/readme.txt -------------------------------------------------------------------------------- /members/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/index.php -------------------------------------------------------------------------------- /members/mem_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/mem_auth.php -------------------------------------------------------------------------------- /members/paidtoclick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/paidtoclick.php -------------------------------------------------------------------------------- /members/ptc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/ptc.php -------------------------------------------------------------------------------- /members/ptcbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/ptcbar.php -------------------------------------------------------------------------------- /members/ptcstats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/ptcstats.php -------------------------------------------------------------------------------- /members/referral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/referral.php -------------------------------------------------------------------------------- /members/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/site.php -------------------------------------------------------------------------------- /members/sitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/sitelist.php -------------------------------------------------------------------------------- /members/subtract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/subtract.php -------------------------------------------------------------------------------- /members/thankyou.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/thankyou.php -------------------------------------------------------------------------------- /members/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/upgrade.php -------------------------------------------------------------------------------- /members/upgrade_downline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/upgrade_downline.php -------------------------------------------------------------------------------- /members/upgrade_members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/members/upgrade_members.php -------------------------------------------------------------------------------- /memlinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/memlinks.html -------------------------------------------------------------------------------- /regmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/regmail.php -------------------------------------------------------------------------------- /report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/report.php -------------------------------------------------------------------------------- /signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/signup.php -------------------------------------------------------------------------------- /stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/stats.php -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/styles.css -------------------------------------------------------------------------------- /surf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/surf.php -------------------------------------------------------------------------------- /surfbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/surfbar.php -------------------------------------------------------------------------------- /surfbarvisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/surfbarvisitor.php -------------------------------------------------------------------------------- /surfvisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/surfvisitor.php -------------------------------------------------------------------------------- /target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/target.php -------------------------------------------------------------------------------- /timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/timer.js -------------------------------------------------------------------------------- /urltest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/urltest.php -------------------------------------------------------------------------------- /vars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anonv/Traffic-Exchange/HEAD/vars.php --------------------------------------------------------------------------------