Keyword

Advanced Search

Search Results (Searched for: Joomla K2 user extra fields)

  • Augusto Pissarra
  • Augusto Pissarra's Avatar
22 Oct 2009 16:42
Replied by Augusto Pissarra on topic How: Adding Extra Fields when User Submit Articles?

How: Adding Extra Fields when User Submit Articles?

Category: English K2 Community

I did NOT say do NOT use K2. K2 is NOT considered a full CCK, therefore, I just said that if anyone that is USING currently Joomla, wants a more advanced control like CCK, there are options.

Another point, I am NOT comparing Joomla with Drupal. If you want to do that, this is the wrong Forum.

Last, but not least, I do agree that K2 does not have the best support and I hope they find a way to give a better support (at a cost like anyone else does).

For now, I figure that K2 is left to their bolder experienced users that will give support as they find their way through the code and have the desire to share with everyone else.

Yamen Shahin said:What Mr "Augusto Pissarra" said: don't use K2, use jSeblod CCK. because "jSeblod" and K2 can't work together. K2 have its own articles.. jSeblod use standard Joomla articles type.
Ok, did any one know with drupal you can add custom field to your rss feeds? Yes, you can control every single detail in your site even your rss feeds.
Briefly:
Use Joomla if you want to run site depend mainly on administrator. and you want very easy way to manage your site.
Use Drupal if you want to make site let users "members" contribute easily on it. and you want to customize it a lot.. and you want custom field.
The only thing you need with Drupal is time -a lot of time - learn it more than joomla.
However, with Drupal when you ask the one how make a module he or she will never ignore your question.
  • Yamen Shahin
  • Yamen Shahin's Avatar
21 Oct 2009 05:50
Replied by Yamen Shahin on topic How: Adding Extra Fields when User Submit Articles?

How: Adding Extra Fields when User Submit Articles?

Category: English K2 Community

What Mr "Augusto Pissarra" said: don't use K2, use jSeblod CCK. because "jSeblod" and K2 can't work together.
K2 have its own articles.. jSeblod use standard Joomla articles type.
Ok, did any one know with drupal you can add custom field to your rss feeds? Yes, you can control every single detail in your site even your rss feeds.
Briefly:
Use Joomla if you want to run site depend mainly on administrator. and you want very easy way to manage your site.
Use Drupal if you want to make site let users "members" contribute easily on it. and you want to customize it a lot.. and you want custom field.
The only thing you need with Drupal is time -a lot of time - learn it more than joomla.
However, with Drupal when you ask the one how make a module he or she will never ignore your question.
  • JoomlaCommunity
  • JoomlaCommunity's Avatar
13 Oct 2009 18:58
Bugs and improvements in Translations was created by JoomlaCommunity

Bugs and improvements in Translations

Category: English K2 Community

While translating into Dutch I found a list of bugs, missing strings, strings not loaded etc.
I'll post a list here with suggested improvements and also attache a textfile with it (don't know if all the code will be accepted in the editor here).

If needed I could provide a package with adjusted files, just let me know


*Strings not loaded:

In component/language/admin/en-GB.com_k2.ini line 24, 25, 26, 27
# LEADING=# Leading
# LINKS=# Links
# PRIMARY=# Primary
# SECONDARY=# Secondary

These strings will not load properly, as they begin with # wich comment them out in a ini file.

Solution, remove the # in the labels in component/admin/models/category.xml and change the strings in component/language/admin/en-GB.com_k2.ini to:

LEADING=# Leading
LINKS=# Links
PRIMARY=# Primary
SECONDARY=# Secondary

* Wrong strings in component/language/admin/en-GB.com_k2.ini

line 149
SHOW BOTH INTROTEXT FULLTEXT=Show both introtext fulltext

should be

SHOW BOTH INTROTEXT & FULLTEXT=Show both introtext fulltext

line 235
FEATURED' NOTICE (NEXT TO TITLE)='Featured' notice (next to title)

