[Plugin: Easy Comment Uploads] Plugin Conflicts with ecommerce, simple shopping, etc.
-
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)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Easy Comment Uploads] Plugin Conflicts with ecommerce, simple shopping, etc.’ is closed to new replies.