Reply
creating a azoogle redirect
Old 08-15-2006, 10:17 AM creating a azoogle redirect
$100 - $999 Monthly

Posts: 89
Trades: 0
Hi all,
Im new to azoogle just want to know how would i do post their links.
for example i want to post links to myspace bulletins..

can I used this directly

c.azjmp.com/az/ch.php?f=xxxx&i=xxxx


but they have note on mailings.. not to use the "azjmp.com"
does this mean only in email advertising ? or even posting in the bulletins?
skiper is offline
Reply With Quote
View Public Profile
 
 
When You Register, These Ads Go Away!
Old 08-15-2006, 03:48 PM
Josh P's Avatar
THE Designer

Posts: 228
Trades: 0
I wouldn't use myspace bulletins, they're too saturated, in fact it's a bad market, just get out of it, you have no chance, stop stealing my money :P
lol, jk
Yes, you can... but if you want to track it yourself you have to send it though your page then use a redirect to send it to the landing page. I'd recomend the latter.
Josh P is offline
Reply With Quote
View Public Profile Visit Josh P's homepage!
 
Old 08-15-2006, 04:28 PM
GeorgeB
Guest

Posts: n/a
Trades:
Really funny you mention this.

I added a link in my daily mailing and noticed that notice today too, so I coded a redirect file. Took literally 1 and 1/2 minutes.

I've commented it below for easy reading.

Code:
<?php
// In case REGISTER_GLOBALS is off, set the variable $url
if (isset($_GET['url'])) {
$url = $_GET['url'];

// Assign a certain Azoogle link to the number 1
if ($url == '1') {
$goto = "http://c.azjmp.com/az/ch.php?f=xxx&i=xxxx"; // Your AZoogle URL Here!!

// If they try to access your file without a url number give error
} else { exit("You may not access this file directly"); }

// This is actually what sends them to the URL
header("Location: $goto");

// If they try to come to the file with no variable at all give them the error
} else { echo "You may not access this file directly"; }
?>
I just named that file as display.php and sent them to http://mysite.com/display.php?url=1 .... Just put that URL wherever you would normally put the AZoogle click through URL.

You could also use this script for multiple URLs just keep adding if statements for if url == 2 url == 3 etc.

I'm going to expand this script and add some click tracking features too.
Reply With Quote
 
Old 08-16-2006, 01:42 AM
$100 - $999 Monthly

Posts: 89
Trades: 0
Thanks Josh --

GeorgeB - thanks for the script.
keep me informed if you have created the scripts with tracking features..
is it for free...=)

thanks.
skiper is offline
Reply With Quote
View Public Profile
 
Old 08-21-2006, 03:32 PM
$100 - $999 Monthly

Posts: 86
Trades: 0
Thanks for the script! Hadn't realized we can't use that link.
Batesy is offline
Reply With Quote
View Public Profile
 
Old 08-25-2006, 09:14 PM
Bedford's Avatar
Junior Talker

Posts: 30
Trades: 0
I just got accepted by Azoogle as well ( I called them, got with a great lady up there, and she accepted me over the phone). So if I want to post one of their HTML ads onto one of my sites like my blog....do I have to do a masked URL for that? If so, can I just change the URL in the code to something like a TinyURL? Just want to be crystal clear so I get off on the right foot with those folks!!
Bedford is offline
Reply With Quote
View Public Profile
 
Old 08-29-2006, 11:48 PM
Junior Talker

Posts: 5
Trades: 0
use zip.url,nig.nr,notlong.com
eeky is offline
Reply With Quote
View Public Profile
 
Old 09-02-2006, 07:11 AM
Registered User

Posts: 0
Trades: 0
Hi all sorry to sound stupid but what is
Your AZoogle URL Here!!
I have only just joined a Azoogle the only link I get is the first bit.
thanks for helping me out,

It ok I sorted it ,I was Just being Stupid,although I still can,t make use multiple urls,
billuk3 is offline
Reply With Quote
View Public Profile
 
