Samsung Behold Applications
Find Your Forum
  
Welcome, Guest. Please login or register.
Did you miss your activation email?

News: Like TheGeekCritique on Facebook    
Samsung Behold Forum, Samsung Behold Wallpapers  
Best Screen Protector for Samsung Behold                Find Free T-Mobile Cell Phones
               Get Hottest Ringtones for Samsung Behold
Pages: [1] 2
Print
Author Topic: Easy Way to Install Games  (Read 8901 times)
NeroMorte
Full Member
***

Cookies: 27
Posts: 165


Qarbontapice@msn.com
WWW Email
« on: December 27, 2008, 02:48:36 PM »

Tk Explorer Kept Crashing and Erroring on Me so I Google how to Create Jad Files, Came Across this Program called Jad Creator.

Since i host my on web server this works perfect for me, Mind you it is not hard to host a mini web server.

How to use:

1.) Click on Open JAR and Select Jar game or app you wish you install.
2.) On the View JAD side Copy Paste that info into like a file Download.jad, Place it inside your server root

Example with Simpsons:

Code:
MIDlet-1: Die Simpsons 2, /Icon.png, Simpsons2

Manifest-Version: 1.0
MIDlet-Name: Die Simpsons 2
MIDlet-Version: 1.0.0
MIDlet-Vendor: Electronic Arts
MicroEdition-Profile: MIDP-2.0
MicroEdition-Configuration: CLDC-1.0
MIDlet-Icon: /Icon.png
Created-By: Metaflow

MIDlet-Jar-Size: 284162
MIDlet-Jar-URL: http://fusionwebdesigner.dyndns.org/dieSimpsons2.jar

3.) Have to edit "MIDlet-Jar-URL:" to match your IP or Address, i have my ip translated into a address useing http://Dyndns.com or http://No-IP.com

4.) Now Just Visit the page on phone http://IPorAddress/Download.jad, Your game or app will download and install for yea No need for Enter Codes or Mess with TK Explorer Crash's =)


Seems i'm not allowed to Attach files Over 128k =( so i uploaded it to my web-page Feel free to try it out.
Download: JAD Creator
« Last Edit: January 14, 2009, 07:25:21 PM by NeroMorte » Logged

Morte, In the Shadows of the Valley of Death, Thou Shall Not Return....
dragonstalker
Idol
**

Cookies: 21
Posts: 1351


Good Leaders learn to follow first!

kdijari@hotmail.com kdijari
Email
« Reply #1 on: December 27, 2008, 04:01:48 PM »

pretty cool. you mind going thru and showing how to download the software and turn your computer into a ftp server for those that prob don't know how to do this?
Logged

NeroMorte
Full Member
***

Cookies: 27
Posts: 165


Qarbontapice@msn.com
WWW Email
« Reply #2 on: December 27, 2008, 04:17:00 PM »

Sure i will make a Seperate Post on how to. There is IIS that comes with Windows Xp Pro or Apache witch is what i like to use i Will write up on Apache.
Logged
NeroMorte
Full Member
***

Cookies: 27
Posts: 165


Qarbontapice@msn.com
WWW Email
« Reply #3 on: December 27, 2008, 06:11:40 PM »

Installing Apache Web Server

guide how to install apache web server
Introduction: Installing Apache. The only reason to install Apache 2.2.11 is if you will be running web-server off your home machine, or for site testing purpose.

To start with we will download all of the necessary applications which can be found at the following locations:

Apache: Apache download page
File to download: Win32 Binary including OpenSSL (MSI Installer): apache_2.2.11-win32-x86-openssl-0.9.8i.msi



Now Open notepad and Copy the Below Batch Code, File -> Save As... File Named: Server Layout.bat

