When I try to access "/admin/structure/semantic_fields/add" I get a server 500 error.
Setup:
D7.39 multilanguage with a lot of additional modules.
Unfortunately nothing is shown within the drupal log (/admin/reports/dblog).
I use a local installation on MAMP Pro v3.3 with OS X 10.9.5.
The PHP log shows this -> memory issue:
[11-Nov-2015 08:10:37 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 13405466 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/database/database.inc on line 2171
[11-Nov-2015 08:10:49 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 7602138 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/theme.inc on line 2089
[11-Nov-2015 08:53:57 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 31889193 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/database/database.inc on line 2171
[11-Nov-2015 08:54:04 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 15253129 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/cache.inc on line 454
[11-Nov-2015 08:57:56 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 15430923 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/cache.inc on line 454
[11-Nov-2015 09:01:54 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 31889193 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/database/database.inc on line 2171
[11-Nov-2015 09:05:43 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 31889193 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/database/database.inc on line 2171
[11-Nov-2015 09:05:51 Europe/Berlin] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 14731451 bytes) in /Applications/MAMP/htdocs/testlab_immo/d7immo/includes/cache.inc on line 454
I will post more details soon.
Comments
Comment #2
drupa11y commentedIncrease the memory from 256 to 512 did not solve the issue.
Comment #3
drupa11y commentedWhen increasing the mem to 1024M and doubling the I get the following error:
Comment #4
donquixote commentedThe problem is the token tree it tries to show.
You can edit
semantic_fields_ctools_export_ui_form()like this, if you don't need token:I think the entire token integration should be made optional.
Comment #5
nilesh.addweb commentedTry installing Token Tweaks module (https://www.drupal.org/project/token_tweaks) and set token depth to 2. It should resolve token errors.