Is there a software of some sort that you can use to try and make a website script auto install to the server. For ex. most php script packages you can download to install on your server has that feature where, all you have to do is upload all the files to the webserver and then point to the install.php file and it will walk you through an installation. Reason I need this is because I have a script that I will be needing to install to many webservers and its a pain in the butt editing each file manually to change information such as mysql database information, usernames, passwords, etc......
I could build you an installer for around $30.00, mabe a little more. It's pritty simple ( enter the database info, hit submit, save the info entered into config.php, insert the sql into the database, display done and say to delete the install file )
1. Present the user with a form to fill up his database connection details. Once these are submitted by the user, verify them and write to configuration file using functions such as fopen(), fwrite(), etc. 2. In the installer package, also include a SQL file. Now simply run the SQL queries from it. This part could be a bit tricky through.