This commit introduces a more reliable and consistent approach to setting up the development environment using backups: - Add setup-from-backup.sh script for environment setup from existing backups - Standardize script naming and organization - Move obsolete scripts to bin/obsolete directory - Update documentation with new workflow instructions - Create migration guide for transitioning to new workflow - Update Memory Bank with workflow improvements The new workflow provides: - More reliable environment setup - Faster setup process - Offline development capability - Consistent development environments across team members Breaking changes: - setup-dev.sh is replaced by setup-from-backup.sh - sync-and-setup.sh is replaced by separate scripts - verify-with-wpcli.sh is no longer used Migration path is documented in MIGRATION_GUIDE.md
25 lines
No EOL
737 B
ApacheConf
25 lines
No EOL
737 B
ApacheConf
|
|
# BEGIN WPForms
|
|
# The directives (lines) between "BEGIN WPForms" and "END WPForms" are
|
|
# dynamically generated, and should only be modified via WordPress filters.
|
|
# Any changes to the directives between these markers will be overwritten.
|
|
# Disable PHP and Python scripts parsing.
|
|
<Files *>
|
|
SetHandler none
|
|
SetHandler default-handler
|
|
RemoveHandler .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo
|
|
RemoveType .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo
|
|
</Files>
|
|
<IfModule mod_php5.c>
|
|
php_flag engine off
|
|
</IfModule>
|
|
<IfModule mod_php7.c>
|
|
php_flag engine off
|
|
</IfModule>
|
|
<IfModule mod_php8.c>
|
|
php_flag engine off
|
|
</IfModule>
|
|
<IfModule headers_module>
|
|
Header set X-Robots-Tag "noindex"
|
|
</IfModule>
|
|
# END WPForms |