<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>We Rock Your Web Forum Topic: Drupal - blank page after submit</title>
<link>http://forum.werockyourweb.com/</link>
<description>We Rock Your Web Forum Topic: Drupal - blank page after submit</description>
<language>en</language>
<pubDate>Thu, 17 May 2012 23:27:30 +0000</pubDate>

<item>
<title>Anonymous on "Drupal - blank page after submit"</title>
<link>http://forum.werockyourweb.com/drupal/drupal-blank-page-after-submit#post-1086</link>
<pubDate>Mon, 29 Aug 2011 19:36:51 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">1086@http://forum.werockyourweb.com/</guid>
<description>&#60;p&#62;Thanks a lot &#34;cwd senior admin&#34;!!!&#60;/p&#62;
&#60;p&#62;Your help was very important to me. I had a problem with my rss.xml file and your tips saved my life today!!&#60;/p&#62;
&#60;p&#62;Greetings from Colombia!
&#60;/p&#62;
</description>
</item>
<item>
<title>Anonymous on "Drupal - blank page after submit"</title>
<link>http://forum.werockyourweb.com/drupal/drupal-blank-page-after-submit#post-975</link>
<pubDate>Thu, 07 Jul 2011 21:02:08 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">975@http://forum.werockyourweb.com/</guid>
<description>&#60;p&#62;Thanks, removing spaces at the end of the pages on the *.tpl did it! What a great prank to pull on 'newbies'!
&#60;/p&#62;
</description>
</item>
<item>
<title>Anonymous on "Drupal - blank page after submit"</title>
<link>http://forum.werockyourweb.com/drupal/drupal-blank-page-after-submit#post-825</link>
<pubDate>Sun, 27 Feb 2011 17:01:37 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">825@http://forum.werockyourweb.com/</guid>
<description>&#60;p&#62;oh my goodness, i am looking for a long long while always in hope solving my white screen of death problem.&#60;/p&#62;
&#60;p&#62;you should make a donation button, i would donate my soul :)! thank u that much!
&#60;/p&#62;
</description>
</item>
<item>
<title>Anonymous on "Drupal - blank page after submit"</title>
<link>http://forum.werockyourweb.com/drupal/drupal-blank-page-after-submit#post-544</link>
<pubDate>Thu, 16 Sep 2010 22:01:43 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">544@http://forum.werockyourweb.com/</guid>
<description>&#60;p&#62;The nobel prize for the most helpful drupal tip goes to &#60;/p&#62;
&#60;p&#62;ba ba ba daaaaaaaa!&#60;/p&#62;
&#60;p&#62;'cwd senior admin'&#60;/p&#62;
&#60;p&#62;This was helpful beyond measure.
&#60;/p&#62;
</description>
</item>
<item>
<title>Anonymous on "Drupal - blank page after submit"</title>
<link>http://forum.werockyourweb.com/drupal/drupal-blank-page-after-submit#post-348</link>
<pubDate>Mon, 07 Jun 2010 08:22:51 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">348@http://forum.werockyourweb.com/</guid>
<description>&#60;p&#62;I had the exact same problem - Basically the is caused by having  extra (hidden) utf-8 characters at the beginning of the theme files.&#60;/p&#62;
&#60;p&#62;To avoid this, go to the beginning of the php files in the theme folder which start with the following:&#60;br /&#62;
&#60;code&#62;&#38;lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Strict//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#34;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Go to the &#38;lt; and press delete several times to delete it and any hidden characters.  Then reenter it, save the files, and upload them.  Everything should work fine from that point.  (You may need to flush the cache Admin-&#38;gt;Site Configuration-&#38;gt;Performance-&#38;gt;Clear cached data).
&#60;/p&#62;
</description>
</item>
<item>
<title>cwd on "Drupal - blank page after submit"</title>
<link>http://forum.werockyourweb.com/drupal/drupal-blank-page-after-submit#post-241</link>
<pubDate>Tue, 09 Feb 2010 11:07:45 +0000</pubDate>
<dc:creator>cwd</dc:creator>
<guid isPermaLink="false">241@http://forum.werockyourweb.com/</guid>
<description>&#60;p&#62;There's several things you can try. In our experience, the most common culprit is a space after the closing PHP brackets in your theme files. Open each theme file (page.tpl.php, node.tpl.php, template.ppl.php, etc.), go to the last line, and hit the delete key after the last character several times, until there's no more blank characters at the end.&#60;/p&#62;
&#60;p&#62;Another thing to try is adjusting the header of your template to the following:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34;&#60;br /&#62;
        &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#38;gt;&#60;br /&#62;
&#38;lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34; xml:lang=&#34;&#38;lt;?php print $language-&#38;gt;language ?&#38;gt;&#34; lang=&#34;&#38;lt;?php print $language-&#38;gt;language ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
&#38;lt;head&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Finally, in your template.tpl.php file, make sure there is only one opening and closing PHP brace (ie. &#60;code&#62;&#38;lt;?php&#60;/code&#62; at top, and &#60;code&#62;?&#38;gt;&#60;/code&#62; at bottom).&#60;/p&#62;
&#60;p&#62;When you've made all those changes, re-upload your files, and flush all your caches. Try editing a page, saving, and seeing if you still get the white (blank) screen. If you do, check out &#60;a target=&#34;_blank&#34; href=&#34;http://drupal.org/node/158043&#34;&#62;this thread&#60;/a&#62; on the Drupal website for more things to try.
&#60;/p&#62;
</description>
</item>
<item>
<title>DrupalJunkie on "Drupal - blank page after submit"</title>
<link>http://forum.werockyourweb.com/drupal/drupal-blank-page-after-submit#post-240</link>
<pubDate>Tue, 09 Feb 2010 11:04:34 +0000</pubDate>
<dc:creator>DrupalJunkie</dc:creator>
<guid isPermaLink="false">240@http://forum.werockyourweb.com/</guid>
<description>&#60;p&#62;I just installed a new Drupal theme from &#60;a target=&#34;_blank&#34; href=&#34;http://store.templatemonster.com?aff=obelix&#34;&#62;this site&#60;/a&#62; (they have a pretty good selection now). Every time I update a page or site setting, however, the screen goes blank (white). The changes are saved, but it's annoying to see the white screen of death (WSOD) every time I submit a page or change/ update something.&#60;/p&#62;
&#60;p&#62;Even worse, with the backup &#38;amp; migrate module, when I try and download a file, I get a screen full of characters instead of the file. &#60;/p&#62;
&#60;p&#62;The problem is definitely with the theme - when I switch back to the default Garland theme I don't get the blank screens. &#60;/p&#62;
&#60;p&#62;Any ideas for obvious things I could be checking?
&#60;/p&#62;
</description>
</item>

</channel>
</rss>

