Mercurial > hg > rr-repo
annotate sites/all/modules/views/help/ui-crashes.html @ 0:ff03f76ab3fe
initial version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Wed, 21 Aug 2013 18:51:11 +0100 |
parents | |
children |
rev | line source |
---|---|
danielebarchiesi@0 | 1 <h2>Troubleshooting UI crashes</h2> |
danielebarchiesi@0 | 2 |
danielebarchiesi@0 | 3 There are a number of reasons why the Views UI may crash; the most common state or result of a crash is either a white screen (everyone's favorite WSOD), or a screen of what looks like garbage text. This is generally a javascript crash of some fashion. |
danielebarchiesi@0 | 4 |
danielebarchiesi@0 | 5 To get the most timely and accurate help in the issue queue, please try to gather this information: |
danielebarchiesi@0 | 6 |
danielebarchiesi@0 | 7 Check your javascript console. In Firefox, you can hit ctrl-shift-j or use firebug. Copy this information into the issue, or attach it as a text file. Really - this is the single biggest thing you can do to help figure out where the crash is coming from. |
danielebarchiesi@0 | 8 |
danielebarchiesi@0 | 9 |
danielebarchiesi@0 | 10 <h3>JSON prepends data with jQuery, causing editing and preview problems.</h3> |
danielebarchiesi@0 | 11 This section originally stems from <a href="http://drupal.org/node/346662">this issue.</a> |
danielebarchiesi@0 | 12 |
danielebarchiesi@0 | 13 Some modules may add PHP improperly, disrupting normal jQuery operation. Errors may look like |
danielebarchiesi@0 | 14 |
danielebarchiesi@0 | 15 <code> |
danielebarchiesi@0 | 16 <? session_module_name("files"); ?>{ "default": "default" } |
danielebarchiesi@0 | 17 </code> |
danielebarchiesi@0 | 18 |
danielebarchiesi@0 | 19 This can also be a server configuration issue. In one case, this was solved by commenting out |
danielebarchiesi@0 | 20 |
danielebarchiesi@0 | 21 auto_prepend_file = c:\wamp\www\php.ini.prepend |
danielebarchiesi@0 | 22 |
danielebarchiesi@0 | 23 in the php.ini. |
danielebarchiesi@0 | 24 |
danielebarchiesi@0 | 25 Another page to look at is the drupal.org page on <a href="http://drupal.org/node/158043">White screens</a> |