• Resolved jonm76

    (@jonm76)


    If you’re getting the “headers already sent” error: in upload-form.php, swap the content of lines one and two. I’m pretty sure the doctype text coming before the PHP is what causes the header error.

    so:

    <!doctype html>
    <?php require ('../../../wp-blog-header.php'); ?>

    becomes:

    <?php require ('../../../wp-blog-header.php'); ?>
    <!doctype html>

    This fixed it for me, as did deleting everything but the two lines of PHP (if you don’t care about the loss of styling on the file select box.)

Viewing 1 replies (of 1 total)
  • Plugin Author Thomas Wright

    (@tomdwright)

    Thanks, I will be including this is the next version.

    (For some reason, I never had this issue with any of the listed plugins myself which made fixing this rather difficult ?? ).

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Easy Comment Uploads] Plugin Conflicts with ecommerce, simple shopping, etc.’ is closed to new replies.