|
|
Installation
Simple Instructions to install Simpl onto a web server.
Introduction
- Download the newest version of Simpl from this site.
- Copy the "simpl" directory to your web root (ex. /usr/local/www/). It is not required to install in a web viewable directory
- Define some basic directories for Simpl
- Include the Simpl class
- Connect to the database
- Include your application level classes and you are good to go
// Directories
// Always Include trailing slash "/" in Direcories
define('DIR_ABS', '/usr/local/www/mysite/');
define('FS_SIMPL', DIR_ABS . 'simpl/');
define('FS_CACHE', DIR_ABS . 'cache/');
// Database Connection Options
define('DB_USER', '');
define('DB_HOST', '');
define('DB_PASS', '');
define('DB_DEFAULT', '');// Simpl Framework include_once(FS_SIMPL . 'simpl.php');
// Make the DB Connection $db = new DB; $db->Connect();
Next Step
Read the BaseClasses page to get a full understanding of Simpl's abilities.
Sign in to add a comment

i do not understand these instructions any chance of making instructions clearer ?