Link test php XAMPP local: https://localhost/dashboard/phpinfo.php
1. Rename php to php_old
2. Download PHP8.5 from: https://www.php.net/downloads
3. Unzip and rename folder
4. Copy php.ini from php_old to new
5. Copy extras from php_old to new
The simplest solution
Check and good luck
Thứ Sáu, 1 tháng 5, 2026
2026 XAMPP upgrade PHP 8.2 to PHP8.5 The simplest way - SOLVED
XAMPP 3.3.0 SET FOREIGN_KEY_CHECKS = ON #2006 - MySQL server has gone away - SOLVED
XAMPP 3.3.0
SET FOREIGN_KEY_CHECKS = ON;
#2006 - MySQL server has gone away
Open mysql.ini
[mysqld]
max_allowed_packet=1M -> max_allowed_packet=32M
Thứ Bảy, 14 tháng 3, 2026
Font awesome fa-twitter to 𝕏 the fastest solution - SOLVED
All version font awesome
Change <i class="fa fa-twitter"></i> to 𝕏
Css change:
.fa-twitter::before {
content: "𝕏";
}
Thứ Ba, 24 tháng 2, 2026
Joomla5 upgrade com_weblinks install
Thứ Hai, 23 tháng 2, 2026
Upgrade joomla 3.8 to J5 MB_OVERLOAD_STRING - SOLVED
Detail: joomla 3.8 PHP 7.4, run PHP 8.x error MB_OVERLOAD_STRING
Solution: uprgade joomla 3. 8 to joomla 3.10 (compatible PHP8.x)
Step upgrade: upgrade 3.10 to 4.x, 4.x to 5.x (all compatible PHP 8.x)
Thứ Sáu, 6 tháng 2, 2026
Joomla5 pagination miss style - Easy solution - SOLVED
Add custom style to css
/*pagination*/
ul.pagination {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
ul.pagination li {
display: inline-block;
margin: 5px;
}
.icon-angle-double-left::after {
content: 'Start';
}
.icon-angle-left::after {
content: 'Prev';
}
.icon-angle-right::after {
content: 'Next';
}
.icon-angle-double-right::after {
content: 'End';
}