Old 09-02-2006, 07:23 PM
Extreme Talker

Posts: 203
Trades: 1
I was told you can't use azoogle ads with myspace. I was told it will get your account banned. This was directly from azoogle.
sasquatch is offline
Reply With Quote
View Public Profile
 
Old 09-18-2006, 04:33 PM
ltn1dr's Avatar
A2 Network, LLC

Posts: 841
Trades: 2
Same. My account representative told me strictly no MySpace or AIM/MSN advertising of Azoogle's offers.
__________________
Andrew Rouhafzai, owner of A2-Network, LLC
Read the business blog of a 17 year old entrepreneur.
ltn1dr is offline
Reply With Quote
View Public Profile Visit ltn1dr's homepage!
 
Old 09-18-2006, 10:37 PM
imported_WoodiE55's Avatar
bust'n rocks chain gang

Posts: 112
Trades: 0
I've heard MySpace and Azoogle doesn't play well together so I wouldnt risk it.

As for redirects, I just create a 301 redirect in htaccess and works perfectly.
imported_WoodiE55 is offline
Reply With Quote
View Public Profile
 
Old 09-27-2006, 12:55 PM
Otherjohn's Avatar
Junior Talker

Posts: 2
Name: John
Trades: 0
BTW, I you use Joomla, there is a great plugin for your site that is called open-sef [http://www.open-sef.org] that is free and I use it for redirects. you can plug in your friendly url and redirect to externals if you wish.
example would be
www.my-solo.com/go/someazooglead
= www.theazoogleurl.com?lsakdjfaslkdjfa
Otherjohn is offline
Reply With Quote
View Public Profile
 
Old 12-10-2006, 09:29 AM
Junior Talker

Posts: 26
Trades: 0
Quote:
Originally Posted by GeorgeB View Post
Really funny you mention this.

I added a link in my daily mailing and noticed that notice today too, so I coded a redirect file. Took literally 1 and 1/2 minutes.

I've commented it below for easy reading.

Code:
<?php
// In case REGISTER_GLOBALS is off, set the variable $url
if (isset($_GET['url'])) {
$url = $_GET['url'];

// Assign a certain Azoogle link to the number 1
if ($url == '1') {
$goto = "http://c.azjmp.com/az/ch.php?f=xxx&i=xxxx"; // Your AZoogle URL Here!!

// If they try to access your file without a url number give error
} else { exit("You may not access this file directly"); }

// This is actually what sends them to the URL
header("Location: $goto");

// If they try to come to the file with no variable at all give them the error
} else { echo "You may not access this file directly"; }
?>
I just named that file as display.php and sent them to http://mysite.com/display.php?url=1 .... Just put that URL wherever you would normally put the AZoogle click through URL.

You could also use this script for multiple URLs just keep adding if statements for if url == 2 url == 3 etc.

I'm going to expand this script and add some click tracking features too.
Okay, I did the following...added my own azoogle link to the display.php file, uploaded the display.php file to the root, and redirected the azoogle banner to the "http://mysite.com/display.php?url=1" substituting my site name with "mysite". I tried testing the redirect, but recieved this error: 2 R (with squares).

I have joomla loaded on my site, and I use Mac OSX...can anyone help?

Thanks.
LewisD is offline
Reply With Quote
View Public Profile
 
Old 12-10-2006, 09:53 AM
Junior Talker

Posts: 26
Trades: 0
I figured out what was causing the first error...the display.php file was saving as rich text in my text editor, I changed it to html and renamed it. Now I get another error:

Warning: Cannot modify header information - headers already sent by (output started at /home/content/l/e/w/lewisd25/html/display.php:1) in /home/content/l/e/w/lewisd25/html/display.php on line 9

Can anyone help?
LewisD is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to creating a azoogle redirect
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 



Page generated in 0.16342 seconds with 13 queries