Code:
cls
@echo off
echo.
echo.
goto HDDCLN
:HDDCLN
echo y | MD %HOMEDRIVE%\webserver
echo y | MD %HOMEDRIVE%\webserver\bin
echo y | MD %HOMEDRIVE%\webserver\bin\apache2.2.11
echo y | MD %HOMEDRIVE%\webserver\logs
echo y | MD %HOMEDRIVE%\webserver\tmp
echo y | MD %HOMEDRIVE%\webserver\apps
echo y | MD %HOMEDRIVE%\webserver\scripts
echo y | MD %HOMEDRIVE%\webserver\wwwroot
echo y | MD %HOMEDRIVE%\webserver\alias
cls
echo.
echo.
@echo Done.
Exit

Now Double Click Server Layout.bat

#!\webserver
Description: Server Directory, where all server files will be stored.
#!\webserver\bin
Description: This is where you Install Apache, PHP, Perl, MySQL.
#!\webserver\tmp
Description: There is Server Temporary Folder.
#!\webserver\logs
Description: All Server / Site Logs will go here.
#!\webserver\apps
Description: Misc Applications for the Server e.g,. PHP MyAdmin, SQLite manager.
#!\webserver\scripts
Description: This is if you want a defualt folder for script can only be ran.
#!\webserver\wwwroot
Description: This is Root Directory for sites.
#!\webserver\alias
Description: Alias (Short-Cuts) for Each web-site are here.

Installing Apache 2.2.11
Go to your desktop to the previously Downloaded file and double click apache_2.2.11-win32-x86-openssl-0.9.8i.msi. This will start installation of Apache web server. Follow the instructions:

01 - Click next
02 - Select I accept terms in the licence agreement and click next.
03 - Click next
04 - In the first two fields type in localhost and in the last one info@localhost.

We will be installing Apache as a service which starts automatically when computer starts therefore we select Port 80. If you are about to use your web server just from time to time then you may choose Port 8080. This way you would need to start Apache manually everytime you are going to use it.

05 - Select Custom and click next.
06 - Because we want our server to be installed in "C:\webserver\bin\apache2.2.11" click Change button to change the path of the installation.
07 - Navigate to "C:\webserver\bin\apache2.2.11" and click OK. On the next screen click next.
08 - Now you are ready to install Apache. Click Install.
09 - Once everything is done click Finish to exit setup.
10 - You should now see a small Apache icon in the system tray.
12 - Now let´s see if Apache is running. Open your browser and if you were installing Apache as a service (Port 80)
then type in URL http://localhost and press Enter. You should see It works! displayed on page.

If you were installing Apache using Port 8080 then you would need to first start it by going to Start > All Programs > Apache HTTP Server 2.2 > Control Apache Server and click Start. Then in your browers´s URL type http://localhost:8080. This should open the same page in your browser.
Make sure you allow Apache access on your firewall.

Creating Apache 2.2.11 Alias
Go to "C:\webserver\alias" Create File Named your Alias Cap Senitive. e.g. AliasExample.com.conf

The Following Highlighted Should be Changed to Match your site folder, Alias.

Code:
Alias /AliasExample.com/ "c:/webserver/wwwroot/Alias Examples/"


<Directory "c:/webserver/wwwroot/Alias Examples/">
#
#By Adding the SetEnv Varabile to  you Can
#Enable Custom Logging by Adding the Following to httpd.conf "" Section:
#CustomLog C:/webserver/logs/AliasExample.com_access.log combined env=AliasExample.com
#Example: SetEnv Domain_Name without Forward Slash's
SetEnv AliasExample.com

#
#If Enable Allows Visiter to Browse Dirctory like "Windows Explorer"
#Set Options to either None or -Indexes or +Indexes
#Options -Indexes

#
#This Enabled / Disbaled Server Side Includes.
#Set Options to either None or -Includes or +Includes
#Options +Includes

#
#This is To Allow .CGI .PL File to Be ran.
#Set Options to either None or -ExecCGI or +ExecCGI
#Options +ExecCGI

#
#This is like a "Short-cut" if enabled or Direct Link if Turned off.
#Set Options to either None or -FollowSymLinks
#Options -FollowSymLinks

