|
Revision 21, 1.2 kB
(checked in by gerd, 4 years ago)
|
- update docs
- corrected typos
- changes to make Native driver compatible with PHP5
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
/** |
|---|
| 2 |
* patSession |
|---|
| 3 |
* |
|---|
| 4 |
* $Id$ |
|---|
| 5 |
* |
|---|
| 6 |
* @package patSession |
|---|
| 7 |
* @copyright 2003/2004 by the patTeam |
|---|
| 8 |
* @author gERD Schaufelberger <gerd@php-tools.net> |
|---|
| 9 |
* @license LGPL |
|---|
| 10 |
* @link http://www.php-tools.net |
|---|
| 11 |
*/ |
|---|
| 12 |
|
|---|
| 13 |
patSession Installation |
|---|
| 14 |
======================= |
|---|
| 15 |
This is a very short document, that tries to help you setting up patSession for |
|---|
| 16 |
basic usage. Please read the readme.txt for further information. |
|---|
| 17 |
|
|---|
| 18 |
INSTALLATION |
|---|
| 19 |
============ |
|---|
| 20 |
This package requires patError! patError is another project of the patTeam. It |
|---|
| 21 |
can be found and downloaded at http://www.php-tools.net |
|---|
| 22 |
|
|---|
| 23 |
Due to avoid conflicts with different verions of patError, we decided not to |
|---|
| 24 |
include the files of patError in other packages. Sorry for inconvinience. |
|---|
| 25 |
|
|---|
| 26 |
Manual installation: |
|---|
| 27 |
-------------------- |
|---|
| 28 |
Copy the file patSession.php and the folder (inclusive subfolders) into you |
|---|
| 29 |
include directory. That's all. |
|---|
| 30 |
|
|---|
| 31 |
Install the PEAR package |
|---|
| 32 |
------------------------ |
|---|
| 33 |
Download the PEAR package file from the project homepage and install it, by |
|---|
| 34 |
typing the command: |
|---|
| 35 |
|
|---|
| 36 |
pear install <filename> |
|---|
| 37 |
|
|---|
| 38 |
After installation, patSession can be included with: |
|---|
| 39 |
include_once 'pat/patSession.php'; |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
TESTING |
|---|
| 43 |
======= |
|---|
| 44 |
Have a look at the examples - all of them should work if you adjust the |
|---|
| 45 |
"include_once"-statement. |
|---|
| 46 |
|
|---|