By mitulpatel on
Hello,
currently I am facing problem with content submit. Whenever I tried to submit a content I got the blank page. but content which I submit get publish...
Can anyone help me in this problem?
Thanks,
Mitul Patel.
Hello,
currently I am facing problem with content submit. Whenever I tried to submit a content I got the blank page. but content which I submit get publish...
Can anyone help me in this problem?
Thanks,
Mitul Patel.
Comments
This is generally caused by
This is generally caused by one of your php files (usually the theme's template.php) ending with ?> followed by a blank line. Because it's not inside the
tag, the blank line gets sent to the browser and, if the page headers aren't complete yet, that breaks the page.Note that you don't actually need to close the php tag at the end of a file, so just removing the ?> entirely is the surest way to prevent this issue from arising.