Internal Error 500 Apache, but nothing in the logs?

后端 未结 11 590
失恋的感觉
失恋的感觉 2020-11-27 14:36

I\'m getting 500 Internal Server errors when I try to make an HTTP POST to a specific address in my app. I\'ve looked into the server logs in the custom log directory speci

11条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-27 14:46

    Check your php error log which might be a separate file from your apache error log.

    Find it by going to phpinfo() and check for error_log attribute. If it is not set. Set it: https://stackoverflow.com/a/12835262/445131

    Maybe your post_max_size is too small for what you're trying to post, or one of the other max memory settings is too low.

提交回复
热议问题