Keyword

Advanced Search

Search Results (Searched for: Upgrade k2)

  • doctorweb
  • doctorweb's Avatar
13 Jun 2018 10:52

After upgrade K2 2.80 don't show correctly module in administrator

Category: English K2 Community

Thanks Krikor,
but if I wrote you it is because "joomlavi" no longer exists.
  • doctorweb
  • doctorweb's Avatar
13 Jun 2018 10:52

After upgrade K2 2.80 don't show correctly module in administrator

Category: English K2 Community

Thanks Krikor,
but if I wrote you it is because "oomlavi" no longer exists.
  • doctorweb
  • doctorweb's Avatar
13 Jun 2018 10:52

After upgrade K2 2.80 don't show correctly module in administrator

Category: English K2 Community

Thanks Krikor,
but if I wrote you it is because "oomlavi" no longer exists.
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
29 May 2018 13:04

After upgrade K2 2.80 don't show correctly module in administrator

Category: English K2 Community

Hello,

This is related to an obsolete module created by Joomlavi, you need to address this issue to the module's developers. Chances are that there should be an update available.
  • doctorweb
  • doctorweb's Avatar
25 May 2018 18:24

After upgrade K2 2.80 don't show correctly module in administrator

Category: English K2 Community

Hi sorry for my english,
after upgrade K2 2.80 don't show correctly module in administrator (look the attachments).
I have joomla 3.8.8 with Php 7 . Template is "JV ALLINONE " with "JV framework"
I verified that the problem is in the file: plugins/system/jvframework/framework/extensions/module_assignment/module_assignment.php
The error is: "Error: 0 Call to undefined method K2HelperHTML::loadjQuery()" (look the attachments).

