Keyword

Advanced Search

Search Results (Searched for: k2 Tag)

  • Matt
  • Matt's Avatar
09 Jan 2012 00:23

Tag Page Creating Duplicate URLs with sh404SEF

Category: English K2 Community

I am having the same issue. Serious help is required here. If that is not solved then this means that K2's tag features is worthless for sites with good SEO.
  • Odin Mayland
  • Odin Mayland's Avatar
08 Jan 2012 21:26
Replied by Odin Mayland on topic K2 item image media management for client

K2 item image media management for client

Category: English K2 Community

I'm curious how you and others deal with low tech clients that want to update their large sites regularly.

Its a tough call for me because I like K2 for the integrated image/video/tags/popups but with Joomla 2.5 around the corner and I'm thinking that for the client all j2.5 is missing is the taggins system.

I' at the beginning of building this large site, so I could change gears and not use K2, but I sold the client on the tagging....
  • wandelwiki
  • wandelwiki's Avatar
08 Jan 2012 20:52
problem with cache and php safe mode was created by wandelwiki

problem with cache and php safe mode

Category: Simple Image Gallery PRO

Hello,
I bought the Simple Image Gallery Pro and installing went perfect but now i can't use the plugin because i have a problem concerning cache.

The cache folder on my server is writable but i always get following error messages:

There was a problem rendering your image gallery. Please make sure that the folder you are using in the Simple Image Gallery Pro plugin tags exists and contains valid image files. The plugin could not locate the folder: images/stories/fotogalerij/trolltunga

Warning: imagejpeg() [function.imagejpeg]: SAFE MODE Restriction in effect. The script whose uid is 10092 is not allowed to access /var/www/vhosts/mydomain/httpdocs/cache/jw_sigpro owned by

I made contact with my hosting company and the say dat this is due the PHP SAFE MODE is ON. They said to me that setting this mode off will cause some security problems.

Could someone give me a solution fot this because this error is also taking effect on my integration with K2

Thanks from a newbie.
  • Eduard Evers
  • Eduard Evers's Avatar
08 Jan 2012 17:40
Simple image gallery Pro was created by Eduard Evers

Simple image gallery Pro

Category: English K2 Community

I have installed the latest version of simple image gallery pro on joomla 1.7.3 with K2, activated the plug-in but I only see the tags {gallery}file{/gallery} on the published page.

Have someone a idea what to do ?
  • Scott Tuchman
  • Scott Tuchman's Avatar
05 Jan 2012 18:34 - 05 Jan 2012 18:36
Why is the formatting being stripped away. was created by Scott Tuchman

Why is the formatting being stripped away.

Category: English K2 Community

Here's the Category view - www.sdeccc.org/index.php?option=com_k2&view=itemlist&task=category&id=9:board-of-directors&Itemid=236


Here's the Item view - www.sdeccc.org/index.php?option=com_k2&view=item&id=21:joe-mackey-outgoing-chair&Itemid=236



Notice how the info to the left of the image is correct on the item page but is all one sentence on the category page. It seems as if all the <p></p> tags are being stripped away in Category view. What's going on with this?
  • Boris Sehovac
  • Boris Sehovac's Avatar
05 Jan 2012 15:42
List tags found in items of specific category? was created by Boris Sehovac

List tags found in items of specific category?

Category: English K2 Community

i have a k2 dynamap component, which have tag search, but when i open some category it then lists all tags from k2. i need it to list only tags found in items from that category...

here is query settings from php:



$curtag = JRequest::getCmd('tag');
$catid = $params->get('catid');

$user = &JFactory::getUser();
$aid = $user->get('aid');
$db = &JFactory::getDBO();

$jnow = &JFactory::getDate();
$now = $jnow->toMySQL();
$nullDate = $db->getNullDate();