should be

'FEATURED' NOTICE (NEXT TO TITLE)='Featured' notice (next to title)

line 343
READ MORE...' LINK='Read more...' link

should be

'READ MORE...' LINK='Read more...' link

line 354, 355 (same string double!)
SAVE & NEW=Save & New

should be

SAVE & NEW=Save & New

line 362
SOCIAL BUTTON' LIKE SHARETHIS, ADDTHIS ETC.='Social button' like ShareThis, AddThis etc.

should be
'SOCIAL BUTTON' LIKE SHARETHIS, ADDTHIS ETC.='Social button' like ShareThis, AddThis etc.

line 383
TWEET THIS' LINK='Tweet this' link

should be
'TWEET THIS' LINK='Tweet this' link

* Missing language strings in component/language/admin/en-GB.com_k2.ini:

CREATED BY=Created by
ITEM ID=Item ID
MODIFIED BY=Modified by
NOTICE: PLEASE INSTALL JOOMLAWORKS ALLVIDEOS PLUGIN IF YOU WANT TO USE THE VIDEO FEATURES OF K2!=Notice: Please install JoomlaWorks AllVideos plugin if you want to use the video features of K2!
NOTICE: PLEASE INSTALL JOOMLAWORKS SIMPLE IMAGE GALLERY (FREE/PRO) PLUGIN IF YOU WANT TO USE THE IMAGE GALLERY FEATURES OF K2!=Notice: Please install JoomlaWorks Simple Image Gallery (Free/Pro) plugin if you want to use the image gallery features of K2!

* String not loaded caused by a space at the end:

in component/admin/views/extrafieldsgroup/view.html.php line 26
JToolBarHelper::title(JText::_('Add/Edit Extra Field Group '));

should be
JToolBarHelper::title(JText::_('Add/Edit Extra Field Group'));

(remove the space at the end of the string)

* Missing language strings in modules/mod_k2_content/en-GB.mod_k2_content.ini

FETCH ITEMS FROM CHILDREN CATEGORIES=Fetch items from children categories
HIGHEST RATED=Highest rated


* Missing language strings in modules/mod_k2_tools/en-GB.mod-k2_tools.ini

CALENDAR SETTINGS=Calendar Settings
CATEGORY FILTER=Category filter


* For the plugins are no languagefiles yet.


* Extended user info in frontend in profile.php and register.php strings not loaded:

The language strings extended info like Gender, URL, User Avatar etc. will try to fetch the strings from com_user.ini. So to translate we have to hack this file, since language overrides are not allowed in 1.5. This isn't convenient, so a better solution would be to load the com_k2.ini

