Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ringtones

Status
Not open for further replies.

daNewfie

Programmer
Oct 14, 2004
258
CA
I have a client I did a CF page for a year or so ago...
He now has several dozen ringtones he wants to place on his site and allow people to download them.

To be quite honest, I dont have a clue (insert joke here)
to where to start looking how to do this.

Hoping some of you fellow tek-tippers can point me in the right direction..


Thanks

Craig
 
try that link i posted. if it's something you want here is the code.

<cfif IsDefined('FORM.submit')>
<cfoutput>#form.radiobutton#</cfoutput>


<cfcontent type="video/x-msvideo" file="D:\locationOfMyFile\#form.radiobutton#">

<cfheader name="Content-Disposition" value="filename=kristie.xls">

<cfelse>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>

<body>
<form name="form1" method="post" action="">
<p>please click on one of the followings ...</p>
<p>&nbsp;</p>
<p>
<input name="radiobutton" type="radio" value="Friday_vs_Monday.wmv">Friday vs. Monday</p>
<p>
<input name="radiobutton" type="radio" value="production1.wmv">
Yes (?) </p>
<p>
<input name="radiobutton" type="radio" value="karate and sumo.mpg">
Karate vs. Sumo </p>
<p>
<input name="radiobutton" type="radio" value="GhostlyCarAd.wmv">
Ghostly Car Ad </p>
<p>
<input name="radiobutton" type="radio" value="flat_eric.avi">
Flat Eric </p>
<p><input name="radiobutton" type="radio" value="never scare a brother.avi">
Never Scare a Brother</p>
<p>
<p><input name="radiobutton" type="radio" value="ping_pong.asf">
Ping Pong</p>
<p>


<input type="submit" name="Submit" value="Get It...">
</p>
</form>
</body>
</html>
</cfif>

 
Hi FALCONSEYE

That code will pop up a media player...what I need to know is how to send it to a cel phone via the web


thanks, this is a start

Craig
 
I think wap would require the user to browse via their phone to download the ringtone, I thought he was talking about where you enter your cell # into the website and it sends you the ringtone? owell, either way, I've never done it...


Kevin

Phase 1: Read the CFML Reference
Phase 2: ???
Phase 3: Profit!
 
Hello Guys,

I've done quite a bit of text messageing through the web, and you have two options really.

The first is to look at the MX Enterprise Gateway, but this isnt really an option as it doesn actualy allow you to send messages direct, it simply allows you use the SNPP protocols to communicate with an 'agregator' who is a third party that will send your message for you, and charge you on a 'pay per message' type scheme.

However, the second option is much more appealing, again involving an agregator, but this time, no phaphing with the Gateway, most of the little gem's will accept an HTTP request :-D.

then you can just attach parameters to the http request, such as accountname, password, message content and a list of recipient numbers, a few moment later they arive on your phone.

Now, most aggregators will charge you almost standard network rate, somthing like 10p per standard text, unless you are buying large amounds, maybe 10,000 a month, in which case it drops to around 6p or 7p ... If you're luck enough to send 1,000,000 then maybe you'll get a nice competitive price of around 3p per message.

Iether way, none of this is a particularly cheap, i've built it into my system management app as it means i can offer my clients 24 hour email support, if someone mails me when we're not around (sleeping) then it'll send me a TXT message to wake me, only 10p.

Some aggregators also off the facility for me to text my app and it'll then create an email back to the customer *grins smuggly.

You can also use it for all sorts of system monitoring, i'm sure many people have thresholds on thier apps which use CFMAIL, this case just use CFHTTP and it'll text you.

I've got the contact details for a couple of good aggregators if you want them, but have a hunt around on google you'll spit up a whole host, most of them offer almost identical services for identical prices, just choose one you like the look of.

Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top