Error happen on phpmyadmin when activating APC solved
After installing APC extension for cache on php, i got error message when opening phpmyadmin on my localhost (xampp). After figure out on net, i found there are 3 ways to fix it
- add this line on php.ini
apc.filters = “-/usr/share/phpmyadmin/.*”
- add this line on php.ini
apc.cache_by_default = 0
- or add this line on xampp virtual host file config
<Directory “/usr/share/phpmyadmin”>
php_admin_flag apc.enabled Off
</Directory>
This would remove APC error message from phpmyadmin