Category Archives: Uncategorized

Setting up mobile browsing

So I work there has been lots of talk about getting the webistes to load on mobile phones. Let me clear that I don’t care about the  mobile browsers, especially when so many phones will be supporting flash player 10.1 and air, and that flash CS 5 will allow you to create iPhone applications!

However, if you are interested in getting your current webpage(html/ColdFsuion, etc.) here are some good resurces:

General Guidelines which may provide a good starting point to argue on differences between mobile web and regular web:

http://passani.it/gap/

Resources for Nokia devices:
http://wiki.forum.nokia.com/index.php/Mobilising_your_Web_Service

http://www.forum.nokia.com/Technology_Topics/Web_Technologies/Browsing/Web_Templates/

http://www.forum.nokia.com/Technology_Topics/Web_Technologies/Browsing/

Unix & Apache commands

Apache Commands

Re-Start Apache -sudo apachectl restart
Start - sudo  apachectl -k start
Stop Apache- sudo  apachectl -k stop
Changing Files Names
change .htm files to .html-
for file in *.htm ; do mv $file `echo $file | sed 's/(.*.)htm/1html/'` ; done

change .html files to .htm- 
for file in *.html ; do mv $file `echo $file | sed 's/(.*.)html/1htm/'` ; done
change .html files to .shtml- 
for file in *.html ; do mv $file `echo $file | sed 's/(.*.)html/1shtml/'` ; done
change .html files to cfm- 
for file in *.html ; do mv $file `echo $file | sed 's/(.*.)html/1cfm/'` ; done