• Error found below during Quote Generation

    Warning: Cannot modify header information – headers already sent by (output started at /home/xxxxxxxx/public_html/wp-admin/includes/template.php:1995) in /home/xxxxxxxx/public_html/wp-content/plugins/wp-smart-crm-invoices-free/inc/crm/documenti/insert.php on line 275

Viewing 1 replies (of 1 total)
  • Plugin Author andrew_fisher

    (@andrew_fisher)

    Hi, it looks like you have
    define('WP_DEBUG', true); in wp-config,php, this may cause unwanted output before to redirect via php header('location,....')( as we do) in documenti/insert.php on line 275.
    If you disable debug define('WP_DEBUG', false);
    or use

    define('WP_DEBUG', true);
    define('WP_DEBUG_LOG', true);
    define('WP_DEBUG_DISPLAY', false);
    

    so that the debug log is writte in a log file under wp-content folder the issue should be solved

Viewing 1 replies (of 1 total)
  • The topic ‘Error found below during Quote Generation’ is closed to new replies.