Detail: configuration admin cache off, but folder cache still have 'pages'
Solution: plugin turn off 'page cache'
Thứ Tư, 15 tháng 9, 2021
joomla 3.x cache pages turn off
Thứ Ba, 14 tháng 9, 2021
Joomla 3.10.2 install rsform 3.0 error
Setup: error table rsform no exist, access admin>rsform FAILED
Do install 3-5 times FAILED
Solution:
BACKUP BEFORE DO ANYTHING
1. Remove old version source: remove or change folder components/com_rsform + administrator/components/com_rsform
Step 2,3 is remove record at db relate rsform
2. administrator>component>manage find 'rsform' remove all
3. administrator>component>discover find 'rsform' remove all
4. administrator>configuration Check absolute path tmp + logs
5. Setup again
Status: SOLVED
Thứ Sáu, 3 tháng 9, 2021
Joomla Contact Form - turn off Consent Private text
Chi tiết: Contact Form joomla hiển thị field text
Privacy Note *
By submitting this form you agree to the Privacy Policy of this website and the storing of the submitted information.
Giải pháp: administrator >turn off plugin >Content - Confirm Consent
Thứ Sáu, 27 tháng 8, 2021
Joomla 3.x uninstall language
Ghi nhận: settup thêm DE language. Sau đó uninstall admin>manage 1 language ko được
Giải pháp: chọn language package rồi uninstall
Nguyên nhân: là theo package cả admin và site
Wordpress - remove title by Yoast SEO - SOLVED
Vấn đề của mình: Title browser luôn hiển thị 'Page title - Site title'. Site wordpress 5.8, có sử dụng Yoast SEO ver 17.0.
Mục tiêu: view 'Page title' only
Lịch sử: khi gặp vấn đề tìm cách xử lý trực triếp từ theme ko hiệu quả, lên internet tìm 'Wordpress Remove title' nhiều lần tốn thời gian 2h, xem nhiều site. Thì giải pháp tốt nhất là dùng 'Yoast SEO'. Khi dùng thì chưa quen không tìm thấy vị trí setting vì mỗi phiên bản setting khác nhau. Hiện tại đang dùng Yoast version 17.0. Đúng là có setting có khác so với trên internet lúc tìm kiếm, nên tốn thời gian.
Tình trạng: SOLVED - 2021 August 27
Hình ảnh ghi nhận:
Chủ Nhật, 4 tháng 4, 2021
Joomla 3.9.x Missing install from (folder, upload, url)
Description: upgrade older version to joomla 3.9.x -> missing install tab item (folder, upload, url)
Solution: Administrator-> Menu Extension -> Update -> tab Discover -> choose type Install -> Re-install
Joomla upgrade 3.5.1 to 3.6.5 then 3.9.x
NOTE: REQUIRE BACKUP BEFORE CONTINUE
Step 1: upgrade 3.5.1 to 3.6.5
1.1: Upgrade direct from administator
1.2: Or download Joomla_3.6.5-Stable-Update_Package.zip then extract
Result require: version 3.6.5: DONE
Step 2: upgade joomla 3.6.5 to joomla 3.9.x
Upgrade direct at administrator
Result require: run 100%
Step 3: 1054 Unknown column a.client_id - Fix error from phpmyadmin
Replace # by database prefer
ALTER TABLE `#_menu_types` ADD COLUMN `client_id` int(11) NOT NULL DEFAULT 0;
UPDATE `#_menu` SET `published` = 1 WHERE `menutype` = 'main' OR `menutype` = 'menu';
Result require: Run site normal
Step4: Database error
Run database fix
Require required: articles, category, modules good work
Thứ Tư, 10 tháng 2, 2021
joomla com_newsfeed load blogspot url change image size
Description: load feed from blogspot.com image reduce 300px, 400px. Need upto 1024px
File edit: com_newsfeeds\views\newsfeed\tmpl\default.php
Line 133:
<?php echo str_replace(''', "'", $text); ?>
Change to:
<?php
$text = str_replace('/s320/', '/s1024/', $text);
$text = str_replace('/s400/', '/s1024/', $text);
echo str_replace(''', "'", $text); ?>
Image result