$query = "SELECT t.name, t.id ";
$query .= " FROM #__k2_tags as t";
$query .= " LEFT JOIN #__k2_tags_xref tags_xref ON tags_xref.tagID = t.id";
$query .= " LEFT JOIN #__k2_items i ON tags_xref.itemID = i.id";
$query .= " LEFT JOIN #__k2_categories c ON c.id = i.catid";
$query .= " WHERE t.published=1 ";
$query .= " AND i.published=1 ";
$query .= " AND ( i.publish_up = ".$db->Quote($nullDate)." OR i.publish_up <= ".$db->Quote($now)." ) ";
$query .= " AND ( i.publish_down = ".$db->Quote($nullDate)." OR i.publish_down >= ".$db->Quote($now)." )";
$query .= " AND i.trash=0 ";
$query .= " AND i.access <= {$aid}";
$query .= " AND c.published=1 ";
$query .= " AND c.trash=0 ";
$query .= " AND c.access <= {$aid} ";
$query .= " ORDER BY t.name ASC ";
$db->setQuery($query);

$rows = $db->loadResultArray();

$cloud = array();

if (count($rows)) {
foreach ($rows as $tag) {
if (@array_key_exists($tag, $cloud)) { $cloud[$tag]++; }
else { $cloud[$tag] = 1; }
}
}

return $cloud;
  • meysam heydari
  • meysam heydari's Avatar
04 Jan 2012 11:40 - 07 Jan 2012 08:35
illegal left position movement to other position was created by meysam heydari

illegal left position movement to other position

Category: English K2 Community

hello
i am using joomla 1.5.25 and k2 2.4.1 in my website and i have some problems in some k2 tag items listing page, in some of tag pages my left position has a an illegal movement and comes around center bottom of the page. but in some of tag pages it is doing well without this issue.

it doesn't seem to be template issue or css problem.
and sh404sef enabled or disabled, hasn't any affect to this issue, i am really confused that i dont know what is causing this problem.
is there any idea about this?

you can check it yourself from these links:

k2 tag page with problem


k2 tag page without problem




my website language is arabic.
  • Matt
  • Matt's Avatar
03 Jan 2012 19:05

How to add comments counter in the tag view page

Category: English K2 Community

The tag view page of K2 is somewhat limited compared to the category page. I want to add the same comments counter from the category view page to the tag view page.

I tried to put this code in the tag.php:
<?php if($this->item->params->get('catItemCommentsAnchor') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?> <!-- Anchor link to comments below --> <div class="catItemCommentsLink"> <?php if(!empty($this->item->event->K2CommentsCounter)): ?> <!-- K2 Plugins: K2CommentsCounter --> <?php echo $this->item->event->K2CommentsCounter; ?> <?php else: ?> <?php if($this->item->numOfComments > 0): ?> <a href="<?php echo $this->item->link; ?>#itemCommentsAnchor"> <?php echo $this->item->numOfComments; ?> <?php echo ($this->item->numOfComments>1) ? JText::_('K2_COMMENTS') : JText::_('K2_COMMENT'); ?> </a> <?php else: ?> <a href="<?php echo $this->item->link; ?>#itemCommentsAnchor"> <?php echo JText::_('K2_BE_THE_FIRST_TO_COMMENT'); ?> </a> <?php endif; ?> <?php endif; ?> </div> <?php endif; ?>

But that doesn't work and messes up the whole layout. Can someone show me the correct code I have to add in the tag.php file?
  • Kuniva Adrian
  • Kuniva Adrian's Avatar
03 Jan 2012 13:08
too many tags problem was created by Kuniva Adrian

too many tags problem

Category: English K2 Community

Hello everyone ! i ve just imported all my content from joomla core into k2 and noticed that about 300,000 tags were created and associated with my articles .

i am trying to find a Mysql command to delete the tags that are not in article's titles both from __k2_tags and __k2_tags_xref tables .

Can somebody help me ?

Thank you !
  • Jereme
  • Jereme's Avatar
02 Jan 2012 22:07

Tag Page Creating Duplicate URLs with sh404SEF

Category: English K2 Community

I have update Joomla to version 1.7.3 and K2 to version 2.5.4 and I'm still seeing this issue. Is this normal? Should there be multiple URLs pointing to the same tag page in K2?
  • Eyal Kattan
  • Eyal Kattan's Avatar
02 Jan 2012 03:55 - 02 Jan 2012 04:10
Replied by Eyal Kattan on topic Related Items

Related Items

Category: English K2 Community

Ok, let try a different approach.

I created a new K2-Tools module for custom code. I copied the following code from item.php into the custom code text field in the module.

Now the page crashes in the browser. Obviously I'm missing something.

Can anyone help?

Thanks,

Eyal





<?php if($this->item->params->get('itemRelated') && isset($this->relatedItems)): ?>
<!-- Related items by tag -->
<ul>
<?php foreach($this->relatedItems as $key=>$item): ?>
<li class="<?php echo ($key%2) ? "odd" : "even"; ?>">

<?php if($this->item->params->get('itemRelatedImage')): ?>
<div class="itemRelImage"><?php echo $item->image; ?></div>
<?php endif; ?>

<?php if($this->item->params->get('itemRelatedTitle', 1)): ?>
<a class="itemRelTitle" href="<?php echo $item->link ?>"><?php echo $item->title; ?></a>
<?php endif; ?>
</li>
<?php endforeach; ?>
<li class="clr"></li>
</ul>
  • gaker
  • gaker's Avatar
01 Jan 2012 21:03

word limit in intros in latest articles from cat

Category: English K2 Community

William White wrote: If the text showing in the category view is too much for you, i would try in an override using a substring php statement around the text that you are wanting to limit.

hello,
thank you for reply

Is there any option avalaible? Is it any article how create similar substring?

I would like to limit text in the intro to about 150 words WITHOUT setting the tag in artictle body. I would like to use this on the index.php?option=com_k2&view=latest&layout=latest --- view - latest from user or category. Im using this layout as my start page.

Im building site with content from the normal users, not professional editors and they dont know how to use these options.
  • Eyal Kattan
  • Eyal Kattan's Avatar
30 Dec 2011 22:05
Related Items was created by Eyal Kattan

Related Items

Category: English K2 Community

Hi All,

I am new to K2 so please spare me if I ask stupid questions. ;-)

