Skip to content
Honey Silvas edited this page Aug 25, 2016 · 6 revisions

Installation

There are 3 ways to set up BlastPad. You can either have it hosted on BlastPad.co, hosted on your local computer or hosted on your own server.

(Easy) Hosted on BlastPad.

Hosted on your local computer.

  • Setup PHP on your local computer if you don't already have it.

  • If you don't have PHP set up on your local computer, the easiest way to get setup is by downloading and installing XAMPP from https://www.apachefriends.org/index.html .

  • Download the BlastPad code.

  • Go to http://blastpad.github.io/BlastPad/

  • Click the button that says "Download ZIP".

  • Unzip your code and place it in your htdocs folder. If you are using XAMPP, it's usually something like c://xampp/htdocs/.

  • Run your XAMPP control panel to start Apache and mySQL.

  • Then go to your browser and type http://localhost/blastpad where blastpad is the name of the folder you unzipped to.

  • Create a new database on your server.

  • Import the file "database.sql" from the directory "blastpad_source\0.1.0\sql" (where 0.1.0 is your BlastPad version) into your database.

  • Follow the instructions below on "How to Customize".

Hosted on your own server.

  • Download the code.

  • Go to http://blastpad.github.io/BlastPad/

  • Click the button that says "Download ZIP".

  • Unzip the file to your desktop.

  • Upload the files to your server.

  • Create a new database on your server.

  • If using mySQL, use "utf8mb4_unicode_ci" as collation.

  • Import the file "database.sql" from the directory "blastpad_source\0.1.0\sql" (where 0.1.0 is your BlastPad version) into your database.

  • Follow the instructions below on "How to Customize".

How to Customize

  • Go to the "blastpad_custom\config\production" directory. Copy the file "database.php.sample" and rename it to "database.php".

  • Open the file named "database.php" with a text editor such as Notepad.
    Add your database login information.

    $blastpad[ "config" ][ "database_connection" ] = [ "username" => "putusernamehere", // Enter your database username here. "password" => "putpasswordhere", // Enter your database password here. "database" => "putdatabasenamehere", // Enter your database name here. ];

  • The main HTML and CSS files are in the "blastpad_public\asset\blueprint" folder.

Clone this wiki locally