Search
 
SCRIPT & CODE EXAMPLE
 

PHP

jquery ajax 500 internal server error php

// That mean you have error in server side
// A 500 error is not a problem with your JS - it s server-side
// Add this code at the top of your PHP:

ini_set('display_errors', 1); 
error_reporting(E_ALL);

// That will show you what the problem is in your PHP code. If it s a syntax error (seems quite likely for a code 500)

// Comment all code in your page PHP and make simple sentense " Hello this is my page " and test 
// if all good then find your error
Comment

PREVIOUS NEXT
Code Example
Php :: bind in pdo 
Php :: current loggedin user laravel 
Php :: php artisan cache 
Php :: convert stdclass object to array php 
Php :: select tag in laravel collective 
Php :: laravel 8 $request-intersect not working 
Php :: php ini_set timeout 
Php :: get the last saved row in a table laravel 
Php :: wordpress single post get category name 
Php :: how to override default name for apiresourc route in laravel 
Php :: how to add new column in laravel migration 
Php :: laravel inverse seeder 
Php :: Convert Carbon Seconds Into Days Hours Minute 
Php :: how to print count query in php 
Php :: php append line to file 
Php :: woocommerce add custom field data to cart page 
Php :: php change date format from d/m/y to y-m-d 
Php :: php index of last element in array 
Php :: file_put_contents php json file 
Php :: Install the php_mysql extensions 
Php :: laravel url previous 
Php :: how run phpunit test repeat 
Php :: php foreach array 
Php :: laravel env asset_url 
Php :: wordpress remove user roles 
Php :: slp price php 
Php :: laravel where update query 
Php :: password strength php 
Php :: php date modify plus 1 day 
Php :: add foreign key column laravel 5.8 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =