$199 Credit Links All Invalid?!

black_ice007

Regular Member
Joined
Nov 28, 2007
Messages
354
Reaction score
146
I've been using Yahoo SM $199 credit links for the past 7 months and all a sudden today they are not working any more. Has anyone today run into a similar issue?

Maybe I've been spoiled, but it kinda sucks. Now I'll have to go looking around for more credit links.
 
Yeah, this really sucks. Do you happen to know if all of them are invalid. I had about 10 different links and all went bad today. I guess i'll have to revert back to using the 100 dollar links.
 
hahaha...probably so. So now, do you have a listing of 100 credit links...or anything greater than 100 dollar links?
 
Hey, I'm working on finding the links as well.....but if anyone on the forum would like to help...then I'm all for it as well.
 
please share at the last the $100 links. When I signed up I clicked on a link that says $100, and no credit showed up. I emailed them with the link to that website,all they said was it was displaying an out of date banner and only gave me $25
 
We are working on finding more codes. I pray that Yahoo did not do a global search and get ride of them all together. Lets all pool our resources to find more codes.

Here are a few $75 credits I found.
http://sem.smallbusiness.yahoo.com/searchenginemarketing/onlinemarketing.php?o=US2580
http://sem.smallbusiness.yahoo.com/searchenginemarketing/onlinemarketing.php?o=US2581

Here is a $100 Credit I found...Offer expires September 28, 2009

http://sem.smallbusiness.yahoo.com/searchenginemarketing/onlinemarketing.php?o=US2582
 
I just wrote a wget script that'll iterate through all possible coupon code and print out the value on the screen automatically! For instance o=US1000 through o=US2000. Its finding quite alot of coupons....i'll post all my findings when the script finishes
 
So what is all of this exactly? Free ppc credit? God that would be awesome. Can anyone explain it to me?
 
Yes, this is for free PPC credit. We've been getting free 199 credits from yahoo for the past 7 months........but it looks like yahoo has stopped that gravy train.
 
Well it sounds like people are trying to find a new gravy train... Would someone let me know how it works exactly? Like do we need a new account for each set of free credits or what?
 
What proggy are you using to do this? I would be glad to help scrape as well.

Its a quick few line script I put together :)
BTW I think the codes stopped at 2625, I scanned up to 9999 and nothing appeared past 2625.
 
Last edited:
Hye!!! Thats exactly what my script found as well...lol. .....I guess I was late posting.

#!/bin/bash


I="1000";


while [ $I -le 9999 ]

do
wget http://sem.smallbusiness.yahoo.com/searchenginemarketing/onlinemarketing.php?o=US$I

J=`cat onlinemarketing.php\?o\=US$I | grep "Start advertising online" | awk -F"</span>" '{print $1}' | awk -F$ '{print $2}'`

echo "Coupon $I = $J" >> file

I=$[$I+1]

done
 
Sorry I didnt document my code too well....the J = the value of the coupon and I = the coupon code.
 
Back
Top