Detail: Usergroup have many groups 342, article not save, config not save
Reason: PHP.ini max_input_vars 1000, require increase to 2000 or more
Solution: CPANEL -> MultiPHP INI Editor ->max_input_vars set 2000 or more
Detail: Usergroup have many groups 342, article not save, config not save
Reason: PHP.ini max_input_vars 1000, require increase to 2000 or more
Solution: CPANEL -> MultiPHP INI Editor ->max_input_vars set 2000 or more
Detail: disable notes upgrade from extension
Solution:
1. administrator/index.php?option=com_installer&view=updatesites
Disable items
2. administrator/index.php?option=com_installer&view=update
Run 'Check for update' button for refesh notice
Issue: joomla 4/5 admin user > menu Fields And Field Group missing
Reason: User>Options > tab Integration > Edit Custom Fields YES/No
Description: joomla 4, virtumart 4.2.0 -> error vmError: Empty slug product with id 20, entries exists fo language? en-GB
Solution:administrator\components\com_virtuemart\models\product.php quote line 1732-1737
Close code test slug
/*if(empty($product->slug)){
$msg = 'Empty slug product with id '.$product->virtuemart_product_id.', entries exists for language? '.VmConfig::$vmlangTag;
vmError($msg,$msg.' You may contact the administrator');
} else {
vmError('Could not find product with id '.$product->virtuemart_product_id.', still existing?');
}*/
Detail: download plugin sigplus gallery plugin for jooma4, setup
gallery: load images, light box popup
Custom style:
/*_gallery*/
.sigplus-gallery > ul{
column-count: 5;
column-gap: 5px;
display: inline-block;
}
.sigplus-gallery > ul > li a{
padding:5px;
background:#fff;
box-shadow: 0 1px 1px #cecece;
}
.sigplus-gallery > ul > li img{
vertical-align: middle;
width: 219px;
display:block;
}
Detail: upload extension not compatible JooCart 4.x version,
need upload again new exntension -> error exist file
Error: exist file upload before
Solution: remove by manual
Folder: components\com_opencart\system\storage\marketplace
Remove files, then upload again
Extension name: Mosets Tree - this require paid component
Joomla 4: install
J3: #_mt_ phpmyadmin export 'data insert only with column name'. This will help warning when db structure different
j4: #_mt_ empty table
Run querylist
Detail: link url https://domain.php/index.php/1072
Solution: split '/' get last item, is number -> redirect to article
/*CustomRedirect*/
$errUrl= $_SERVER['REQUEST_URI'];
/*Get Last Number*/
$splitUrls = explode("/", $errUrl);
if(count($splitUrls)>1){
$lastItem = $splitUrls[count($splitUrls)-1];
if(is_numeric($lastItem)){
/*LastIsNumber redirect to article ID*/
$redirectLink = JUri::base().'?view=article&id='.$lastItem;
/*echo $redirectLink;*/
header('Location:'.$redirectLink);
exit;
}
}
/*ENDCustom*/
Detail: admin copy template, template assign by menu item. This copied can change params
Explain: when duplicate template, db will create 1 row template_style new id. And param can change. Template assign by menu item -> #_menu have column 'template_id'
Solution:
template_name/index.php
use Joomla\CMS\Factory;
$app = Factory::getApplication();
/*getparameName*/
$paramValue = $app->getTemplate(true)->params['param_name'];
Detail: joomla 3.x DOcman export .zip
Joomla 4.x import .zip
document view Expired status and FRONT END not view
Solution: phpmyadmin run query
UPDATE jos_docman_documents SET publish_on = NULL,unpublish_on = NULL,locked_on = NULL
Explain: This update table record -> publish again
PKG_JOOMLA
Detail: Upgrade Joomla3 to Joomla 4, require uninstall PKG_JOOMLA. This is protected not allow
Solution: manual phpmyadmin
SELECT * FROM `jos_extensions` where name='PKG_JOOMLA';
Delete this row
Upgrade joomla 3. to joomla 4. run
"Joomla\Plugin\Behaviour\Taggable\Extension\Taggable" not found
Solution: remove file administrator/cache/autoload_psr4.php
Detail: https://github.com/joomla/joomla-cms/issues/38474