At this point in time, it may be best to use Local – Local WordPress development made simple (localwp.com) for local development.
Solid Backups makes it easy to develop WordPress sites locally and move them to the live site URL. For more information on moving WordPress sites with Solid Backups, visit the Migration section.
SUPPORT DISCLAIMER: As running a local development environment is in fact running a server, you — the user — are expected to have an understanding of how a server is configured and operated and that iThemes cannot be expected to diagnose and fix server issues in the same way that we would not diagnose and fix commercial host server issues. These development environments have their own support offerings and they should be used.
XAMPP
XAMPP for Windows: https://www.apachefriends.org/index.html
MAMP
- To modify your php.ini file please see the Mamp documentation. Recommended changes can be see under the Mamp Pro section below.
MAMP PRO
- To modify your php.ini file, select File -> Edit Template -> PHP -> PHP (version) ini
- See the below defaults and the recommended changes below.
Mamp php.ini defaultsmax_execution_time = 30 ; Maximum execution time of each script, in seconds max_input_time = 60 ; Maximum amount of time each script may spend parsing request data memory_limit = 32M ; Maximum amount of memory a script may consume (8MB) magic_quotes_gpc = On
Mamp php.ini recommendationsmax_execution_time = 60 ; Maximum execution time of each script, in seconds max_input_time = 60 ; Maximum amount of time each script may spend parsing request data memory_limit = 256M ; Maximum amount of memory a script may consume (8MB) magic_quotes_gpc = Off