Thứ Ba, 19 tháng 9, 2023

Wordpress Contact Form 7 Invisbile capcha always view page load - SOLVED


Detail: Contact Form7>integrate > Recaptcha V3
-> home page load alwasy popup Captcha. Require run reCaptcha when needed
Solution: setup plugins Add New 'Invisible reCAPTCHA' Contact Form;
Setting and check again
Solved


 

Thứ Hai, 18 tháng 9, 2023

Note name when upgrade YearMonthDay-siteVersion-R1...


Example: 20230918-blaosire.com4-R1
R1,R2,R3...: Re- Before Upgrade
T1,T2,T3...: J4 Temp
V1C,V2C,V3C: mean version 1,2,3 Core
V1M,V2M,V3M: version 1,2,3 Media (images,doc, files...)

Thứ Ba, 12 tháng 9, 2023

Jooml4 sigplus error GD library XAMPP config - SOLVED

Detail: XAMPP local, joomla4, install sigplus. Require: GD library
Solution: control panel XAMPP open PHP.ini
Open: extension=gd



 

Joomla4 responsive Gallery use Sigplus - SOLVED

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;
}

 


Thứ Bảy, 9 tháng 9, 2023

JooCart 4.x not allow upload error exist extension - SOLVED


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



 

Thứ Ba, 5 tháng 9, 2023

Joomla4 upgrade com_search error JEventDispatcher - SOLVED

Detail: J3 upgrade to J4 com_search result -> error JEventDispatcher
Reason: /components/com_search/models/search.php JEventDispatcher invalid
Solution: download new package and re-install
https://github.com/joomla-extensions/search/releases/download/4.0.1-dev/pkg_search_4.0.1-dev.zip


 

Joomla4 import Mosets Tree manual - SOLVED


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

 


Thứ Hai, 4 tháng 9, 2023

Joomla4 com_breezingforms JQUERY error - SOLVED

Detail: Joomla4 com_breezingforms JQUERY error
Reason: JQUERY or is library, go to file and replace line

Solution: 'JQuery' replace by 'jQuery'
administrator\components\com_breezingforms\libraries\crosstec\classes\BFQuickMode.php



 

jQuery window load e.indexOf is not a function - SOLVED

Detail:
$(window).load(function() {
alert('Load');
});
Error e.indexOf is not a function
Solution: change code below
$(window).on('load', function () {
    alert('On Load');
});



 

joomla4 .owlCarousel is not function - SOLVED

Detail: Joomla3 owlCarousel function good work, upgrade to joomla4 .owlCarousel is not function
Reason: miss file bootstrap.min.js
Solution: j3 get \media\jui\js\bootstrap.min.js, template j4 load this script




 

Chủ Nhật, 3 tháng 9, 2023

Joomla4 error.php check id article redirect


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*/