| Author |
Message |
 matte^^
 Posts: 5
Phone Model: SonyEricsson T310
Service Provider: Comviq |
 Mon Sep 15, 2003 5:00 pm |
Hi!
I've made myself a wap-site and are downloading *.mid and *.gif from it to my phone... But how should I do if I wanna download games (*.mpn)??
|
 |
Advertisement
|
|
|
|
 |
 matte^^
 Posts: 5
Phone Model: SonyEricsson T310
Service Provider: Comviq |
 Mon Sep 15, 2003 7:20 pm |
Nevermind...now I've got it...now I can transfer pictures, sound and games using gprs from my computer to my phone! Nice...
|
 |
 ThaDemon
 Posts: 311
Phone Model: Sony Ericsson K610i
Service Provider: Vodafone |
 Tue Sep 16, 2003 9:32 am |
Well.. tell us please how you did it.
There are maybe more people who want to know it (like me )
|
 |
 Ganxta B
 Posts: 342
Phone Model: Sony Ericsson T310
Service Provider: T-Mobile DOMINO |
 Tue Sep 16, 2003 9:39 am |
|
Yea, the thought of making yor own WAP site is quite intriguing and may also be helpful to those who want to expand their websites to .wml format too. What Appz did you use for it and such...
|
 |
 vishalsngh
 Posts: 30
Phone Model: Sony Ericsson T310 |
 Wed Sep 17, 2003 2:10 am |
i had set up wap site at freeservers.com but am unable to donwload files. still looking for such wap sites which provide file download options via wap.
|
 |
 kiri
 Posts: 9
Phone Model: T310
Service Provider: H PANNON |
 Wed Sep 17, 2003 4:17 am |
|
if you have a public ip address you can run a wap server on yer own pc :) imho it's the best solution. i dunno any wap server proggies, but i think apache should do it. use google to gather more info :]
|
 |
 vishalsngh
 Posts: 30
Phone Model: Sony Ericsson T310 |
 Wed Sep 17, 2003 4:46 am |
|
u mean i have to do some programming to create download links in my wap page?
|
 |
 kiri
 Posts: 9
Phone Model: T310
Service Provider: H PANNON |
 Wed Sep 17, 2003 5:12 am |
|
hm, yep. you may need to create an index.wml file
|
 |
 matte^^
 Posts: 5
Phone Model: SonyEricsson T310
Service Provider: Comviq |
 Wed Sep 17, 2003 12:30 pm |
This is how I did it...
1. Download and install Apache HTTP server...
2. Make a simple index.wml ->
-----------
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"
"http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card title="name of your site">
<p>
<a href="link to game.mpn">name of game</a>
</p>
<p>
<a href="link to game.mpn">name of game</a>
</p>
</card>
</wml>
-----------
Then put it in the "htdocs" folder in apache...
3. Edit httpd.conf in folder "conf"... Locate "addtype" in the document and add the following...
-----------
# for WML processing
AddType text/vnd.wap.WML WML
AddType text/vnd.WAP.WMLscript WMLs
AddType image/vnd.WAP.WBMP WBMP
AddType application/vnd.WAP.WMLc WMLc
AddType application/vnd.WAP.WMLscriptc WMLsc
AddType application/vnd.mophun.application MPN
AddType application/vnd.mophun.certificate MPC
-----------
4. Run Apache server... Then you just wap to your own site and download your stuff!!!
--- My english sux... =)
|
 |
 matte^^
 Posts: 5
Phone Model: SonyEricsson T310
Service Provider: Comviq |
 Wed Sep 17, 2003 12:41 pm |
If you don't understand what I'm talking 'bout...check this link out...
http://forums.mobiledia.com/viewtopic.php?t=889
Just remember to add this 2 lines in the addtype section of hhtpd-conf -->
AddType application/vnd.mophun.application MPN
AddType application/vnd.mophun.certificate MPC
Otherwise you won't be able to download games...
|