I resolved the performance issue by running the following commands in MySQL: use asterisk; alter table kvstore engine=MyISAM; My new FreePBX 13 server was causing disk IO contention with my other VMs, so I had a look at the disk writes to the MySQL database. The MySQL databases are the ONLY thing on the VDB […]
Tag Archives: slow
Improve Zenoss Performance – Infrastructure Load Time
Q: Does the infrastructure page take a really long time to load for you? A: Take a look at your open event log entries. Every open event gets indexed when the page loads. If you want the page to load faster, simply close as many events as is prudent for your historical needs. If […]
A Quick Way to Remove /index.php From WordPress Permalinks
This assumes that you are using Lighttpd as your web server. But this trick should work with all web servers. If you are using Lighttpd, add the following line to your site settings in lighttpd.conf. server.error-handler-404 = “/index.php” You now need to restart Lighttpd. sudo service lighttpd restart Now login to your wp-admin console and […]