php - Create an Installer package for Installation on WAMP -
I have developed a PHP web application, now I'm thinking of planning it on Windows.
To reduce my deployment, I am planning to make an installer for this. This installer should do the following:
- Check pre-requirements such as Apache, MySQL, etc. Make them available if they are not available
- Enter the PHP application on the application folder, And set the port number in this process, make a conf file for the application, to ensure that httpd.conf updates this refers to the application-specific config file.
- The database setup script and the database population script that I have prepared.
- Set the database settings in the application configuration file so that they are pointing to the correct database.
I'm looking for an installer to help me in this regard, something like that. Of course, I have to write a lot of custom action code for this, whatever I really hate. My question is, is there any person who has done all this stuff and is willing to share his code so that I have to do everything from scratch?
I think you are looking for this. BitRock is used by some big projects of SugarRMR etc. to get their LMP stacks on other computers. Try it!
Comments
Post a Comment