Connecting Tech Pros Worldwide Help | Site Map

create php package instaler

ido
Guest
 
Posts: n/a
#1: Aug 9 '06
hi ... newbie here !
does anyone knows the easies way to create a php package instaler.
something like install sheald do!

Carl Vondrick
Guest
 
Posts: n/a
#2: Aug 9 '06

re: create php package instaler


ido wrote:
Quote:
hi ... newbie here !
does anyone knows the easies way to create a php package instaler.
something like install sheald do!
Something like Fantastico?
ido
Guest
 
Posts: n/a
#3: Aug 9 '06

re: create php package instaler



Carl Vondrick wrote:
Quote:
ido wrote:
Quote:
hi ... newbie here !
does anyone knows the easies way to create a php package instaler.
something like install sheald do!
>
Something like Fantastico?
no, actualy i want to create something that can be used to install my
php aplication. so then, i dont have to copy my php aplication script
again to server. and also i dont have to create a database.

its more like installsheald do on .exe aplication.

cmiw

Carl Vondrick
Guest
 
Posts: n/a
#4: Aug 9 '06

re: create php package instaler


Quote:
no, actualy i want to create something that can be used to install my
php aplication. so then, i dont have to copy my php aplication script
again to server. and also i dont have to create a database.
>
its more like installsheald do on .exe aplication.
So you just want an installer? That's relatively simple. Just create a
SQL file with all your MySQL queries to make tables and insert standard
data and something that writes a config file. Boom. Done.
Jonathan
Guest
 
Posts: n/a
#5: Aug 9 '06

re: create php package instaler


ido wrote:
Quote:
no, actualy i want to create something that can be used to install my
php aplication. so then, i dont have to copy my php aplication script
again to server. and also i dont have to create a database.
>
its more like installsheald do on .exe aplication.
Something like this: NSIS (Nullsoft Scriptable Install System):
http://nsis.sourceforge.net/Main_Page

If you prepare everything and include that in your install script it
might work.

Jonathan
ido
Guest
 
Posts: n/a
#6: Aug 9 '06

re: create php package instaler



Carl Vondrick wrote:
Quote:
Quote:
no, actualy i want to create something that can be used to install my
php aplication. so then, i dont have to copy my php aplication script
again to server. and also i dont have to create a database.

its more like installsheald do on .exe aplication.
>
So you just want an installer? That's relatively simple. Just create a
SQL file with all your MySQL queries to make tables and insert standard
data and something that writes a config file. Boom. Done.
0k, i'm done with my sql. but how bout my aplication script ?

thanks !

ido
Guest
 
Posts: n/a
#7: Aug 9 '06

re: create php package instaler



Jonathan wrote:
Quote:
ido wrote:
>
Quote:
no, actualy i want to create something that can be used to install my
php aplication. so then, i dont have to copy my php aplication script
again to server. and also i dont have to create a database.

its more like installsheald do on .exe aplication.
>
Something like this: NSIS (Nullsoft Scriptable Install System):
http://nsis.sourceforge.net/Main_Page
>
If you prepare everything and include that in your install script it
might work.
>
Jonathan
thanks .. i'll try it !

Closed Thread