Hallo
I've installed Drupal 7.8 and I added the following modules:
IMCE, CKeditor, CKEditor link, Pathauto, Token, Views, Views UI
1) I created a menu, in / admin / structure / menu whit name "Il Sorriso nell'Anima"
2) In admin / structure / types / manage / settings "page of the" menu I added my menu
3) I turned on the block associated with the menus in / admin / structure / block
4) I added some pages associated with this menu "Il Sorriso nell'Anima"
Until this point everything is ok
5) I created a second menu, in / admin / structure / menu "Attività"
Now if I go to admin / structure / types / manage / page I have WSOD (White Screen Of Death)
I would like to give more information about this issue.
In / admin / reports / event / I have not found anything significantIn / admin / reports / event / I have not found anything significant :-(
For me is the second time that I reinstall Drupal on the same site and returns the same error.
Is there some form of debugging that can help to pinpoint the problem?
Thanks to all
Comments
Comment #1
cleverington commentedCan you copy/paste the actual error you are receiving? This would help in determining if it is a module, apache, or Drupal issue.
Comment #2
Scorpio26 commentedThank cleverington
in error_log_php on my server apache I have the following errors when i go in
admin/structure/types/manage/page:16-Sep-2011 18:33:05] PHP Fatal error: Call to undefined function comment_node_type_load() in /home/nilsorrc/public_html/includes/menu.inc on line 579
In fact, the comment module is not active!
If I activate the comment module I have not errors.
But for me this is not the good solution for this site because I do not want to have comments for the various contents. Normally in D6 for not have cooments I disable the module coment.
If you need more information I'm available.
Thanks
Comment #3
cleverington commentedScorpio26:
From menu.inc:
Quick-answer is: Re-enable the comments module and then create your Content Types (CCK is in Core 7 now) with comments 'Hidden'. Save you hours of debugging.
Long-answer is: One of the modules is calling the comment module through
_menu_load_objects.Either the menu module itself, or through a link using the menu-module.
I believe it might actually be part of Views using the Field UI (part of Core-CCK). Not sure and that would take a long time to debug......
Here's the API link on the comment_node_type_load.
I think the solution to your problem is either the Quick Answer listed above, or creating a module/theme function for altering either A) the Field UI, or B) the menu.inc
I propose option A.........
Comment #4
Bèr Kessels commentedHere is a quick way to reproduce, using Drush.
Traceback:
Comment #5
Bèr Kessels commentedSetting to Major, because of:
Not many users will disable comment module. But those who do, will experience some inaccessible admin pages.
So, not major because the bug or a fix is important, but because it fits exactly in the description of major.
Comment #6
Bèr Kessels commentedComment #7
Bèr Kessels commentedClearing cache fixes the problem, as per #914676: Content Type becomes totally inaccessible after Comment Module is disabled.
Comment #8
catchDoes #996236: drupal_flush_all_caches() does not clear entity info cache help? Sounds like stale entity info, which is then leaving stale information in the menu router (since field UI uses that to generate menu items).
Comment #9
Anonymous (not verified) commentedNo response from OP, closing.
Comment #10
Anonymous (not verified) commentedThis problem is occurring with a content type I created in 7.24. Added a couple of image fields including one that used drag and drop. Disabled Drag and Drop module along with several others while troubleshooting a separate issue. Now getting WSOD when trying to manage the fields on this content type at:
admin/structure/types/manage/reviews/fields
where "reviews" is the content type.
All other content types allow admin to access /fields.
Comment #11
cleverington commentedComment #12
quietone commented