Sponsored Ads
Random Images
RSS Subscribe
|
|
|
Top 10 Popular Posts
Top Commentators
- Steve Howe (2)
- E (2)
- danielle (2)
- Nick Throlson (2)
- burchie (2)
- Edward (2)
- Youssef (1)
- Mike (1)
- mike navarini (1)
- Amy (1)
Recent Posts
- Affiliate Summit West 2010: Las Vegas Recap Day 4 & 5
- Affiliate Summit West 2010: Las Vegas Recap Day 3
- Interviewed by JonathanVolk.com
- Affiliate Summit West 2010: Las Vegas Recap Day 2
- Affiliate Summit West 2010: Las Vegas Recap Day 1
- Meetup202 LA Recap and ASW 2010 Las Vegas
- Los Angeles Meetup202 This Saturday!
- Happy New Years!
- Meetup202 Collaboration
- I’m Elite with Elite Clicks Media
Latest Twitter Posts
My Twitter
- Sweet potato fries with a hefeweizen at 25 degrees at the Roosevelt hotel in Hollywood. http://tweetphoto.com/13288186 -- March 05, 2010 05:10:27
- Heading to Fullerton. Damn far. Going to get business finances straightened out for the tax season. -- March 04, 2010 22:13:45
- Time to get some insanity on -- March 02, 2010 22:46:54
- Finally back from the Mammoth snowboarding trip. Good times. I'm exhausted -- March 01, 2010 08:46:44
- Heading to mammoth. First time snowboarding this season. -- February 26, 2010 00:35:04
Tag Cloud
adwords Affiliate Affiliate Marketer Affiliate Marketers Affiliate Marketing Affiliate Networks Akmg Array Asw Blog Calendar Campaigns Content Network Cpa Cpc Email Experiences Google Impressions Internet Marketing Keyword keywords Las Vegas Lt Mahler Mail Marketers Marketing Marketing Industry Meetup Money Networking Niche Niches Pleasure ppc Seligman success Summit East Summit West Text Ads Twitter Volk Wes Yahoo
Categories
- Affiliate Marketing
- Business
- Copywriting
- CPA Networks
- General
- Internet Marketing
- Mindset
- Networking
- Pay Per Click Marketing
- Projects
- Success Stories
- Travel
- Tutorials
Blogroll
- A Peek Into My Mind
- AffBuzz
- Affiliate Marketing Journey
- Arif Kosasi
- Bryn Youngblut
- Cash Tactics
- Convert2Media
- gxdiafilliate
- Ian Fernando
- Jay Yukes
- Jonathan Volk
- Masterless Samurai
- Matt Levenhagen
- Ms Danielle
- Neils Web
- Nick Throlson
- NickyCakes
- PPC.bz
- Prosper202 Blog
- Richard Bonner
- Tyler Cruz
- UberAffiliate
- Wes Mahler
- WhoisAndrewWee
- Wordpress Themes
- WorkPlusFaith
- Yebot
- Zac Johnson
Prosper202 Modification: Redirect to any Tab
Posted by JasperP on July 16th, 2009
Here’s a small mod that I’ve been using for my Prosper202 installations. This is a pretty simple one. The basic idea is that the mod redirects to any tab you want in tracking202.
Originally, when you logged in, you have to type in your username and password, THEN you have to click on the “tracking202″ link and THEN click on the tab (overview, analyze, visitor, etc) and THEN click on the sub-category of that tab (keywords, referer, etc)
This mod allows you to login and automatically redirect (meta refresh) to the stats that you want.
It’s a fairly easy installation, you basically configure template.php, backup the original one, and then copy it over.
Here’s the readme.txt:
Installation Instructions. 1. Configure template.php *SEE CONFIGURATION INSTRUCTIONS BELOW* 2. rename /202-config/template.php to /202-config/template.php.bak 3. Copy /202-config/template.php to /202-config folder. Configuration Instructions 1. Open template.php in a text editor. 2. Change the $refreshtime to redirect after X seconds. Default is set to 2 second. Example: $refreshtime = 5; // Redirect to the page after 5 seconds. 3. Change $tab_page to the page you want it to redirect to: Example: $tab_page = "3c"; // Goes to "Text Ads" page 1-"Setup" page 2a-"Overview >> Campaign Overview" page 2b-"Overview >> Daily Overview" page 2c-"Overview >> Hourly Overview" page 3a-"Analyze >> Keywords" page 3b-"Analyze >> Text Ads" page 3c-"Analyze >> Referers" page 3d-"Analyze >> IPs" page 3e-"Analyze >> Landing Pages" page 3f-"Analyze >> Keywords LP CTR" page 3g-"Analyze >> Text Ads LP CTR" page 4-"Visitors" page 5-Spy page 6-Update page Also, if you ever wanted to access that page, just hit the ESCAPE key to prevent the redirect from forwarding you to the OVERVIEW page.
Here’s a sample of the mod code from template.php:
if (($navigation[1] == '202-account') and (($navigation[2] != 'account.php') and ($navigation[2] != 'administration.php')) ) {
// Set $refreshtime to the # of seconds to wait until redirecting
//
// Set $tab_page to the page to be redirected to: (Default is 2-Overview page)
// 1-"Setup" page
//
// 2a-"Overview >> Campaign Overview" page
// 2b-"Overview >> Daily Overview" page
// 2c-"Overview >> Hourly Overview" page
//
// 3a-"Analyze >> Keywords" page
// 3b-"Analyze >> Text Ads" page
// 3c-"Analyze >> Referers" page
// 3d-"Analyze >> IPs" page
// 3e-"Analyze >> Landing Pages" page
// *3f-"Analyze >> Keywords LP CTR" page
// *3g-"Analyze >> Text Ads LP CTR" page
//
// 4-"Visitors" page
// 5-"Spy" page
// 6-"Update" page
//
// *NOTE: 3f, 3g are used if you installed the LP CTR script.
$refreshtime = "2";
$tab_page = "2a";
switch ($tab_page) {
case "1":
$tab_page_url = "/tracking202/setup";
break;
case "2a":
$tab_page_url = "/tracking202/overview";
break;
case "2b":
$tab_page_url = "/tracking202/overview/daily.php";
break;
case "2c":
$tab_page_url = "/tracking202/overview/hourly.php";
break;
case "3a":
$tab_page_url = "/tracking202/analyze/keywords.php";
break;
case "3b":
$tab_page_url = "/tracking202/analyze/text_ads.php";
break;
case "3c":
$tab_page_url = "/tracking202/analyze/referers.php";
break;
case "3d":
$tab_page_url = "/tracking202/analyze/ips.php";
break;
case "3e":
$tab_page_url = "/tracking202/analyze/landing_pages.php";
break;
case "3f":
$tab_page_url = "/tracking202/analyze/keywords_lpctr.php";
break;
case "3g":
$tab_page_url = "/tracking202/analyze/text_ads_lpctr.php";
break;
case "4":
$tab_page_url = "/tracking202/visitors";
break;
case "5":
$tab_page_url = "/tracking202/spy";
break;
case "6":
$tab_page_url = "/tracking202/update";
break;
default:
$tab_page_url = "/tracking202/";
}
You can download the mod here: p202redirectV3.zip
Related Posts
4 Comments »
Trackback responses to this post
Nice mod, I like anything that can save me some time!
Trevor Nash-Keller´s last blog ..Swear at an IVR (interactive voice response) system = Instant human on the line!
This is perfect, thanks! We should start a github repo for a modified Prosper202.
Damn, this mod rocks. One less click to get to Spy!
This is awesome! Thanks for sharing it.
Edward´s last blog ..weboholic: That was an awesome game last night! I’m really happy the Saints won.