View Single Post
  #7 (permalink)  
Old 05-19-2007, 02:45 AM
Andy M --Tampa Bay--
 
Posts: n/a
Default Re: Need help with building a WAP site for downloads

Guru wrote:
>> You really royally fucked up american Trash!! You don't have a good
>> answer for the original poster or have any good manners to be in this
>> board. Get your fucking get out of your mama ass, then you know were
>> you are living. First educate your self, instead of getting jealous
>> of
>> some knowledgeable great guys around this board who is giving what
>> they learned in their life. You just another retorted moron, eat all
>> the mc-Donald burgers put on weight like a pig and fight everyone
>> with
>> your ass all the way you die. Get the hell out of this intellectual
>> community board. Hi by the way, can you add some cheese on the burger
>> Fucker.
>>
>> Hi, remove your head from your sister's cunt, I need that. Don't suck
>> my dick too fast moron, slow slow, ha that's my good doggy. Keep
>> going.
>>
>> - The Iraqi in your mama's ass
>>


This is way better than all those "reality" shows. Hilarious.


>>
>> tomparker@rn.com (Tom Parker) wrote in message
>> news:<c7586906.0401190239.3774c22d@posting.google. com>...
>>> You are a total fuck up Gopi. Try answering the question instead of
>>> being a "know-it-all". The question was..."I have MysSQL database
>>> and
>>> plenty of space.
>>> Does anyone out there have pre-written code and/or instructions on
>>> how
>>> to implement such a thing?" Why not give him something useful like
>>> the MIME types for the ringtones?
>>>
>>> Why not help him out and give some instructions on using a SQL
>>> database or give him some pre-written code? Instead, once again you
>>> have the need to be a know-it-all and post some stupid bullshit.
>>>
>>> Your mother should have had an abortion, you kiss-ass T-Mobile
>>> loving
>>> freak!
>>>
>>>
>>> bb+graffiti.spam.gopi@andrew.cmu.edu (gopi) wrote in message
>>> news:<c060ee07.0401181448.43056ffa@posting.google. com>...
>>>> Rich <rich@spam-me.org> wrote in message
>>>> news:<pldk0012jvkp0h1dg64fv4d4hj61a71kme@4ax.com>. ..
>>>>> On Wed, 07 Jan 2004 13:31:40 -0600, Amon-Ra <me@right.here> wrote:
>>>>>> I own and operate a couple of websites in the United States and I
>>>>>> would like to add a WAP directory that would offer free (really!)
>>>>>> ringtones, etc. for a variety of phones and services. The only
>>>>>> problem is that I don't know how! I have MySQL databases and
>>>>>> plenty of space. Does anyone out there have pre-written code
>>>>>> and/or instructions on how to implement such a thing? Please
>>>>>> email webmaster@NOSPAMcookevilletalks.net . Thanks a lot!
>>>>> If you havn't passed just writing html you're in trouble.
>>>>> wml is damn picky how it is written. And then there are
>>>>> the mime types to fight over. it ain't easy
>>>>
>>>> The basic setup is really not all that challenging once you know a
>>>> few
>>>> things about the infrastructure:
>>>> WAP is analgous to HTTP. Both of them are merely ways to get
>>>> documents
>>>> onto your computer.
>>>> WML and HTML are markup languages. Most phone browsers only
>>>> understand
>>>> WML documents, which are much simpler than HTML.
>>>>
>>>> WAP is optimized for small wireless devices. There is a single WAP
>>>> gateway that your provider runs. Let's say I go to cnn.com. Using
>>>> HTTP, my computer sends a request to the computer at cnn.com and
>>>> asks
>>>> for a document. Using WAP, on the other hand, your phone sends a
>>>> request to your provider's WAP gateway. The WAP gateway then sends
>>>> out
>>>> an HTTP request to the remote system to get the document.
>>>>
>>>> What this means is, serving documents for a phone is just like
>>>> serving
>>>> documents for any other web browser. You run a standard HTTP server
>>>> such as Apache, and give people a standard URL.
>>>>
>>>> The key difference is that you usually need different documents,
>>>> written in WML. All documents on your web site have a MIME type.
>>>> WML
>>>> documents are no different.
>>>>
>>>> To configure apache, one of the config files needs the following:
>>>> AddType text/vnd.wap.wml wml
>>>> AddType text/vnd.wap.wmlscript wmls
>>>> AddType text/vnd.wap.wmlc wmlc
>>>> AddType text/vnd.wap.wmlscriptc wmlsc
>>>>
>>>> Then, Apache will tell your phone that the document "foo.wml" is of
>>>> type "text/vnd.wap.wml", and your phone will say "thank you, I know
>>>> what to do with that" and display it.
>>>>
>>>> Ring tones have their own MIME types which you'll need to ensure
>>>> are
>>>> configured on your server.
>>>>
>>>> So, to summarize:
>>>> 1. Add appropriate MIME types to your web server configuration.
>>>> 2. Write a simple WML document (google will show you lots of
>>>> tutorials)
>>>> 3. Enter the URL for it into your phone's browser
>>>>
>>>> It really isn't any more complicated than standard web serving,
>>>> just a
>>>> bit different.



Reply With Quote