kaz Posted February 11, 2023 Share Posted February 11, 2023 Template development is very slow under macOS, MAMP Pro. Every click in the backend takes a lot of time. Is it normal? Link to comment Share on other sites More sharing options...
sodesign Posted February 28, 2023 Share Posted February 28, 2023 Perhaps you could increase the php memory limit if it's set low.https://documentation.mamp.info/en/MAMP-PRO-Mac/FAQ/PHP/Increase-the-PHP-memory-limit/ Otherwise, can you describe more specifically what you're trying to achieve when development feels slow? 1 Link to comment Share on other sites More sharing options...
flydev Posted April 15, 2023 Share Posted April 15, 2023 A bit late to the party. It happened to me years ago and I can remember it was an issue with DNS. You don't give lot of details, but you can try the following: adding your hostname in the hosts system file Open a terminal, and: get your hostname > type `hostname` and take a note of the result add it to your hosts file > type `sudo nano /etc/hosts` and add the following 127.0.0.1 localhost YourHostname.local ::1 localhost YourHostname.local 3. Clear the DNS cache > type `sudo killall -HUP mDNSResponder;say DNS cache flushed` Now, test your backend. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now