someone can check the code ?
THANKS
<?php /** # JV Framework # @version 2.5.x # ------------------------------------------------------------------------ # author Open Source Code Solutions Co # copyright Copyright (C) 2011 joomlavi.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL or later. # Websites: http://www.joomlavi.com # Technical Support: http://www.joomlavi.com/my-tickets.html */ defined ( '_JEXEC' ) or die ( 'Restricted access' ); class JVFrameworkExtensionModule_assignment extends JVFrameworkExtension{ public static $query = null; public function onGetModules(&$modules) { if(JFactory::getApplication()->input->getBool('tp')) return true; foreach ( $modules as $index => $module ) { if($this->checkCustom($module)) $module->title = $this->customTitle($module->title); if(!$this->assigmentCheck($module)){ unset($modules[$index]); } } } public function checkCustom($module){ $params = new JRegistry ( $module->params ); $moduleAssignments = $params->get('module_assignment'); return !empty($moduleAssignments->content->customtitle->custom); } public function customTitle($title){ if($this->hasSpan($title)) return $title; $sub = $tt = ''; $title = explode('||',$title); if($title[1]) $sub = '<em>'.$title[1].'</em>'; $first = $last = explode(' ',$title[0]); array_shift($last); if($last) $tt = implode(' ',$last); $ttMod = '<span>'.$first[0].'</span> '.$tt.$sub; return $ttMod; } public function hasSpan($title){ $preg = '/<span>/i'; return preg_match($preg, $title); } public function assigmentCheck($module){ // get active menu $active = JFactory::getApplication()->getMenu()->getActive(); if(!$active){ $active = JFactory::getApplication()->getMenu()->getDefault(); } $menuQuery = $this->getQuery(); $load = false; // by menu item id $itemid = $this->getItemid($module->id); if(in_array($active->id, $itemid)) $load = true; if(isset($module->menuid)){ if($active->id == $module->menuid || ($module->menuid <= 0 && $module->menuid != '')){ $load = true; } } // by url query $params = new JRegistry ( $module->params ); $moduleAssignments = $params->get('module_assignment'); $include = $exclude = array(); if($moduleAssignments){ foreach($moduleAssignments as $assigns){ foreach($assigns as $assign){ if(@$assign->enable) { $isMenuItem = true; if(isset($assign->query) && is_object($assign->query)){ foreach($assign->query as $key => $value){ $json = '{}'; if(isset($menuQuery[$key])){ if(is_array($value)){ foreach($value as &$val){ if(preg_match('#::#i', $val)){ list($val, $json) = explode('::', $val); } } if(!in_array($menuQuery[$key], array_values($value))){ $isMenuItem = false; break; } }else{ if(preg_match('#::#i', $value)){ list($value, $json) = explode('::', $value); } if($value && !$menuQuery[$key] == $value){ $isMenuItem = false; break;} } $json = json_decode($json); foreach($json as $k => $v){ $assign->query->$k = $v; } }else{ $isMenuItem = false; break; } } } if($isMenuItem){ if($assign->include){ $include[] = $assign->query; }else{ $exclude[] = $assign->query; } } } } } } if(count($exclude)){ $load = false; }elseif(count($include)){ $load = true; } return $load; } public function getQuery(){ if(is_null(self::$query)){ // For sef $query = $_REQUEST; /* if(!count($query)){ $menu = $application->getMenu(); $query = $menu->getActive()->query; } if(!isset($query['layout'])){ $query['layout'] = $application->input->get('layout'); } */ foreach($query as &$val){ if(is_string($val)){ $val = current(explode(':', $val)); } } self::$query = $query; } return self::$query; } // Add parameter public function onContentPrepareForm($form, $data) { if ((JFactory::getApplication()->input->get ( 'option' ) == 'com_modules' || JFactory::getApplication()->input->get ( 'option' ) =='com_advancedmodules') && JFactory::getApplication()->input->get ( 'layout' ) == 'edit') { JHtml::_('jquery.framework'); $doc = JFactory::getDocument(); if(version_compare(JVERSION, '3', '>=')){ Jhtml::_('bootstrap.framework'); $doc->addScript(JUri::root(true).'/media/jui/js/chosen.jquery.min.js'); } $doc->addScript($this['path']->url('extensions::module_assignment/assets/admin/js/module.js')); $doc->addStyleSheet($this['path']->url('extensions::module_assignment/assets/admin/css/module.css')); $form->loadFile ( dirname ( __FILE__ ) . '/config/content.xml' ); $hasK2 = is_dir(JPATH_ADMINISTRATOR.'/components/com_k2/elements'); if($hasK2){ $form->addFieldPath(JPATH_ADMINISTRATOR.'/components/com_k2/elements'); $form->loadFile ( dirname ( __FILE__ ) . '/config/k2.xml' ); } $form->addFieldPath(dirname ( __FILE__ ) . '/fields'); } } public function getItemid($menuid){ $db = JFactory::getDbo(); $db->setQuery("SELECT menuid FROM #__modules_menu WHERE moduleid='$menuid'"); $items = $db->loadObjectList(); $itemid = array(); foreach($items as $item) $itemid[] = $item->menuid; return $itemid; } } 
  • doctorweb
  • doctorweb's Avatar
25 May 2018 18:08

Dopo upgrade K2 2.80 non si visualizzano correttamente i moduli nel backend

Category: Comunità italiana K2

Salve,
dopo l'upgrade a K2 2.80 non visualizzo più correttamente i moduli nell'amministratore di Joomla.
- Versione di Joomla: 3.8
- Versione di PHP: 7
Sul sito è istallato il template "Jv All in One" con il framework "Jv framework" lo sviluppatore purtroppo è sparito.
Da verifiche fatte sembra che il problema è causato da questo file del framework:
plugins/system/jvframework/framework/extensions/module_assignment/module_assignment.php
C'è qualche incompatibilità per cui da un errore "Error: 0 Call to undefined method K2HelperHTML::loadjQuery()" da registro errore del server sembra ci si verifichi un errore 500.

Qualcuno sa dare un occhiata al codice e capire cosa provoca l'errore ?
In allegato uno screenshot che evidenzia il problema

GRAZIE

 <?php /** # JV Framework # @version 2.5.x # ------------------------------------------------------------------------ # author Open Source Code Solutions Co # copyright Copyright (C) 2011 joomlavi.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL or later. # Websites: http://www.joomlavi.com # Technical Support: http://www.joomlavi.com/my-tickets.html */ defined ( '_JEXEC' ) or die ( 'Restricted access' ); class JVFrameworkExtensionModule_assignment extends JVFrameworkExtension{ public static $query = null; public function onGetModules(&$modules) { if(JFactory::getApplication()->input->getBool('tp')) return true; foreach ( $modules as $index => $module ) { if($this->checkCustom($module)) $module->title = $this->customTitle($module->title); if(!$this->assigmentCheck($module)){ unset($modules[$index]); } } } public function checkCustom($module){ $params = new JRegistry ( $module->params ); $moduleAssignments = $params->get('module_assignment'); return !empty($moduleAssignments->content->customtitle->custom); } public function customTitle($title){ if($this->hasSpan($title)) return $title; $sub = $tt = ''; $title = explode('||',$title); if($title[1]) $sub = '<em>'.$title[1].'</em>'; $first = $last = explode(' ',$title[0]); array_shift($last); if($last) $tt = implode(' ',$last); $ttMod = '<span>'.$first[0].'</span> '.$tt.$sub; return $ttMod; } public function hasSpan($title){ $preg = '/<span>/i'; return preg_match($preg, $title); } public function assigmentCheck($module){ // get active menu $active = JFactory::getApplication()->getMenu()->getActive(); if(!$active){ $active = JFactory::getApplication()->getMenu()->getDefault(); } $menuQuery = $this->getQuery(); $load = false; // by menu item id $itemid = $this->getItemid($module->id); if(in_array($active->id, $itemid)) $load = true; if(isset($module->menuid)){ if($active->id == $module->menuid || ($module->menuid <= 0 && $module->menuid != '')){ $load = true; } } // by url query $params = new JRegistry ( $module->params ); $moduleAssignments = $params->get('module_assignment'); $include = $exclude = array(); if($moduleAssignments){ foreach($moduleAssignments as $assigns){ foreach($assigns as $assign){ if(@$assign->enable) { $isMenuItem = true; if(isset($assign->query) && is_object($assign->query)){ foreach($assign->query as $key => $value){ $json = '{}'; if(isset($menuQuery[$key])){ if(is_array($value)){ foreach($value as &$val){ if(preg_match('#::#i', $val)){ list($val, $json) = explode('::', $val); } } if(!in_array($menuQuery[$key], array_values($value))){ $isMenuItem = false; break; } }else{ if(preg_match('#::#i', $value)){ list($value, $json) = explode('::', $value); } if($value && !$menuQuery[$key] == $value){ $isMenuItem = false; break;} } $json = json_decode($json); foreach($json as $k => $v){ $assign->query->$k = $v; } }else{ $isMenuItem = false; break; } } } if($isMenuItem){ if($assign->include){ $include[] = $assign->query; }else{ $exclude[] = $assign->query; } } } } } } if(count($exclude)){ $load = false; }elseif(count($include)){ $load = true; } return $load; } public function getQuery(){ if(is_null(self::$query)){ // For sef $query = $_REQUEST; /* if(!count($query)){ $menu = $application->getMenu(); $query = $menu->getActive()->query; } if(!isset($query['layout'])){ $query['layout'] = $application->input->get('layout'); } */ foreach($query as &$val){ if(is_string($val)){ $val = current(explode(':', $val)); } } self::$query = $query; } return self::$query; } // Add parameter public function onContentPrepareForm($form, $data) { if ((JFactory::getApplication()->input->get ( 'option' ) == 'com_modules' || JFactory::getApplication()->input->get ( 'option' ) =='com_advancedmodules') && JFactory::getApplication()->input->get ( 'layout' ) == 'edit') { JHtml::_('jquery.framework'); $doc = JFactory::getDocument(); if(version_compare(JVERSION, '3', '>=')){ Jhtml::_('bootstrap.framework'); $doc->addScript(JUri::root(true).'/media/jui/js/chosen.jquery.min.js'); } $doc->addScript($this['path']->url('extensions::module_assignment/assets/admin/js/module.js')); $doc->addStyleSheet($this['path']->url('extensions::module_assignment/assets/admin/css/module.css')); $form->loadFile ( dirname ( __FILE__ ) . '/config/content.xml' ); $hasK2 = is_dir(JPATH_ADMINISTRATOR.'/components/com_k2/elements'); if($hasK2){ $form->addFieldPath(JPATH_ADMINISTRATOR.'/components/com_k2/elements'); $form->loadFile ( dirname ( __FILE__ ) . '/config/k2.xml' ); } $form->addFieldPath(dirname ( __FILE__ ) . '/fields'); } } public function getItemid($menuid){ $db = JFactory::getDbo(); $db->setQuery("SELECT menuid FROM #__modules_menu WHERE moduleid='$menuid'"); $items = $db->loadObjectList(); $itemid = array(); foreach($items as $item) $itemid[] = $item->menuid; return $itemid; } }
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
23 May 2018 16:45
Replied by Krikor Boghossian on topic upgrade question

upgrade question

Category: English K2 Community

2.6.8 -> 2.8.x will work without any modifications (unless your overrides contain really specific code).
Just make sure that if you are using any 3rd party K2 extensions, they will also work with 2.8
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
23 May 2018 00:00 - 23 May 2018 00:00
Replied by Krikor Boghossian on topic upgrade question

upgrade question

Category: English K2 Community

Which version of K2 of are you using?
Also are you using overrides and 3rd party K2 extensions?
  • Mike Gaskey
  • Mike Gaskey's Avatar
22 May 2018 17:35
upgrade question was created by Mike Gaskey

upgrade question

Category: English K2 Community

I have a site that is using a very old (maybe 5 years back) version of K2. I just upgraded to joomla 3.8.7 and had a problem with the K2 logon form (captcha) so I would like to upgrade but just need an opinion regarding potential problems of going to a current version of K2.

Thanks - Mike
  • Eric Lamy
  • Eric Lamy's Avatar
01 Mar 2018 09:49

Impossible to publish on frontend (file not found)

Category: English K2 Community

Hi Krokor,

Thx for your answer

Krikor wrote:

I try to unpublish plugins but I have always the same string "File not found".

Do you mean items or plugins?

Here are all my components, plugins

Components
AcyMailing 5.9.1 enterprise January 2018
Akeeba Backup 6.0.1 Pro 2018-02-26
comprofiler 2.1.3+build.2018.02.19.19.51.48.2dffa411d 2018-02-19
DOCman 3.2.0 January 2016
DOCman Import 2.1.2 October 2013
Event Booking 3.2.1 July 2010
FILEman 3.1.3 January 2018
GW Import Adh 2.0.2 December 2017
HikaShop 3.3.0 Business 27 février 2018
Import users to Community Builder from Excel or CSV file 2.6.9 2014-12-01
JCE Editor Pro 2.6.26 pro 31-01-2018
JCH Optimize Pro 5.2.2 November 2017
jDBexport 4.0.0b 2017-12-22
JMap 4.4 January 2018
Joomla Updater component 3.6.2 February 2012
K2 2.8.0 August 18th, 2017
LOGman 3.1.2 November 2017
pjmvi 1.0.0 October, 2012
populate 1.6.3 March 2010
ProFiles 1.5.0 2015-02-18
Regular Labs - Extension Manager 7.1.7 January 2018
Simple Image Gallery Pro 3.1.0 April 5th, 2016
Unite Slider 5.0.8 August 2012
videowhisper_consultation 3.26 December 2011
Watchful Client 1.12.2 2018-02-27

Plugins

_jw_sig 3.0.1 May 14th, 2014
AcyMailing : (auto)Subscribe during Joomla registration 4.8.1 novembre 2014
AcyMailing : filter plugin for CBSubs 1.0.0 December 2010
AcyMailing : Handle Click tracking 4.8.1 novembre 2014
AcyMailing : Handle Click tracking part2 4.8.1 novembre 2014
AcyMailing : Inbox actions 4.9.4 juillet 2015
AcyMailing : Send mail while editing an article 5.9.1 January 2018
AcyMailing : share on social networks 1.0.0 August 2010
AcyMailing : Statistics Plugin 3.7.0 September 2009
AcyMailing : trigger Joomla Content plugins 3.7.0 November 2009
AcyMailing Editor 4.8.1 novembre 2014
AcyMailing Geolocation : Tag and filter 4.8.1 novembre 2014
AcyMailing JCE integration 5.8.1 septembre 2017
AcyMailing Manage text 1.0.0 October 2010
AcyMailing table of contents generator 1.0.0 January 2011
AcyMailing Tag : Call to action 1.0.0 February 2015
AcyMailing Tag : CB User information 3.7.0 September 2009
AcyMailing Tag : content insertion 3.7.0 September 2009
AcyMailing Tag : Date / Time 4.8.1 novembre 2014
AcyMailing Tag : HikaShop content 1.0.0 September 2010
AcyMailing Tag : Insert a Module 4.8.1 novembre 2014
AcyMailing Tag : JomSocial User Fields
AcyMailing Tag : Joomla User Information 4.8.1 novembre 2014
AcyMailing Tag : Manage the Subscription 4.8.1 novembre 2014
AcyMailing Tag : Subscriber information 4.8.1 novembre 2014
AcyMailing Tag : VirtueMart integration 4.8.1 novembre 2014
AcyMailing Tag : Website links 3.7.0 September 2009
AcyMailing Template Class Replacer 4.8.1 novembre 2014
acymailingclassmail_j30 1.0.0 January 2014
Akeeba Backup Lazy Scheduling 3.7.GOODBYE 2013-03-08
Attach Invoice to the order confirmation e-mail 1.0.0 February 2012
Button - Attachments 3.1.3 January 2018
Button - DOClink 3.2.0 January 2016
Button - FILElink 3.1.3 January 2018
Button - Regular Labs - Better Preview 6.1.0 PRO February 2018
Button - Simple Image Gallery Pro 3.1.0 April 5th, 2016
CB - Hikashop - synch users adresses 1.1.8 June 2012
Community Builder System plugin 2.1.3+build.2018.02.19.19.51.48.2dffa411d 2018-02-19
Content - AccordionFAQ 2.5.0 Jan 2012
Content - Code Highlighter (GeSHi) 3.8.2 November 2005
Content - DOClink 3.2.0 January 2016
Content - Events Booking Content Restriction 2.3.0 Nov 2012
Content - FILElink 3.1.3 January 2018
Content - Hikashop Social Plugin 1.0.0 May 2011
Content - JCE 2.6.26 31-01-2018
Content - JSitemap Pingomatic 4.4 January 2018
Content - Open Source Design Content Restriction 3.1.0 2012-04-12
Content - Simple Image Gallery Pro (by JoomlaWorks) 3.1.0 April 5th, 2016
EB Event Plugin 3.2.1 Oct 2009
EB Register Plugin 3.2.1 Oct 2009
EB Registration History 1.0 Aug 2010
ebdepositreminder 3.2.1 Feb 2012
ebreminder 1.7.4 Feb 2012
Editor - CodeMirror 5.34.0 28 March 2011
Editor - JCE 2.6.26 31-01-2018
Editor - TinyMCE 4.5.8 2005-2017
Editor Button - JoomDOC Link 2.0.0 6. October 2009
Eventbooking Category content plugin 3.2.1 Oct 2014
Events Booking - AcajoomNewsletter Plugin 1.5.0 Aug 2010
Events Booking - Acymailing plugin 3.2.1 October 2012
Events Booking - Additional Dates 3.2.1 May 2016
Events Booking - Cart Update 1.0 Aug 2010
Events Booking - CB plugin 3.2.1 Apirl 2012
Events Booking - Contact Enhanced 3.2.1 Nov 2012
Events Booking - Easy Profile plugin 3.2.1 December 2015
Events Booking - Easysocial plugin 3.2.1 December 2015
Events Booking - Fee Fields Generator 2.3.0 Mar 2016
Events Booking - Jcomments plugin 3.2.1 October 2012
Events Booking - Jomsocial Activities 3.2.1 Aug 2010
Events Booking - Joomla Groups plugin 3.2.1 Apirl 2012
Events Booking - Joomsocial plugin 3.2.1 December 2015
Events Booking - Mailchimp plugin 3.2.1 01-24-2014
Events Booking - Map plugin 3.2.1 October 2012
Events Booking - Membership Pro 3.2.1 December 2015
Events Booking - Move Registrants Plugin 1.5.0 Aug 2010
Events Booking - PDF Invoice 1.8 September 2013
Events Booking - System (DO NOT UNPUBLISH) 3.2.1 Aug 2016
Events Booking - Ticket Types 3.2.1 July 2016
Events Booking - Userprofile plugin 3.2.1 December 2012
Events Booking Event Detail 3.2.1 December 2013
Events Booking Registration Form 3.2.1 December 2013
EventsBooking - CCNewsletter Plugin 1.5.0 Aug 2010
Extension - JCE 2.6.26 31-01-2018
Folcomedia - Plugin use cookies alert 1.3.4 2014
Helix3 - Ajax 2.5.1 Jan 2015
Hikashop - Product Cron Update 1.0.0 May 2011
Hikashop - VirtueMart Fallback Redirect Plugin 1.0.0 August 2011
Hikashop AcyMailing Plugin 1.0.0 April 2010
HikaShop Adyen payment plugin
Hikashop AlertPay Payment Plugin 1.0.0 March 2011
HikaShop AliPay payment plugin
Hikashop Alphauserpoints Payment Plugin 1.0.0 April 2011
HikaShop Amazon payment plugin
HikaShop Atos SIPS V2 payment plugin
Hikashop Australia Post eDeliver Shipping Plugin 1.0.0 October 2010
HikaShop Australia Post shipping plugin V2
Hikashop Authorize.net Payment Plugin 1.0.0 September 2010
Hikashop Bank Transfer Payment Plugin 1.0.0 April 2010
HikaShop Be2Bill payment plugin
HikaShop Beanstream payment plugin
HikaShop BitPay payment plugin
Hikashop Bluepaid Payment Plugin 1.0.0 October 2010
HikaShop Borgun payment plugin
HikaShop Canada Post shipping plugin
HikaShop CANPAR shipping plugin
Hikashop CardSave Payment Plugin 1.0.0 April 2011
HikaShop Cart notification Plugin
HikaShop CECA payment plugin
Hikashop Check Payment Plugin 1.0.0 April 2010
Hikashop Collect On Delivery Payment Plugin 1.0.0 April 2010
HikaShop common payment API plugin
HikaShop Content Markdown Plugin 3.3.0 27 février 2018
Hikashop Credit Card Payment Plugin 1.0.0 April 2010
Hikashop Currency Rates Plugin 1.0.0 April 2010
Hikashop CyberMuth CIC Payment Plugin 1.0.0 April 2011
Hikashop Date Picker Plugin
HikaShop Donation plugin
Hikashop Email History Plugin
HikaShop EnvoiMoinsCher shipping plugin
Hikashop ePay Payment Plugin 1.0.0 April 2010
HikaShop eSelect/Moneris payment plugin
Hikashop eWAY Payment Plugin 1.0.0 March 2011
HikaShop FedEx shipping plugin
Hikashop FirstData Payment Plugin 1.0.0 May 2011
HikaShop free orders validation Plugin
Hikashop Geolocation Plugin 1.0.0 April 2010
Hikashop Google Analytics Plugin 1.0.0 July 2011
Hikashop Google Checkout Payment Plugin 1.0.0 June 2011
HikaShop Google Dynamic Remarketing (conversion tracking) plugin
Hikashop Google Products Plugin 1.0.0 May 2011
HikaShop Google Wallet payment plugin
Hikashop Group Plugin 1.0.0 February 2011
Hikashop History Plugin 1.0.0 April 2010
Hikashop HSBC Payment Plugin 1.0.0 April 2011
Hikashop Innovative Gateway Payment Plugin 1.0.0 May 2011
HikaShop iPayDNA payment plugin
Hikashop iVeri Payment Plugin 1.0.0 May 2011
HikaShop KashFlow plugin
HikaShop LiqPay payment plugin
Hikashop Manual Shipping Plugin 1.0.0 April 2010
Hikashop Massaction Address Plugin
Hikashop Massaction Category Plugin
Hikashop Massaction Order Plugin
HikaShop massaction plugin
Hikashop Massaction Product Plugin
Hikashop Massaction User Plugin
HikaShop Microdata on Product Page plugin
HikaShop MIGS VPC payment plugin
Hikashop Moneybookers Payment Plugin 1.0.0 September 2010
HikaShop NetGiro payment plugin
HikaShop NETS payment plugin
HikaShop no SSL outside checkout plugin
HikaShop Ogone payment plugin
HikaShop OKPay payment plugin
Hikashop Orders Automatic Cancel Plugin 1.0.0 April 2010
Hikashop out of order notification Plugin 1.0.0 April 2010
HikaShop PayBox payment plugin
HikaShop PayFast payment plugin
HikaShop PayGate payment plugin
Hikashop PayJunction Payment Plugin 1.0.0 May 2011
Hikashop Payment Express Payment Plugin 1.0.0 August 2011
HikaShop Payment Notification plugin
HikaShop Paypal Advanced payment plugin
HikaShop Paypal ExpressCheckout payment plugin
Hikashop Paypal Payment Plugin 1.0.0 April 2010
Hikashop Paypal Pro Payment Plugin 1.0.0 May 2011
Hikashop Paypal Website Payments Pro Hosted Payment plugin
HikaShop PayPlug payment plugin
HikaShop PayU India payment plugin
HikaShop Platron payment plugin
HikaShop Post Finance payment plugin
HikaShop Privat24 payment plugin
HikaShop Product TAG insertion
HikaShop Product TAG translation
HikaShop Purchase Order payment plugin
HikaShop PxPay payment plugin
HikaShop Quickicon plugin
HikaShop Quickicon plugin
Hikashop Servired Payment Plugin 1.0.0 June 2011
HikaShop Shipping manual - Prices per product plugin
HikaShop Shop Close Hours plugin
Hikashop SIPS ATOS Payment Plugin 1.0.0 November 2010
Hikashop Social Networks plugin
HikaShop Sofort payment plugin
HikaShop Stripe payment plugin
HikaShop tax calculations override plugin
Hikashop TaxCloud Plugin
Hikashop UPS Shipping Plugin 1.0.0 April 2011
Hikashop User account Plugin 1.0.0 February 2011
HikaShop User Points payment plugin
HikaShop User Points plugin
HikaShop USPS shipping plugin
HikaShop VirtualMerchant payment plugin
Hikashop WaitList notification Plugin 1.0.0 September 2011
HikaShop Webmoney payment plugin
Hikashop Western Union Payment Plugin 1.0.0 April 2010
HikaShop WestPac API payment plugin
HikaShop WorldNetTPS payment plugin
Hikashop WorldPay Business Gateway Plugin 0.0.2 March 2011
Hikashop Worldpay Global Gateway Plugin 0.0.7 March 2011
iJoomla News
iJoomla Upgrade Alert
Installer - Events Booking 3.2.1 August 2016
Installer - JCE 2.6.26 31-01-2018
jDBexport datafield plugin 4.0.0b 2017-12-22
jDBexport datagrid plugin 4.0.0b 2017-12-22
jDBexport workbooklink plugin 4.0.0b 2017-12-22
JMonitoring - Akeeba Backup 1.0 May 2012
Josetta - K2 Categories 2.6.9 December 8th, 2014
Josetta - K2 Items 2.6.9 June 7th, 2012
K2 - Simple Image Gallery Pro 3.1.0 April 5th, 2016
LOGman - Linker 3.1.1 August 2017
migsvpc_j15 1.0.0 February 2012
Mijoshop Fallback Redirect Plugin
myFlickr - Content Plugin 2.0.5 2015-03-30
Override Joomla mailing system 4.8.1 novembre 2014
plg_koowa_fileman 3.1.3 January 2018
plg_koowa_logman 3.1.2 November 2017
plg_logman_banners 3.1.2 November 2017
plg_logman_categories 3.1.2 November 2017
plg_logman_config 3.1.2 November 2017
plg_logman_contact 3.1.2 November 2017
plg_logman_content 3.1.2 November 2017
plg_logman_docman 3.1.2 November 2017
plg_logman_fileman 3.1.2 November 2017
plg_logman_installer 3.1.2 November 2017
plg_logman_joomlaupdate 3.1.2 November 2017
plg_logman_languages 3.1.2 November 2017
plg_logman_menus 3.1.2 November 2017
plg_logman_modules 3.1.2 November 2017
plg_logman_newsfeeds 3.1.2 November 2017
plg_logman_notifier 3.1.2 November 2017
plg_logman_plugins 3.1.2 November 2017
plg_logman_redirect 3.1.2 November 2017
plg_logman_templates 3.1.2 November 2017
plg_logman_users 3.1.2 November 2017
plg_logman_weblinks 3.1.2 November 2017
plg_system_docman_redirect 2.1.2 July 2014
plg_system_joomlatools 3.1.5 October 2017
plg_system_joomlatoolsscheduler 1.0.0 September 2017
plg_system_notificationary 0.2.15 2017-10-20
ProJoom Multi Rotator 3.1.5 February 2015
Quick Icon - Akeeba Backup Notification 1.0 2012-09-26
Quick Icon - JCE File Browser 2.6.26 31-01-2018
Redirect Joomla registration to HikaShop Plugin
Redshop Fallback Redirect Plugin
Search - Community Builder 2.0.2 2014-11-10
Search - DOCman 3.2.0 January 2016
Search - Event Booking 3.2.1 Aug 2010
Search - Event Booking 1.0 Aug 2010
Search - Hikashop Categories/Manufacturers 1 June 2010
Search - Hikashop Products 1 June 2010
Search - K2 2.8.0 August 18th, 2017
Smart Search - DOCman 3.2.0 January 2016
Smart Search - Events Booking October 2017
Smart Search - K2 2.8.0 August 18th, 2017
Smartslider - SmartSliderInsert 1.2.1 Oct 2011
System - Akeeba Backup Update Check 1.1 2011-05-26
System - Backup on update 3.7 2013-08-13
System - Helix3 Framework 2.5.1 Jan 2015
System - HikaShop Affiliate 1.0.0 May 2010
System - JB Type 1.5.5 Feb 2010
System - JCE 2.6.26 31-01-2018
System - JCE MediaBox 1.2.9 05-04-2017
System - JCH Optimize Pro 5.2.2 PRO November 2017
System - Joomlatools Updater 1.0.0 June 2016
System - JSitemap utilities 4.4 January 2018
System - K2 2.8.0 August 18th, 2017
System - Login Popup by ExtStore 1.0.0 October 2014
System - One Click Action 2.1 2011-05-26
System - Regular Labs - Better Preview 6.1.0 PRO February 2018
System - Regular Labs - Cache Cleaner 6.2.0 PRO February 2018
System - Regular Labs - Email Protector 4.2.0 February 2018
System - Regular Labs - GeoIP 2.3.0 February 2018
Système - Regular Labs Library 18.2.10140 February 2018
tagvmcoupon 3.5.0 September 2009
tagvmproduct 1.2.1 March 2010
User - HikaShop 3.2.2 26 janvier 2018
User - K2 2.8.0 August 18th, 2017

Krikor wrote:

Also, how were these users blocked? Are you using any security extensions?


Sorry I didn't explain correctly, I said they were blocked because they can't publish because of this "File not found". They can publish event (EventsBooking), their profile (CB), etc.. Just blocked on K2

  • carlostegs
  • carlostegs's Avatar
11 Feb 2018 20:19
Replied by carlostegs on topic K2 no frontend is not saving User Items

K2 no frontend is not saving User Items

Category: English K2 Community

complementary after tests

Hello

Doing some testing, I installed it on another site that was also 3.83 upgrade to the Joomla 3.8.5 version, and continues with PHP 5.6.31 with K2 v2.8 and now Joomla 3.8.5

Testing in several browsers, I notice that I can not log in to Backend and Frontend through Chrome and Firefox.

With the exception of the Opera Browser and the Edge, they are the only ones that can enter the Backend and the browser works perfectly in the Backend and also the Frontend

In Firefox is the one that has more problems, in Chrome also problems these two does not enter either the backend or the frontend. Browser Maxthon also does not access either

In the Edge it logs in the Backend and also in the frontend but has problems to dislodge the user only in Frontend, the user it stays there, just open the page of the site that is logged in again.

The attempts to put articles in K2 are frustrated, because the screen opens, post the article, but at the time of saving it does not save and jump to the Home.

I'm going to see if the Item has entered the store and there's nothing there, just (positive) with Opera and Edge browsers

Then I try to move it out of the system in the frontend and no matter how you try to move it it does not go out

This is some BUG, ​​what do you think?

I await a possible help

Thank you
Success!
Carlos
  • JoomlaWorks
  • JoomlaWorks's Avatar
09 Feb 2018 18:52

[SOLVED] Stop renaming of attached files with Greek characters

Category: English K2 Community

This is an unfortunate side effect of the upgrade to the "upload" class we have been using for years in K2.

The built-in filters in that PHP class did not properly handle all unicode characters, including K2.

I have fixed the issue in this commit on GitHub: github.com/getk2/k2/commit/2737316fc7769ce7597a43b15a7befab7ba919ae

And if you wish to patch your site, simply grab v2.8.1 [dev] from: github.com/getk2/k2/archive/master.zip

...and just install on top of 2.8.0.

Good catch ;)
  • Zane Jacobson
  • Zane Jacobson's Avatar
29 Jan 2018 22:58
K2 viewing access level issue was created by Zane Jacobson

K2 viewing access level issue

Category: English K2 Community

Joomla 3 + K2 2.6.7... not the latest but I'm on a stable site and can't accept the risk of running upgrades at present.

I'm trying to protect viewing access to a particular K2 item so that a client can review it.

I'd like the article to be not viewable by the public, but when the client logs in, they can view it.

Here's what I've done:

1. Created a new group under Registered > Partners > ClientName
2. Created a new Access Level called ClientName, and add groups ClientName and Super Users.

I've gone and assigned the K2 item's viewing access level to ClientName.

When I go to the category list of items, this particular item doesn't show at all for me (Super User) nor the client user (whom I did add to the ClientName group.)

If I change the K2 item back to Special, I can see it as Super User.

What have I done wrong? This seems straightforward but it just doesn't work.

Some things:

K2 category listing is a menu item with access level Public. Registered > Partners > ClientName is under the umbrella of Public though.
Do K2 user groups factor into this at all? It seems they don't.

Thanks.
  • Chris
  • Chris's Avatar
02 Jan 2018 12:50
Replied by Chris on topic K2 problem after update

K2 problem after update

Category: English K2 Community

Hi William,

Yew I have backup.
After setting error reporting to max, I get the following errors
Notice: Undefined variable: path in [site path] /administrator/components/com_jce/models/editor.php on line 911
Notice: Undefined variable: path in [site path] /administrator/components/com_jce/models/editor.php on line 912
Notice: Undefined variable: path in [site path] /administrator/components/com_jce/models/editor.php on line 921

After checking the file I have
911 if (JFolder::exists($path)) {
912 $css = JFolder::files($path, '(base|core|theme|template|template_css)\.(css|less)$', false, true);
913 }

and

920 // check for editor.css file
921 if (JFile::exists($path . '/editor.css')) {
922 $file = 'editor.css';
923 }

How I can fix it?
Thanks


william white wrote: First, do you have backup pre upgrade?
Have you set error reporting to max to see if any errors will show?
I would download the install package from getk2.org or github master and install over top to see if that may fix it

  • william white
  • william white's Avatar
31 Dec 2017 15:45
Replied by william white on topic K2 problem after update

K2 problem after update

Category: English K2 Community

First, do you have backup pre upgrade?
Have you set error reporting to max to see if any errors will show?
I would download the install package from getk2.org or github master and install over top to see if that may fix it
  • Mr_Anonymous
  • Mr_Anonymous's Avatar
15 Dec 2017 14:05 - 15 Dec 2017 14:06
Replied by Mr_Anonymous on topic Extra Fields tab is empty after upgraded to 2.8.0

Extra Fields tab is empty after upgraded to 2.8.0

Category: English K2 Community

I have the exact same issue after upgrading k2 to version 2.8.0. I have cleared the cache and updated Joomla to 3.8.2. I don't have JA K2 Filter in my website. I use Styleware Filter for K2. I tried disabling that, cleared the cache, but the backend k2 fields are not showing. Its just empty.

This only happens when I go to: Backend -> K2 -> Extra Fields. I have over 20 extra fields overall, and none of them are showing.

But, when I edit the articles or create articles in those categories, the extra fields are visible in the editing screen tab. Also the extra fields shows in the article body.

The backend Extra Fields Groups page shows the groups created.

Its only the Backend -> K2 -> Extra Fields page that is empty. Very unusual.

Thanks,
Neel.
  • Alan Campbell
  • Alan Campbell's Avatar
08 Dec 2017 00:06
Replied by Alan Campbell on topic Media Manager not opening

Media Manager not opening

Category: English K2 Community

Hello again,

Apologies for the delay in my reply.


I do not currently have anything running that should interfere, no 3rd part minification/optimisation scripts. I can't seem to see any errors showing failure to load files, everything seems ok.

However, I do wonder whether there's a new issue with K2 and Cloudflare. Although I have minification and Rocket Loader disabled at Cloudflare, I do know that they often load from their own CDN. Yet, I'm not sure how it suddenly stopped working after my last stable K2 upgrade.


Have you seen this problem yourself on other sites?

The site is clinsim.org for reference!

Thanks again mate,

Alan
  • JoomlaWorks
  • JoomlaWorks's Avatar
11 Nov 2017 12:04
Replied by JoomlaWorks on topic K2 2.70 migrating from Joomla 2.5 to 3+

K2 2.70 migrating from Joomla 2.5 to 3+

Category: English K2 Community

First upgrade to v2.8.0 which is the newest one. You will then have no issue using that on Joomla 3.x. K2 2.7.0 works as well but it's a good time to update K2 as well.

If you have any issues with the Joomla 2.5 to 3.x update itself (not K2) and you wish to start fresh, you can always just install K2 on a new empty Joomla 3.x site, delete all K2 tables in the DB of the new site and import the K2 tables only from the J2.5 site into the new DB. Finally move the /media/k2/ contents (but don't move the "assets" subfolder if you still use 2.7.0 on the old site) from the old to the new site and you're ready to start fresh on Joomla with ALL your K2 content.
  • David Srubar
  • David Srubar's Avatar
09 Nov 2017 09:33
Replied by David Srubar on topic Unwanted characters in a date

Unwanted characters in a date

Category: English K2 Community

Perfect. I tried to change Joomla language but it has no impact. Because it was probably issue in K2 language file. I upgraded K2 language and after that, everything works fine. Good job. Thank you.
  • David Srubar
  • David Srubar's Avatar
08 Nov 2017 14:49
Unwanted characters in a date was created by David Srubar

Unwanted characters in a date

Category: English K2 Community

Hello all.
Could you help me with my issue please? After upgrade to joomla 3.8.2 and K2 2.8.0 I have a problem with date and time format. I have the same problem on the frontend as in the backend in K2 stats module. Instead of correct date and time 08/11/2017 - 16:Nov I see %08/%11/%2017 - %16:%Nov. Check a screenshot imgur.com/a/cu6rC . Thank you in advance.
Displaying 281 - 300 out of 2250 results.

Powered by Kunena Forum