0
votes

My site is built with Drupal 7.19.

When I make an edit to a page, I get this message:

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log."

I checked my log messages, and I noticed I have many, many "page not found" with a message of "favicon.ico". I found this info but it did not fix: http://web3us.com/drupal6/how-create-web-site-handbook/how-setup-drupal-5/how-fix-faviconico-page-not-found-drupal

The edits to the page are reflected, but why this message? There is no 404 or 500 associated.

1
This issue remains unsolved...can anyone point me to general internal server error information? I don't have programming skills so any advice on how to start is appreciated! Thanks.DWooly824

1 Answers

1
votes

The missing favicon has nothing to do with the Internal Server error. The most likely issues is that your PHP memory limit is too low. Drupal 7 suggested memory limit is 128MB. You can change the limit in your settings.php file in the default (sites/default/settings.php) folder by adding the following line:

ini_set('memory_limit','128M');