I just installed rc2 and added it to a view with a lot of fields, exposed filters and a few relationships. The format is FooTable. I don't code, so I don't know how to troubleshoot this. This view also uses an updated version of jquery, I think 1.8, so that FooTable will work.

Comments

hansfn’s picture

Status: Active » Postponed (maintainer needs more info)

PHP probably runs out of memory. You need to check the webserver error log to be sure.

topdillon’s picture

Is that what this means?

mod_fcgid: stderr: PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 17262110 bytes)

hansfn’s picture

Status: Postponed (maintainer needs more info) » Active

Yes, PHP is running out of memory. It used 268 MB and tried to allocate 17 MB more. You could try to increase memory_limit (in php.ini) to 512 MB (which is a lot) or make your view return less results.

topdillon’s picture

I created a new view with 4 fields and the checkbox, and one exposed filter so I could return 1 result. Still I get the white screen. What could be using so much resources?

hansfn’s picture

You should try to limit the actual number of results returned by the view. (Using an exposed filter doesn't change the number of results returned by the view.)

I don't know why your view is using so much memory.

topdillon’s picture

The dev version works fine. Thanks for your help.

hansfn’s picture

Status: Active » Closed (fixed)

Thx for testing the dev release. Not sure why it solved your problem, but I released 7.x-1.0-rc3 just now so you don't have to run a dev release.

jotwede’s picture

Version: 7.x-1.0-rc2 » 7.x-1.0-rc3

I just wanted to report: on my site (7.x-r.0-rc3) when having activated Entity Tokens 7.x-1.2 module (which comes with Entity API module) on clicking the "Send e-mail" button I get a WSOD ("PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (...)/drupal/includes/database/database.inc on line 2168").
When switching Entity Tokens off everything works as it is supposed to ...

I tried to reproduce this on a newly built (clean) site, but there everything works as designed, so I guess it has to do with my site-specific data.

Amendment: searching for similar errors in the context of Entity Tokens I found comment #86 of this discussion as solution for me.

hansfn’s picture

OK, you found one of the issues discussing this problem with Tokens. (It's not Views Send specific.) I normally point to #1203018: Memory timeout with entity tokens and token module and recommend using the Token Tweaks module.

hansfn’s picture

Issue summary: View changes

added jquery info.