Login   Register  
PHP Classes
elePHPant
Icontem

File: INSTALL

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Stanimir Angeloff  >  NAJAX  >  INSTALL  >  Download  
File: INSTALL
Role: Documentation
Content type: text/plain
Description: NAJAX installation instructions.
Class: NAJAX
Call PHP class functions from page with Javascript
Author: By
Last change: NAJAX 0.4.0.0 Release
Date: 2005-09-18 00:47
Size: 722 bytes
 

Contents

Class file image Download
INSTALL
--------

If you would like to use the Client Event System (NACLES)
you should run the following SQL code in your database:

CREATE TABLE `najax_events`
(
	`id`		BIGINT			UNSIGNED	NOT NULL	AUTO_INCREMENT,
	`event`		VARCHAR(100)				NOT NULL,
	`className`	VARCHAR(100)				NOT NULL,
	`filter`	VARCHAR(100)				NULL,
	`sender`	TEXT						NULL,
	`data`		TEXT						NULL,
	`time`		DOUBLE			UNSIGNED	NOT NULL,
	`endTime`	DOUBLE			UNSIGNED	NOT NULL,

	PRIMARY KEY(`id`),

	INDEX(`event`, `className`, `filter`, `time`, `endTime`)

);

If you're going to use another provider (not MySQL) please refer to
the README or INSTALL file included in it. Note, that some providers
do not require installation.