Patches post v.0.30.1
1. Patch for ATutor Connector to solve double page header problem.
Edit ...../ck-api/at/connector.inc.php ,
After line 15,
require (AT_INCLUDE_PATH.'vitals.inc.php');
Add the following two lines,
ob_end_clean();
ob_start();
2. Patch for FusionTicket Connector to solve the problem of not being able to create files within data area.
Edit ...../ck-api/ft/connector.inc.php ,
At line 67,
$ckapi['hostsys']['dataarea'] = $_SHOP->user_files_dir ;
Replace the original line with the following line,
$ckapi['hostsys']['dataarea'] = $_SHOP->files_dir ;
=====================================================================================================
=====================================================================================================
=====================================================================================================
Patches post v.0.25.1
1. Download the updated (osCommerce connector) connector.inc.php file attached to the following thread.
http://groups.google.com/group/CK-ERP-en/browse_thread/thread/936618f3f8...
Use the downloaded file to overwrite the existing file located at .../ck-api/osc22/connector.inc.php within an (osCommerce 2.2rc1 + CK-ERP v.0.25.1) environment. If your environment is not running osCommerce, this patch is not necessary.
*****************************************************************************************************
*****************************************************************************************************