#
#Turning off multiple Options
#If you want to turn off all Options simply use:
#Options None

#
#MultiViews will take a request for foobar, and find matching files.
#For example, I could have an HTML file foobar.html and a PDF file foobar.pdf.
#MultiViews would determine which of the possible choices best matched the
#Accept header in the request, and serve the appropriate file.
#Options +Multiviews

#
#If you only want to turn off some separate each option with a space in your Options directive:
#Options -ExecCGI -FollowSymLinks +Indexes

#
#Enable / Disbale The Support for .htaccess files
#AllowOverride None
</Directory>

then type in URL http://localhost/AliasExample.com/ and press Enter. You should see your page displayed on web Browser.




Windows .htaccess Fix
Apply the Following Registration Entries will allow you to Double click .htaccess file to Edit.

Now Open notepad and Copy the Below "Registration Entries", File -> Save As... File Named: HTaccess.reg

Code:
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\htaccess_auto_file]
@=""
"EditFlags"=dword:00000000

[HKEY_CLASSES_ROOT\htaccess_auto_file\shell]

[HKEY_CLASSES_ROOT\htaccess_auto_file\shell\edit]

[HKEY_CLASSES_ROOT\htaccess_auto_file\shell\edit\command]
@="C:\\Windows\\notepad.exe \"%1\""

[HKEY_CLASSES_ROOT\htaccess_auto_file\shell\open]

[HKEY_CLASSES_ROOT\htaccess_auto_file\shell\open\command]
@="C:\\Windows\\notepad.exe \"%1\""

Now Double Click HTaccess.reg, Click Yes to "Are you sure you want to add the information in HTaccess.reg to the registry."

Thats all you have completed your installation and you are now ready to start developing your web applications using Apache.

Note: if you want to use PHP, Perl and MySQL you would have to install more programs

Good Luck!
« Last Edit: December 27, 2008, 06:13:56 PM by NeroMorte » Logged
dragonstalker
Idol
**

Cookies: 21
Posts: 1351


Good Leaders learn to follow first!

kdijari@hotmail.com kdijari
Email
« Reply #4 on: December 28, 2008, 01:47:43 AM »

Nero, thank you very much for that.
Logged
60soldier
Full Member
***

Cookies: 0
Posts: 101



« Reply #5 on: February 02, 2009, 12:32:02 AM »

wat is all this for wat does it do fr the phone
Logged
NeroMorte
Full Member
***

Cookies: 27
Posts: 165


Qarbontapice@msn.com
WWW Email
« Reply #6 on: February 02, 2009, 01:02:57 PM »

This turns your computer into a Web Hosting Server, Then you can create a Page like i did to download stuff to phone.

http://samsung-behold.servegame.com/behold/

Then you can go to other web sites like No-ip.com or dyndns.com and Convert your IP into an Address like i have there.

Really in a nut-shell thats it, kinda for more advanced user or a really bored one... hehe

Peace, Morte
Logged
diabolusmiles
General Moderator
Guru
*****

Cookies: 18
Posts: 2548


life's a b*tch bring a helmet


« Reply #7 on: February 02, 2009, 01:29:14 PM »

lol i used to use no-ip when i hsd a moparscape world
Logged

60soldier
Full Member
***

Cookies: 0
Posts: 101



« Reply #8 on: February 02, 2009, 07:04:48 PM »

so is this almost like a free internet or asomethin
Logged
diabolusmiles
General Moderator
Guru
*****

Cookies: 18
Posts: 2548


life's a b*tch bring a helmet


« Reply #9 on: February 02, 2009, 08:57:16 PM »

no you need internet to use this i do believe
Logged
NeroMorte
Full Member
***

Cookies: 27
Posts: 165


Qarbontapice@msn.com
WWW Email
« Reply #10 on: February 03, 2009, 03:04:44 PM »

To sum this Topic up People.

This Turns you Computer into a Hosting Company Period. I.E.; GoDaddy.com

