What's new? | Help | Directory | Sign in
Google
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#summary Simple Instructions to install Simpl onto a web server.
#labels Phase-Deploy,Phase-Implementation,Featured

= 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
{{{
// 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', '');
}}}
# Include the Simpl class
{{{
// Simpl Framework
include_once(FS_SIMPL . 'simpl.php');
}}}
# Connect to the database
{{{
// Make the DB Connection
$db = new DB;
$db->Connect();
}}}
# 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.

Show details Hide details

Change log

r239 by nick.denardis on Mar 22, 2007   Diff
Edited wiki page through web user
interface.

Go to: 
Project members, sign in to write a code review

Older revisions

r211 by nick.denardis on Mar 04, 2007   Diff
Edited wiki page through web user
interface.
r202 by nick.denardis on Mar 03, 2007   Diff
Edited wiki page through web user
interface.
r165 by nick.denardis on Jan 29, 2007   Diff
Edited wiki page through web user
interface.
All revisions of this file

File info

Size: 1045 bytes, 38 lines