[29-Dec-2016 15:35:30 America/Denver] PHP Warning: Unknown: POST Content-Length of 354 bytes exceeds the limit of 300 bytes in Unknown on line 0
Could this be what’s wrong? – I’ve exceeded some kind of limit?
]]>… and after clearing my catch… I still have the problem. ??
I keep looking for a debug.log but with no luck.
]]>define( 'WP_DEBUG', true);
]]>
/**#@-*/
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, true);
define(‘SCRIPT_DEBUG’, true);
define(‘SAVEQUERIES’, true);
$table_prefix = ‘wp_nnmm_’;
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define(‘WP_DEBUG’, true);
define(‘WP_MEMORY_LIMIT’, ‘3000M’);
// Enable WP_DEBUG mode
define( ‘WP_DEBUG’, true );
// Enable Debug logging to the /wp-content/debug.log file
define( ‘WP_DEBUG_LOG’, true );
// Disable display of errors and warnings
define( ‘WP_DEBUG_DISPLAY’, false );
@ini_set( ‘display_errors’, 0 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( ‘SCRIPT_DEBUG’, true );
/* That’s all, stop editing! Happy blogging. */
]]>