add to component/site/templates/profile.php on line 59 and in component/site/templates/register.php on line 61
?php JPlugin::loadLanguage( 'com_k2' ); ? (sorry this code won't show up the right way here, it should have <> around it, see also txt file attached)

to also load the strings Male, Female:
add JPlugin::loadLanguage( 'com_k2' ); in plugins/k2.php before lines 85 and 135

add these strings to component/language/site/en-GB.com_k2.ini
FEMALE=Female
MALE=Male
GENDER=Gender
UPLOAD NEW IMAGE TO REPLACE EXISTING AVATAR OR CHECK THIS BOX TO DELETE USER AVATAR=Upload new image to replace existing avatar or check this box to delete user avatar
URL=Url
USER AVATAR=User Avatar

Please fix this bugs so we can make proper translation packages.
Thanks!
  • Pakito
  • Pakito's Avatar
28 Sep 2009 14:48
Replied by Pakito on topic category saved but not in the listing

category saved but not in the listing

Category: English K2 Community

Hi,
Same problem here

Checking the database table jos_k2_categories I see my categories.

Exporting it as a INSERT:

INSERT INTO `jos_k2_categories` (`id`, `name`, `alias`, `description`, `parent`, `extraFieldsGroup`, `published`, `access`, `ordering`, `image`, `params`, `trash`, `plugins`) VALUES
(1, 'test', 'test', '', 0, 0, 1, 0, 1, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(2, 'kkkk', 'kkkk', '', 0, 0, 1, 0, 2, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(3, 'new category', 'new-category', '', 0, 0, 1, 0, 3, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(4, 'test', 'test', '', 0, 0, 1, 0, 4, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(5, 'Mi quinta categoria', 'mi-quinta-categoria', '', 0, 0, 1, 0, 5, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(6, 'Mi septimacategoria', 'mi-septimacategoria', '', 0, 0, 1, 1, 6, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, '');


I'm a newbie with Joomla & K2 so pardon me if this is not the report you asked.
. I did the following to turn on error reporting:
Site > Global configuration > System > Debug Settings (Yes)
Site > Global configuration > Server > Error Reporting (Maximum)


Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 221

Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 230

Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 254

Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 263

Warning: Parameter 4 to JHTMLMenu::treerecurse() expected to be a reference, value given in C:\wamp\www\joomla15k2\libraries\joomla\html\html.php on line 87


Warning: Invalid argument supplied for foreach() in C:\wamp\www\joomla15k2\administrator\components\com_k2\views\categories\tmpl\default.php on line 67


Profile Information
Application afterLoad: 0.006 seconds, 0.60 MB
Application afterInitialise: 0.117 seconds, 3.27 MB
Application afterRoute: 0.123 seconds, 3.48 MB
Application afterDispatch: 0.182 seconds, 4.97 MB
Application afterRender: 0.260 seconds, 7.04 MB
Memory Usage
7420976
15 queries logged.

1.
DELETE
FROM jos_session
WHERE ( time < '1253702592' )
2.
SELECT *
FROM jos_session
WHERE session_id = 'nga26k0g9c146usnpc0t5ke2r4'
3.
UPDATE `jos_session`
SET `time`='1253703492',`userid`='62',`usertype`='Super Administrator',`username`='admin',`gid`='25',`guest`='0',`client_id`='1'
WHERE session_id='nga26k0g9c146usnpc0t5ke2r4'
4.
SELECT *
FROM jos_components
WHERE parent = 0
5.
SELECT folder AS type, element AS name, params
FROM jos_plugins
WHERE published >= 1
AND access <= 2
ORDER BY ordering
6.
SELECT template
FROM jos_templates_menu
WHERE client_id = 1
AND menuid = 0
7.
SELECT c.*, g.name AS groupname, exfg.name AS extra_fields_group
FROM jos_k2_categories AS c
LEFT JOIN jos_groups AS g
ON g.id = c.access
LEFT JOIN jos_k2_extra_fields_groups AS exfg
ON exfg.id = c.extraFieldsGroup
WHERE c.id>0
AND c.trash=0
ORDER BY c.parent, c.ordering
8.
SELECT COUNT(*)
FROM jos_k2_categories
WHERE id>0
AND trash=0
AND published=1
9.
SELECT id, title, module, position, content, showtitle, control, params
FROM jos_modules AS m
LEFT JOIN jos_modules_menu AS mm
ON mm.moduleid = m.id
WHERE m.published = 1
AND m.access <= 2
AND m.client_id = 1
ORDER BY position, ordering
10.
SELECT a.*, SUM(b.home) AS home
FROM jos_menu_types AS a
LEFT JOIN jos_menu AS b
ON b.menutype = a.menutype
GROUP BY a.id
11.
SELECT *
FROM jos_components
WHERE `option` <> "com_frontpage"
AND `option` <> "com_media"
AND enabled = 1
ORDER BY ordering, name
12.
SELECT joomlatablename,tablepkID
FROM `jos_jf_tableinfo`
13.
SELECT *
FROM jos_languages
ORDER BY ordering
14.
SELECT COUNT(*)
FROM jos_messages
WHERE state = 0
AND user_id_to = 62
15.
SELECT COUNT( session_id )
FROM jos_session
WHERE guest <> 1

Language Files Loaded

* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.plg_system_debug.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_k2.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.tpl_khepri.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_submenu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_title.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_toolbar.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_contact.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_joomfish.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_k2.menu.ini
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_poll.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_search.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_banners.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_newsfeeds.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_weblinks.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_translate.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_status.ini 1

Untranslated Strings Diagnostic

None

Untranslated Strings Designer

None
  • Pakito
  • Pakito's Avatar
23 Sep 2009 14:17
Replied by Pakito on topic K2 Not working

K2 Not working

Category: English K2 Community

Hi .
I'm sorry but my problem is different. I do not get a completely blank screen but a screen with no categories on it.

Checking the database table jos_k2_categories I see my categories.

Exporting it as a INSERT:

INSERT INTO `jos_k2_categories` (`id`, `name`, `alias`, `description`, `parent`, `extraFieldsGroup`, `published`, `access`, `ordering`, `image`, `params`, `trash`, `plugins`) VALUES
(1, 'test', 'test', '', 0, 0, 1, 0, 1, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(2, 'kkkk', 'kkkk', '', 0, 0, 1, 0, 2, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(3, 'new category', 'new-category', '', 0, 0, 1, 0, 3, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(4, 'test', 'test', '', 0, 0, 1, 0, 4, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(5, 'Mi quinta categoria', 'mi-quinta-categoria', '', 0, 0, 1, 0, 5, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, ''),
(6, 'Mi septimacategoria', 'mi-septimacategoria', '', 0, 0, 1, 1, 6, '', 'inheritFrom=0\ntheme=\nnum_leading_items=2\nnum_leading_columns=1\nleadingImgSize=Large\nnum_primary_items=4\nnum_primary_columns=2\nprimaryImgSize=Medium\nnum_secondary_items=4\nnum_secondary_columns=1\nsecondaryImgSize=Small\nnum_links=4\nnum_links_columns=1\nlinksImgSize=XSmall\ncatCatalogMode=0\ncatFeaturedItems=1\ncatOrdering=\ncatPagination=2\ncatPaginationResults=1\ncatTitle=1\ncatTitleItemCounter=1\ncatDescription=1\ncatImage=1\ncatFeedLink=1\nsubCategories=1\nsubCatColumns=2\nsubCatOrdering=\nsubCatTitle=1\nsubCatTitleItemCounter=1\nsubCatDescription=1\nsubCatImage=1\nitemImageXS=\nitemImageS=\nitemImageM=\nitemImageL=\nitemImageXL=\ncatItemTitle=1\ncatItemTitleLinked=1\ncatItemFeaturedNotice=0\ncatItemAuthor=1\ncatItemDateCreated=1\ncatItemRating=0\ncatItemImage=1\ncatItemIntroText=1\ncatItemIntroTextWordLimit=\ncatItemExtraFields=0\ncatItemHits=0\ncatItemCategory=1\ncatItemTags=1\ncatItemAttachments=0\ncatItemAttachmentsCounter=0\ncatItemVideo=0\ncatItemImageGallery=0\ncatItemDateModified=0\ncatItemReadMore=1\ncatItemCommentsAnchor=1\ncatItemK2Plugins=1\nitemDateCreated=1\nitemTitle=1\nitemFeaturedNotice=1\nitemAuthor=1\nitemFontResizer=1\nitemPrintButton=1\nitemEmailButton=1\nitemSocialButton=1\nitemVideoAnchor=1\nitemImageGalleryAnchor=1\nitemCommentsAnchor=1\nitemRating=1\nitemImage=1\nitemImgSize=Large\nitemImageMainCaption=1\nitemImageMainCredits=1\nitemIntroText=1\nitemFullText=1\nitemExtraFields=1\nitemDateModified=1\nitemHits=1\nitemTwitterLink=1\nitemCategory=1\nitemTags=1\nitemShareLinks=1\nitemAttachments=1\nitemAttachmentsCounter=1\nitemRelated=1\nitemRelatedLimit=5\nitemVideo=1\nitemVideoCaption=1\nitemVideoCredits=1\nitemImageGallery=1\nitemNavigation=1\nitemComments=1\nitemAuthorBlock=1\nitemAuthorImage=1\nitemAuthorDescription=1\nitemAuthorURL=1\nitemAuthorEmail=1\nitemAuthorLatest=1\nitemAuthorLatestLimit=5\nitemK2Plugins=1\n\n', 0, '');


I'm a newbie with Joomla & K2 so pardon me if this is not the report you asked.
. I did the following to turn on error reporting:
Site > Global configuration > System > Debug Settings (Yes)
Site > Global configuration > Server > Error Reporting (Maximum)


Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 221

Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 230

Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 254

Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\joomla15k2\administrator\components\com_joomfish\classes\JoomfishManager.class.php on line 263

Warning: Parameter 4 to JHTMLMenu::treerecurse() expected to be a reference, value given in C:\wamp\www\joomla15k2\libraries\joomla\html\html.php on line 87


Warning: Invalid argument supplied for foreach() in C:\wamp\www\joomla15k2\administrator\components\com_k2\views\categories\tmpl\default.php on line 67


Profile Information
Application afterLoad: 0.006 seconds, 0.60 MB
Application afterInitialise: 0.117 seconds, 3.27 MB
Application afterRoute: 0.123 seconds, 3.48 MB
Application afterDispatch: 0.182 seconds, 4.97 MB
Application afterRender: 0.260 seconds, 7.04 MB
Memory Usage
7420976
15 queries logged.

1.
DELETE
FROM jos_session
WHERE ( time < '1253702592' )
2.
SELECT *
FROM jos_session
WHERE session_id = 'nga26k0g9c146usnpc0t5ke2r4'
3.
UPDATE `jos_session`
SET `time`='1253703492',`userid`='62',`usertype`='Super Administrator',`username`='admin',`gid`='25',`guest`='0',`client_id`='1'
WHERE session_id='nga26k0g9c146usnpc0t5ke2r4'
4.
SELECT *
FROM jos_components
WHERE parent = 0
5.
SELECT folder AS type, element AS name, params
FROM jos_plugins
WHERE published >= 1
AND access <= 2
ORDER BY ordering
6.
SELECT template
FROM jos_templates_menu
WHERE client_id = 1
AND menuid = 0
7.
SELECT c.*, g.name AS groupname, exfg.name AS extra_fields_group
FROM jos_k2_categories AS c
LEFT JOIN jos_groups AS g
ON g.id = c.access
LEFT JOIN jos_k2_extra_fields_groups AS exfg
ON exfg.id = c.extraFieldsGroup
WHERE c.id>0
AND c.trash=0
ORDER BY c.parent, c.ordering
8.
SELECT COUNT(*)
FROM jos_k2_categories
WHERE id>0
AND trash=0
AND published=1
9.
SELECT id, title, module, position, content, showtitle, control, params
FROM jos_modules AS m
LEFT JOIN jos_modules_menu AS mm
ON mm.moduleid = m.id
WHERE m.published = 1
AND m.access <= 2
AND m.client_id = 1
ORDER BY position, ordering
10.
SELECT a.*, SUM(b.home) AS home
FROM jos_menu_types AS a
LEFT JOIN jos_menu AS b
ON b.menutype = a.menutype
GROUP BY a.id
11.
SELECT *
FROM jos_components
WHERE `option` <> "com_frontpage"
AND `option` <> "com_media"
AND enabled = 1
ORDER BY ordering, name
12.
SELECT joomlatablename,tablepkID
FROM `jos_jf_tableinfo`
13.
SELECT *
FROM jos_languages
ORDER BY ordering
14.
SELECT COUNT(*)
FROM jos_messages
WHERE state = 0
AND user_id_to = 62
15.
SELECT COUNT( session_id )
FROM jos_session
WHERE guest <> 1

Language Files Loaded

* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.plg_system_debug.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_k2.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.tpl_khepri.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_submenu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_title.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_toolbar.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_contact.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_joomfish.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_k2.menu.ini
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_poll.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_search.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_banners.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_newsfeeds.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.com_weblinks.menu.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_translate.ini 1
* C:\wamp\www\joomla15k2\administrator\language\en-GB\en-GB.mod_status.ini 1

Untranslated Strings Diagnostic

None

Untranslated Strings Designer

None
  • Albert
  • Albert's Avatar
19 Aug 2009 16:55

k2 could use some things from Jreviews

Category: English K2 Community

For those not familiar with Jreviews, it is a complex CCK review system, that can be used for much more than just a review system. The only problem is that it costs over $100, and it encrypted. Even though it is encrypted (templates are not), it CCK and templates are well built you do not need to edit the encoded files.
First of all, the coding in k2 template looks scary. I'm glad I have Dreamweaver to make sense of it :). Take a look at image below. The image is equivalent to k2's extra fields menu. Obviously jreviews has more, since it has been around longer. These are things I would like to see...

1. Output Format - see how I can take the value of a extra field and wrap it around anything I want with the {FIELDTEXT}. In the example image I made a input field where a users enters the Blip.tv ID video number, and then I automatically embed it. These means I would not need a blip.tv plugin nor need to edit the template files.
2. Field access - This can be used with the above so in the back-end I could enter an affiliate link and restrict only admins to see that field.

Here is a video tutorial how jreviews uses custom fields www.reviewsforjoomla.com/videos/4.Custom-Fields.htm they highlight what I am talking about.
  • Mark Banks
  • Mark Banks's Avatar
07 Aug 2009 12:37
Extension Request was created by Mark Banks

Extension Request

Category: English K2 Community

From Fotis' K2 Stable Blog entry:
''simple Joomla! plugins that extend the item, category and user forms, providing more freedom compared to the "extra fields" feature''

Any advice on how to create an extension to add a couple of additional form fields (text fields) to the default ITEM form?

i.e.
Item Property ID
Item Property Price

Mark
  • Jeff Whitmore
  • Jeff Whitmore's Avatar
10 Jul 2009 19:26

Using Extra Fields with a custom php script loaded via jumi?

Category: English K2 Community

I've been a Jumi user for awhile now. It makes adding custom php scripts a snap in Joomla.

You used to be able to make fairly simple arrays inside your Joomla content. They recently updated Jumi though so the old method of making arrays doesn't work anymore

An example of the old Jumi method for adding an array to your Joomla content for your custom php script to use.

{jumi [modules/mod_jumi/jumi_instrument.php]
0. Model [25th Anniversary]
1. Size [12" wide, 1" thick, 37" long]
2. Weight [7 lbs, 0 oz]
3. Body Wood [Chambered basswood]
}

Basically the old plugin recognized the first set of square brackets was your custom php script and then the remaining sets of square bracketed items become your array for your php script.

The new Jumi has changed the method for creating arrays. It's not a whole lot different but different enough it will confuse my non-technically inclined content maintainers.

I've never really liked the way I had to create those arrays anyways. If one of my content maintainers accidentally delete a opening or closing square bracket then it would mess things up.

K2 seems to be a perfect solution for entering the data.

I really want to use K2 and the extra fields to store the data. I noticed if I create the extra fields in K2 then it gets stored in a field in the db.

[{"id":"1","value":"25th Anniversary"},{"id":"2","value":"12\" wide, 1\" thick, 37\" long"},{"id":"3","value":"7 lbs, 0 oz"},{"id":"4","value":"Chambered basswood"}]

Is there a simple pre built K2 method or K2 function I can call to clean that up and parse or explode that into a php array?

I could take the time to write my own but If there is something simple using already written K2 code that would be awesome!
Displaying 241 - 248 out of 248 results.

Powered by Kunena Forum