Speed Issues on Local Machine

After testing @muratyamac’s setup, I was able to get some significant performance gains by disabling Xdebug.

This can be done by doing the following:

  1. Open conf/php/VERSION/php.ini in your Local site folder

  2. Scroll to the bottom and look for

zend_extension = /opt/php/7.0.3/lib/php/extensions/no-debug-non-zts-20151012/xdebug.so

(this is different for each PHP version but searching for simply xdebug.so will work)

  1. Add a semicolon before zend_extension to comment it out so it looks something like
;zend_extension = /opt/php/7.0.3/lib/php/extensions/no-debug-non-zts-20151012/xdebug.so
  1. Restart the site
1 Like