Saturday, 29 May 2010 01:48
Phoca Gallery 3.0.0 Alpha1 has been released. This version is designed for Joomla! 1.6 Beta1. Be aware, this version (Alpha1) is early release of Phoca Gallery and should be used for testing only (on test servers). There are many new features in Joomla! 1.6 framework, so large parts of the code in Phoca Gallery had to be rewritten (including all language strings). Please don't translate the language strings because this will be much changed in the future.
Known issues:
What is needed primarily to test:
Some useful tips for testing Phoca Gallery 3.0.0 Alpha1 and Joomla! 1.6 Beta:
UPDATE `jos_menu` SET `published` = '1', `component_id` = ( SELECT extension_id FROM `jos_extensions` WHERE element = 'com_phocagallery' ) WHERE `title` LIKE '%phocagallery%';
The prefix is set to jos_ (change it to your own if needed).
Could not save data. Error: JTableAsset::store failed
Duplicate entry '' for key 'idx_asset_name' SQL=INSERT INTO `jos_assets` (`rules`,`parent_id`,`level`,`lft`,`rgt`) VALUES ('{\"core.admin\":[],\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}','0','0','143','144')
go to:
libraries/joomla/database/table/asset.php
line cca 74
and add the following code to this line:
//Temporary arrangements for testing
if ($assetId == 0) {
return false;
}
//Temporary arrangements for testing
Notice: Undefined property: stdClass::$componentid in libraries/joomla/application/menu.php on line 210
go to:
libraries/joomla/application/menu.php
line cca 210
and change the following code:
FROM:
if ($item->$attributes[$i] != $values[$i]) {
$test = false;
break;
}
TO:
//Temporary arrangements for testing
if (isset($item->$attributes[$i])) {
if ($item->$attributes[$i] != $values[$i]) {
$test = false;
break;
}
}
//Temporary arrangements for testing
Download: Phoca Gallery download site.
Please report all bugs to Phoca Forum. Thank you.
|
|