I am trying to create a TAG based related items. I saw that by default, K2 shows the related items at the bottom of the page, right below the content area.

I am using a template that has a special position that I would like to use for the related items. How can I change the assigned position of the related items to the one defined by the template?

Or alternatively, I created a module that shows a category in this position but it doesn't filter the items based on Tags. Would it be easier to add filtration to this module? and how do I do this?

Thanks in advance.

-Eyal
  • Matthew Tollin
  • Matthew Tollin's Avatar
30 Dec 2011 21:14
issues w my k2 admin menus was created by Matthew Tollin

issues w my k2 admin menus

Category: English K2 Community

getting this error message. think a certain plug-in is causing things to go screwy..

TableK2Category: :store failed
Table 'JB_Newstream.ukbtg_k2_categories' doesn't exist SQL=INSERT INTO `ukbtg_k2_categories` (`id`,`name`,`alias`,`description`,`parent`,`published`,`access`,`ordering`,`params`,`language`) VALUES ('','K2 plug in modules','k2-plug-in-modules','','0','1','1','','{\"inheritFrom\":\"0\",\"theme\":\"\",\"num_leading_items\":\"2\",\"num_leading_columns\":\"1\",\"leadingImgSize\":\"Large\",\"num_primary_items\":\"4\",\"num_primary_columns\":\"2\",\"primaryImgSize\":\"Medium\",\"num_secondary_items\":\"4\",\"num_secondary_columns\":\"1\",\"secondaryImgSize\":\"Small\",\"num_links\":\"4\",\"num_links_columns\":\"1\",\"linksImgSize\":\"XSmall\",\"catCatalogMode\":\"0\",\"catFeaturedItems\":\"1\",\"catOrdering\":\"\",\"catPagination\":\"2\",\"catPaginationResults\":\"1\",\"catTitle\":\"1\",\"catTitleItemCounter\":\"1\",\"catDescription\":\"1\",\"catImage\":\"1\",\"catFeedLink\":\"1\",\"catFeedIcon\":\"1\",\"subCategories\":\"1\",\"subCatColumns\":\"2\",\"subCatOrdering\":\"\",\"subCatTitle\":\"1\",\"subCatTitleItemCounter\":\"1\",\"subCatDescription\":\"1\",\"subCatImage\":\"1\",\"itemImageXS\":\"\",\"itemImageS\":\"\",\"itemImageM\":\"\",\"itemImageL\":\"\",\"itemImageXL\":\"\",\"catItemTitle\":\"1\",\"catItemTitleLinked\":\"1\",\"catItemFeaturedNotice\":\"0\",\"catItemAuthor\":\"1\",\"catItemDateCreated\":\"1\",\"catItemRating\":\"0\",\"catItemImage\":\"1\",\"catItemIntroText\":\"1\",\"catItemIntroTextWordLimit\":\"\",\"catItemExtraFields\":\"0\",\"catItemHits\":\"0\",\"catItemCategory\":\"1\",\"catItemTags\":\"1\",\"catItemAttachments\":\"0\",\"catItemAttachmentsCounter\":\"0\",\"catItemVideo\":\"0\",\"catItemVideoWidth\":\"\",\"catItemVideoHeight\":\"\",\"catItemAudioWidth\":\"\",\"catItemAudioHeight\":\"\",\"catItemVideoAutoPlay\":\"0\",\"catItemImageGallery\":\"0\",\"catItemDateModified\":\"0\",\"catItemReadMore\":\"1\",\"catItemCommentsAnchor\":\"1\",\"catItemK2Plugins\":\"1\",\"itemDateCreated\":\"1\",\"itemTitle\":\"1\",\"itemFeaturedNotice\":\"1\",\"itemAuthor\":\"1\",\"itemFontResizer\":\"1\",\"itemPrintButton\":\"1\",\"itemEmailButton\":\"1\",\"itemSocialButton\":\"1\",\"itemVideoAnchor\":\"1\",\"itemImageGalleryAnchor\":\"1\",\"itemCommentsAnchor\":\"1\",\"itemRating\":\"1\",\"itemImage\":\"1\",\"itemImgSize\":\"Large\",\"itemImageMainCaption\":\"1\",\"itemImageMainCredits\":\"1\",\"itemIntroText\":\"1\",\"itemFullText\":\"1\",\"itemExtraFields\":\"1\",\"itemDateModified\":\"1\",\"itemHits\":\"1\",\"itemCategory\":\"1\",\"itemTags\":\"1\",\"itemAttachments\":\"1\",\"itemAttachmentsCounter\":\"1\",\"itemVideo\":\"1\",\"itemVideoWidth\":\"\",\"itemVideoHeight\":\"\",\"itemAudioWidth\":\"\",\"itemAudioHeight\":\"\",\"itemVideoAutoPlay\":\"0\",\"itemVideoCaption\":\"1\",\"itemVideoCredits\":\"1\",\"itemImageGallery\":\"1\",\"itemNavigation\":\"1\",\"itemComments\":\"1\",\"itemTwitterButton\":\"1\",\"itemFacebookButton\":\"1\",\"itemGooglePlusOneButton\":\"1\",\"itemAuthorBlock\":\"1\",\"itemAuthorImage\":\"1\",\"itemAuthorDescription\":\"1\",\"itemAuthorURL\":\"1\",\"itemAuthorEmail\":\"0\",\"itemAuthorLatest\":\"1\",\"itemAuthorLatestLimit\":\"5\",\"itemRelated\":\"1\",\"itemRelatedLimit\":\"5\",\"itemRelatedTitle\":\"1\",\"itemRelatedCategory\":\"0\",\"itemRelatedImageSize\":\"0\",\"itemRelatedIntrotext\":\"0\",\"itemRelatedFulltext\":\"0\",\"itemRelatedAuthor\":\"0\",\"itemRelatedMedia\":\"0\",\"itemRelatedImageGallery\":\"0\",\"itemK2Plugins\":\"1\",\"catMetaDesc\":\"\",\"catMetaKey\":\"\",\"catMetaRobots\":\"\",\"catMetaAuthor\":\"\"}','*')
  • Martin Beaumont
  • Martin Beaumont's Avatar
30 Dec 2011 07:35

Another post about 'problem converting the source image' error

Category: Simple Image Gallery PRO

ok some progress in getting SIG to work, just not with K2 integration ..

If I set the Root folder for image galleries to be images/stories/galleries and then insert the tags {gallery}73{/gallery} then everything works.

This suggests to me that SIG is working, but SIG integration with K2 isn't working. I'm using K2 2.5.4.

Any ideas or suggestions ?
  • Martin Beaumont
  • Martin Beaumont's Avatar
30 Dec 2011 06:40

Another post about 'problem converting the source image' error

Category: Simple Image Gallery PRO

Hi there,

Like a lot of folks new to SIG Pro, I too am having issues getting the gallery to display in my K2 item. As usual the error message is -

        The was a problem converting the source image.
        There was a problem rendering your image gallery. Please make sure that the folder you are using in the Simple Image Gallery Pro plugin tags exists and contains valid image files. The plugin could not locate the folder: media/k2/galleries/73

I have ensured the plugin is published, I have set the root folder for image galleries  to media/k2/galleries/

I have set the permissions on the galleries folder to 777 as well as the sub dir 73 (also to 777) I'm not sure how secure using 777 on any Joomla site is ??

I'm running Joomla 1.5.25, SIG Pro 2.5.6, PHP 5.2.17

Any suggestions that might resolve this ?
  • Dorina Grossu
  • Dorina Grossu's Avatar
28 Dec 2011 21:56 - 28 Dec 2011 22:16

Re: I installed Simple Image Gallery Pro (plug-in)

Category: English K2 Community

So, I paid for the download therefore it seems that it should work. I added the Flickr but when I add the compressed zipped file to Image Gallery it still does not upload it. I only tried with two pdf picture but it still does not work. Where else should I check? thank you, :silly:

I tried to load from Flickr and this is the message that I received:
"There was a problem rendering your image gallery. Please make sure that the folder you are using in the Simple Image Gallery Pro plugin tags exists and contains valid image files. The plugin could not locate the folder:"

As I said, there is no error when I tried to upload the folder saved on my computer since it does not save it at all, it only tries to save it.

check: www.bitspec.com under K2 (bottom)
  • eNJoy
  • eNJoy's Avatar
28 Dec 2011 06:58

Frontend editing form: Extra fields only

Category: English K2 Community

Hello K2'ers;-)

On my site, I would like to limit the editable items on the frontend to be tags and extra fields only. It is my understanding that there are no settings to control this behavior, I wonder if someone could point me to which file that I might need to look and hack.

BTW, the controllable items are:
Image tab
Image gallery tab
Media tab
'Extra fields' tab
Attachments tab
K2 plugin fields
Default state for the item form sidebar

Obviously the content tab is not hide-able here, neither are the title, alias, categories, etc., fields.
  • David
  • David's Avatar
27 Dec 2011 20:20

K2 Videos Do Not Play - Sit and Spin

Category: English K2 Community

I am having a problem with K2 Videos (Locally hosted) not playing in my k2 articles. The video loads but never plays. See attachment:

I have tried disable plugins, moving plugins around all without success. Can someone please help point me in the right direction to solve this problem.

Thanks and let me know if more information is required. Will PM.


Template: Rockettheme (Crystalline) 1.5.10 w Gantry 3.1.18
Joomla 1.5.25
PHP 5.2.17
Allvideos Plugin: 4.1
K2 v2.5.4
Simple Image Gallery Pro 2.5.6
Mootools Systems Upgrade: 1.2.5

Safe Mode: Off
Open basedir: None
Display Errors: On
Short Open Tags: On
File Uploads: On
Magic Quotes: On
Register Globals: Off
Output Buffering: Off
Session Save Path: None
Session Auto Start: 0
XML Enabled: Yes
Zlib Enabled: Yes
Disabled Functions: show_source, system, passthru, phpinfo, popen, proc_open
Mbstring Enabled: Yes
Iconv Available: Yes
WYSIWYG Editor: Editor - JCE



Other Components Installed

Akeeba BAckup
RSFirewall
JEvents
RSForm
  • Andrey Miasoedov
  • Andrey Miasoedov's Avatar
24 Dec 2011 19:28
Replied by Andrey Miasoedov on topic Tags

Tags

Category: English K2 Community

Hello, Joanna.

It has a limited tags for display, modify it in mod_k2_tools properties (30 by default).
Displaying 4641 - 4660 out of 6582 results.

Powered by Kunena Forum