Mobile app version of vmapp.org
Login or Join
Candy875

: PhpMyAdmin no longer notifying me of updates I'm used to seeing phpMyAdmin notify me of updates fairly frequently so when a few weeks went by without any notifications I headed over to the

@Candy875

Posted in: #Phpmyadmin

I'm used to seeing phpMyAdmin notify me of updates fairly frequently so when a few weeks went by without any notifications I headed over to the official site to discover that my installation was out of date.

What I can't determine is why the notifications stopped. I looked in my logs and it appears as if the version checking is still occurring:


[28/Sep/2015:12:31:00 -0400] "GET /pma/version_check.php?&_nocache=1443457870977619155 HTTP/1.1" 200 2


Yet no notifications are appearing. If I run version_check.php directly, I get a reply of []. On another server that we have (which updated properly), I get {"version":"","date":""}.

My config file consists of:

$i = 0;
$i++;
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['auth_type'] = 'cookie';

$cfg['ForceSSL'] = true;
$cfg['DefaultLang'] = 'en';
$cfg['ServerDefault'] = 1;
$cfg['PmaNoRelation_DisableWarning'] = true;
$cfg['VersionCheck'] = true;


What can I do to get the notification working again?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Candy875

1 Comments

Sorted by latest first Latest Oldest Best

 

@Shanna517

Most likely this is is caused by missing curl extension and disabled allow_url_fopen. Without these phpMyAdmin can not check for new version and doesn't report this anyhow. This will be fixed in future releases, see github.com/phpmyadmin/phpmyadmin/issues/11874

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme