Category:

Install missing PHP7.2 intl extenstion

In this post, I will show you how we can add missing PHP 7.2 missing extension using Ondrej PPA in Linux server. apt update apt autoremove Once you have fixed that issue, you can try executing following commands if you have not added Ondrej PPA: add-apt-repository -y ppa:ondrej/php apt install php7.2-intl Now you can restart […]

Continue Reading
Posted On :
Category:

Fix PHPMyAdmin redirect issue after login

Last updated on January 1st, 2020 at 09:16 pmLearn how to fix the PHPmyadmin Redirection issue with simple steps. Steps to fix PHPMyAdmin redirection issue Login to server via terminal using SSH Open PHPMyAdmin Config file “sudo nano /etc/phpmyadmin/config.inc.php” Add this code near configure option $cfg[‘PmaAbsoluteUri’] = $_SERVER[HTTP_HOST].dirname($_SERVER[SCRIPT_NAME]); Done Hope this tip help you

Continue Reading
Posted On :
Category:

Calculate month between two dates android

If you want to calculate age in month you can use this method . In this method pass dob year,dob month & dob date. public int monthsBetweenDates(int year, int month, int day) { Calendar dob = Calendar.getInstance(); dob.set(year, month, day); Calendar today = Calendar.getInstance(); int monthsBetween = 0; int dateDiff = today.get(Calendar.DAY_OF_MONTH) – dob.get(Calendar.DAY_OF_MONTH); if […]

Continue Reading
Posted On :
Category:

Update or Recover ARO|ACO in Cakephp 3

Sometime in Cakephp3 while working with ACL we get some error related to ACO|ARO or our table is corrupt we can solve those issue using bellow commands  To recover ACO table run bellow command in terminal bin/cake AclExtras recover aco To recover ARO table bin/cake AclExtras recover aro If you want to check some other […]

Continue Reading
Posted On :