FLEXIContent - v2.0.0 - final for J2.5 released (r1648)

More
14 years 6 months ago - 14 years 6 months ago #18199 by Arkadiy
Create New type - does not work "Cancel" button if empty field "Type"

Create New Category - does not work "Cancel" button if empty field "Title"
Last edit: 14 years 6 months ago by Arkadiy.
The topic has been locked.
More
14 years 6 months ago #18200 by Arkadiy
���������� in create new field "Extended Weblink"
The topic has been locked.
More
14 years 6 months ago #18201 by Arkadiy
Undefined constant
FLEXI_FIELD_THUMB_IN_ITEM
FLEXI_FIELD_THUMB_IN_CAT
FLEXI_FIELD_LINKTO_URL
FLEXI_FIELD_URL_TARGET
in create new field "image"
The topic has been locked.
More
14 years 6 months ago - 14 years 6 months ago #18202 by Arkadiy
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\linkslist\linkslist.php on line 78
1. add
Code:
$version = $item->getValue('version', NULL, 0);
before
Code:
if($item->version...
, replace
Code:
$item->version
to
Code:
$version

2. linkslist.php string ~90
Code:
foreach ($items as $id => $item)
replace $item to $val (or $vsyaka_byaka), else object $item destroyed.

similarly as 1:
Code:
Notice: Trying to get property of non-object in Z:\home\j17\www\plugins\flexicontent_fields\radio\radio.php on line 70
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\radioimage\radioimage.php on line 77
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\select\select.php on line 47
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\select\selectmultiple.php on line 47
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\textarea\textarea.php on line 53
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\weblink\weblink.php on line 48
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\checkbox\checkbox.php on line 67
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\email\email.php on line 45
Code:
Notice: Undefined property: JForm::$version in Z:\home\j17\www\plugins\flexicontent_fields\extendedweblink\extendedweblink.php on line 46
Last edit: 14 years 6 months ago by Arkadiy.
The topic has been locked.
More
14 years 6 months ago #18203 by Arkadiy
Code:
Notice: Undefined offset: 0 in Z:\home\j17\www\plugins\flexicontent_fields\radioimage\radioimage.php on line 80
replace
Code:
} elseif (!$field->value[0]) {
to
Code:
} elseif (!isset($field->value[0])) {
Code:
Fatal error: Call to a member function isAdmin() on a non-object in Z:\home\j17\www\plugins\flexicontent_fields\radioimage\radioimage.php on line 95
and
Code:
Fatal error: Call to a member function isAdmin() on a non-object in Z:\home\j17\www\plugins\flexicontent_fields\radioimage\radioimage.php on line 177

replace
Code:
global $mainframe;
to
Code:
$mainframe = JFactory::getApplication();
The topic has been locked.
More
14 years 6 months ago #18210 by kursus

Tables are 99% the same.


I'll try an export/import a give a feedback.

About of prewindow. To list the field of an item you must first know its type. One way to do it is the prewindow, second way is to select, save (form reload), and third way to use AJAX.


Between modal window and old "save and refresh" system I would rather prefer the latter, despite AJAX is obviously the best choice.
The topic has been locked.
More
14 years 6 months ago #18211 by Arkadiy
Still observed 22 occurrences
Code:
global $mainframe;
not result in an error, but may not give the component to work properly:

\plugins\flexicontent_fields\fcpagenav\fcpagenav.php

\plugins\flexicontent_fields\file\file.php

\plugins\flexicontent_fields\minigallery\minigallery.php

\plugins\flexicontent\flexinotify\flexinotify.php

\components\com_flexicontent\controller.php

\components\com_flexicontent\models\favourites.php

\components\com_flexicontent\models\item.php

\components\com_flexicontent\models\search.php

\components\com_flexicontent\classes\flexicontent.helper.php

\components\com_flexicontent\classes\flexicontent.utilities.php

\components\com_flexicontent\helpers\search.php

\components\com_flexicontent\views\flexicontent\view.feed.php

\components\com_flexicontent\views\category\view.feed.php

\components\com_flexicontent\views\favourites\view.html.php

\components\com_flexicontent\views\item\view.pdf.php
The topic has been locked.
More
14 years 6 months ago #18213 by Arkadiy
ADD / Edit item
does not work "Add a new tag"
The topic has been locked.
More
14 years 6 months ago #18221 by ggppdk

add:
i have 2 category:
"root" what must content flexi items
and other
"noFlexi" - for com_content articles
but in 1.5.4 version i have the parameter "root Flexi category" to select, and in 2.0 i cant understend how menaged this settings.
i found something similar in FlexiHiddenMenu, but still, if i set this in "root" and post com_content article in "noFlexi" category i have notification from flexi what i must bind it or change category

i just want to separete flexi and no flexi items
there are i wrong?


This change is because of Joomla J1.6/1.7 change to dump Sections:

J1.5 had sections, but J1.6/1.7+ do not have sections anymore

If we set a master category, we have a performance issue on sites with many articles:

Old com_content had a column called "section" so it was easy to filter items by section.

Now when querying com_content we would have to make a complex query to only get items that their category(ies) are under the FLEXI_CATEGORY only.

There are a couple ways to do it , such pre-calculate which categories are under the Flexi-Category. Do a query that has a:
colname IN (val1, val2, val3 ...) is very slow in mysql !!!

If you want some functionality about "No Flexi" Items lets discuss it. Maybe we can do something.

Regards


-- Flexicontent is Free but involves a big effort on our part.
Like the our support? (for a bug-free FC, despite having a long list of functions) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing with a 5-star review. Thanks!
The topic has been locked.
More
14 years 6 months ago #18234 by micker
Thanks for return its interesting for dev and community

FLEXIcontent is Free but involves a very big effort on our part.
Like the our support? (for a bug-free FC, despite being huge extension) Like the features? Like the ongoing development and future commitment to FLEXIcontent?
-- Add your voice to the FLEXIcontent JED listing reviews. Thanks![/size]
The topic has been locked.
Moderators: vistamediajoomlacornerggppdk
Cookies user preferences
We use cookies to ensure you to get the best experience on our website. If you decline the use of cookies, this website may not function as expected.
Accept all
Decline all
Essential
These cookies are needed to make the website work correctly. You can not disable them.
Display
Accept
Analytics
Tools used to analyze the data to measure the effectiveness of a website and to understand how it works.
Google Analytics
Accept
Decline
Save