My favorites | Sign in
Project Logo
                
Search
for
Updated Mar 22, 2007 by nick.denardis
Labels: Phase-Deploy, Phase-Implementation, Featured
Installation  
Simple Instructions to install Simpl onto a web server.

Introduction

  1. Download the newest version of Simpl from this site.
  2. Copy the "simpl" directory to your web root (ex. /usr/local/www/). It is not required to install in a web viewable directory
  3. Define some basic directories for Simpl
  4. // 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', '');
  5. Include the Simpl class
  6. // Simpl Framework
    include_once(FS_SIMPL . 'simpl.php');
  7. Connect to the database
  8. // Make the DB Connection
    $db = new DB;
    $db->Connect();
  9. Include your application level classes and you are good to go

Next Step

Read the BaseClasses page to get a full understanding of Simpl's abilities.


Comment by inskyboat, Mar 12, 2008

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

Comment by mau...@hotmail.com, May 10, 2009

I saw the example working. But, still, It is dificult to me to see how it works. I dont know what I must do on my own work.

All we will be glad if you make a good documentation to see how it works.

Thanks!

Comment by egezio, Jun 18, 2009

I also don't understand it. I couldn't get the application working unfortunately. A lot of steps are missing in the documentation.


Sign in to add a comment
Hosted by Google Code