Jump to content

Installer file


Xtremer360

Recommended Posts

I came up with my own cms script for this particular reason and want to come up with an installer file that will copy certain directories on a server and install certain files and make the neccessary database tables and whatever else is needed for an installer file. Anybody know what research I need to do to learn how to do make one for this?

Link to comment
Share on other sites

Create an install folder in the root with your installer files (php, sql etc) and add a detection in your core files (I supposed you have at least one file which is included everywhere).

 

Many scripts do it this way.

 

Here's an example of how phpBB3 handles it:

if (!file_exists($phpbb_root_path . 'config.' . $phpEx))
{
die("<p>The config.$phpEx file could not be found.</p><p><a href=\"{$phpbb_root_path}install/index.$phpEx\">Click here to install phpBB</a></p>");
}

 

It then requires the config file and checks to see if defined('PHPBB_INSTALLED') is true.

All this is done in the main included file.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.