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
https://forums.phpfreaks.com/topic/193964-installer-file/
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
https://forums.phpfreaks.com/topic/193964-installer-file/#findComment-1020804
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.