Answers for "php send 500 response"

PHP
4

500 error php

/* Find Mistakes in your code or Database connection */
/* Enable Show Errors From Apache Server */
/* Try Debugging */
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
/* Check Your .htaccess for errors try emptying it for a while */
Posted by: Guest on December-16-2021
0

php header 500

header("HTTP/1.0 500 Internal Server Error");
Posted by: Guest on July-22-2020

Browse Popular Code Answers by Language