It’s a common task, and I explored this site, then I found a tool called “BitNami Stacks” doing something like this, so I gave it a try.
I downloaded an installer with phpbb in it, and I started to install it, it works great! So, my question is:
1) How to modify the install wizard, so it can deploy my app instead of phpbb3?
2) How to use my language(Chinese in fact) instead of English in the wizard?
Of course, if BitNami can’t do this, any other choice is welcome too.
Thanks in adv.
I would produce my own linux .sh to:
1)wget a compressed archive of my script package included is a SQL with a known file name.
2) Extract to /var/www (or other set webdirectory)
2a) Prompt the user for a root password to SQL and save this to a variable
3) connect to SQL Database via this shell and
cat filename.sql | mysql -u root -p pass-variable4)
RM -f /var/www/ filename.sqlto delete the raw SQL fileEverything you want done can be done via bash scripting, which is technically what the link you provided does
On windows, I wouldn’t know how to approach this.