17 lines
451 B
Perl
17 lines
451 B
Perl
<?php
|
|
// Enable WordPress debug mode
|
|
define('WP_DEBUG', true);
|
|
define('WP_DEBUG_LOG', true);
|
|
define('WP_DEBUG_DISPLAY', false);
|
|
|
|
// Development environment
|
|
define('WP_ENVIRONMENT_TYPE', 'development');
|
|
|
|
// Disable file edits from WordPress admin (security)
|
|
define('DISALLOW_FILE_EDIT', false);
|
|
|
|
// Allow file modifications (for theme/plugin development)
|
|
define('DISALLOW_FILE_MODS', false);
|
|
|
|
// Increase memory limit
|
|
define('WP_MEMORY_LIMIT', '256M'); |