that is all this is doing, Our phone views web pages and is able to download from them making it easier to install games on our phone though a web site.

To answer 60soldier Question:

No you do not need internet Connection, This is not Free Internet of any kind If you want to call it free something it's like Free Web Hosting, With unlimited Space Depending on who deep your Pockets are.. ahaha

Now don't get me wrong here either you don't need internet to get Apache working but for other people around world to see your page you will need internet connect for that.

But everyone in your local home Network will be able to View the web page, if you have Bluetooth Network Phone should be able to connect to that and Browse Page without Internet Connection at all.

I Persoanlly have not tried this i know alot people about to Ask how??

Lol so i say mess with it, Only saying it possable.
« Last Edit: February 03, 2009, 03:11:00 PM by NeroMorte » Logged
60soldier
Full Member
***

Cookies: 0
Posts: 101



« Reply #11 on: February 03, 2009, 10:04:50 PM »

i kno u probably dont feel like answerin but i type have no clue wat u talkin bout
i just wanna kno wat will tyhis do ?

and one more question how do ya do this ?....twaekin fones and all i thinjk its real
smooth that ya do this ya probably mad smart
Logged
Persian
021
Administrator
Forum Addict
*

Cookies: 44
Posts: 3041


I always tell the truth, even when I lie.


WWW Email
« Reply #12 on: February 03, 2009, 10:17:05 PM »

i kno u probably dont feel like answerin but i type have no clue wat u talkin bout
i just wanna kno wat will tyhis do ?

and one more question how do ya do this ?....twaekin fones and all i thinjk its real
smooth that ya do this ya probably mad smart

ok well its safe to say this topic has gone off topic pretty much.  the first part was to install games "easily" on to the behold, and the second part is setting up a server onto your computer to host whatever you want, in this case, samsung behold games like what nero did
Logged

60soldier
Full Member
***

Cookies: 0
Posts: 101



« Reply #13 on: February 03, 2009, 10:39:19 PM »

i understand
but how do ya come up with stuff like this
Logged
Persian
021
Administrator
Forum Addict
*

Cookies: 44
Posts: 3041


I always tell the truth, even when I lie.


WWW Email
« Reply #14 on: February 03, 2009, 11:28:45 PM »

i understand
but how do ya come up with stuff like this
like what  Shocked we had to figure out a way to install games, otherwise we'd get bored of the phone instantly.  web hosting on computers has been around for a loooong time, I never got into it because I like to take up all my connection  Tongue
Logged
Pages: [1] 2
Print

Jump to:  

Got a new phone? Find the forum here






Galaxy S3 | Galaxy Note | Galaxy Nexus | Kindle Fire | Atrix 4G | Motorola Xoom | Windows Phone 7
Nokia Lumia | Tech Support Forum | Top Hosts | Samsung Galaxy Tab | Samsung Galaxy S2 | Samsung Galaxy S | Samsung Wave
HTC Evo 3D | HTC Evo 4G | HTC Incredible | HTC Incredible 2 | HTC Incredible S | HTC Thunderbolt
Motorola Droid Razr
| HTC Desire | HTC Desire HD | HTC Desire Z | HTC Desire S | HTC Wildfire
Motorola Droid | Galaxy Indulge | Nokia N8 | Droid Charge | Droid X | Droid X2 | Droid 2| Droid 3 | Fascinate
HTC Sensation | HTC Flyer | LG Revolution | Asus Transformer | Xperia Play | iPhone 4 | Nexus S | Droid Bionic
HTC One | HTC Wildfire S | HTC Droid Eris


This is an Un-Official fan based Website. The views expressed on this website are solely those of the proprietor, or contributors to the site, and do not necessarily reflect the views or opinions of the parties it covers, and is not affiliated with, endorsed or sponsored by parties involved.
If you have a problem with any of the content posted on this website, please contact "mobile@vssupportqueue.com"
Term of Use | Privacy Policy | BlackRain 2006 by, Crip