I get a 500 internal server error when navigating to the revisions page for any node. I can view pending revisions through the pending revisions block and jump directly to the revision, but I cannot see a comprehensive list at node/{nid}/revisions.

I am light on details right now. I tried checking my server log for more detail but nothing jumped out at me. Any pointers on what more I should get and where I might see better information on my server?

Again, apologies for not having more information, but I'll gladly seek it out if someone has some pointers on where to look? I have some debugging experience in PHP, but haven't really looked deeply at this module and don't know where to start.

Comments

rdeboer’s picture

Hi Jason,
You could start by making sure you get as many diagnostics as possilbe.
For instance in your php.ini file, set the following

error_reporting  =  E_ALL
display_errors = On

; Even when display_errors is on, errors that occur during PHP's startup
; sequence are not displayed.
display_startup_errors = On

; Log errors into a log file
log_errors = On

; Log errors to specified file (example is for Mac MAMP stack)
error_log = "/Applications/MAMP/logs/php_error.log"

Then restart your Drupal stack.
See if that puts some clues on your screen rather than a WSOD.

rdeboer’s picture

Category: bug » support
Status: Active » Postponed (maintainer needs more info)
jason.lally@gmail.com’s picture

Thanks so much for the help. I realized that I was mistakenly looking at the wrong error log to begin with. Turns out the problem was caused by some code in the Menu Icons module.

Thanks,
Jason

rdeboer’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

Great! Then we can close this issue.
Rik