|
ECB SEO SHOP SOFTWARE - IMEDES SOFTWARE DOWNLOADS
*****************************************
* *
* INSTALLATION-GUIDE *
* *
*****************************************
* @package Xajax Framework *
* @compatible SP2.1 *
*****************************************
--------------
NEW FILES:
--------------
xajax.functions.php
xajax.inc.php
xajaxCompress.php
xajaxResponse.inc.php
--------------
NEW DIRS:
--------------
xajax_js
--------------
CHANGED FILES:
--------------
admin/includes/application_top.php
admin/includes/header.php
includes/application_top.php
includes/classes/class.inputfilter.php
includes/header.php
-------------
INSTALLATION:
-------------
1. new_files und new_dirs kopieren.
2. changed_files kopieren, oder bei nicht standard-version folgende änderungen durchführen:
-admin/includes/application_top.php
---------------------------------------------------------------------------------------------------
finde folgendes:
?>
und füge davor ein:
// include xajax function
require ('xajax.functions.php');
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-admin/includes/header.php
---------------------------------------------------------------------------------------------------
finde folgendes:
if ($messageStack->size > 0) {
echo $messageStack->output();
}
und füge danach ein:
// Include XAJAX JS Library
if ($xajax) $xajax->printJavascript('/..');
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-includes/application_top.php
---------------------------------------------------------------------------------------------------
finde folgendes:
?>
und füge davor ein:
// include xajax function
require ('xajax.functions.php');
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-includes/classes/class.inputfilter.php
---------------------------------------------------------------------------------------------------
finde folgendes:
unset ($source[$key]);
und füge davor ein:
if ($key != 'xajaxargs')
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
-includes/header.php
---------------------------------------------------------------------------------------------------
finde folgendes:
// require theme based javascript
require('templates/'.CURRENT_TEMPLATE.'/javascript/general.js.php');
und füge davor ein:
// Include XAJAX JS Library
if ($xajax) $xajax->printJavascript();
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------
|