Closed (fixed)
Project:
Views (for Drupal 7)
Version:
6.x-2.7
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
9 Nov 2009 at 03:38 UTC
Updated:
9 Jul 2015 at 21:26 UTC
Jump to comment: Most recent
Comments
Comment #1
dawehnerEnable error display and tell what is displayed.
Comment #2
Anonymous (not verified) commentedError reporting is set to screen and log.
As above - screen is white.
Nothing in logs.
It would appear that the new view that was created, saved, despite the WSD.
Comment #3
merlinofchaos commentedIf you are getting a whitescreen there must be an error of some kind, somewhere. Either your apache logs, or your watchdog logs, or if your site has a separate php error log, perhaps there.
Comment #4
Anonymous (not verified) commentedSorry but I don't have access to the clients apache logs.
Can you tell me about the 'separate phperror log' ? Is this something I can set up for future reference?
Comment #5
merlinofchaos commentedThe php.ini file contains an error_log directive. Most systems set this to 'syslog' but it can be set to a separate file. I don't know for sure but you might be able to use ini_set() in your settings.php file to change this to a file. That could be useful for doing temporary error reporting.
There is another value you can set (I forget which one it is, but google should be able to find it for you) that lets PHP report errors to the client, and that might help as well. You do not ordinarily want to run with it on, but it could be handy while debugging.
Comment #6
merlinofchaos commentedBTW, just to doublecheck -- you did hit update.php, right? This kind of error *could* happen if changes to the database need to be made.
Comment #7
Anonymous (not verified) commentedThanks merlinofchaos. I will look at those files. Yes, did update.php ;) In fact just ran another one now for good measure and the WSD remains.
Comment #8
Anonymous (not verified) commentedOk wrote the output to a file. (Interesting learning opportunity!)
This is what I get trying to save the view the first time.
Trying to save it a second time simply repeats the top line, adding it to the log file.
Comment #9
Anonymous (not verified) commentedI coded out the Zend lines, from the php.ini, as I found out that the server is 64 bit running FreeBSD and therefore not compatible anyway with the Zend Optimizer, so possibly a 'red herring' to this issue.
So I guess its a PHP memory issue in general not just a Views one?
Comment #10
merlinofchaos commentedHmm. Yeah, looks like it's running out of memory trying to rebuild the menu after save. There's some resources on drupal.org to help you increase the amount of memory available, which can be necessary on sites with a lot of modules.