PHP 调用发生 500 内部服务器错误

500 Internal Server Error on PHP calls

当我使用 $.ajax 请求 php 文件时,我遇到了这个问题,它总是 return 我一个 500 服务器错误,但只有当我将文件上传到我的服务器时。 我在 Windows 8.1 上使用 XAMPP,在 localhost 中运行完美。

我试过直接访问 php 文件的 url,也出现同样的错误。

Ajax:

function get_blog(reload_list){
    var $titulo, $texto, $response, $post, $post_list;
    var parameters = window.location.search;
    $.ajax({
        method: 'get',
        url: '/php/blog.php' + parameters,
        success: function(data){
            if(data == "404"){
                $("#blog").html("404 El articulo que buscas no existe");
            } else {
                $response = data;
                $post_list = $response.post_list;
                $titulo = $response.post.titulo;
                $texto =  $response.post.texto;
                $("title#blog_title").html("IBR - " + $titulo);
                $("h3#blog_title").html($titulo);
                $("#blog_text").html($texto);

                if(reload_list){
                    for(i=0; i<=$post_list.length; i++){
                        $("#post_list").append($post_list[i]);
                    }
                }
            }
        }
    });

PHP:

<?php
error_reporting(E_ALL);
ini_set('display_errors' 1); 

$l =  mysql_connect ( "localhost" , "myserver" , "mypass" ) or die("Error connecting:<BR><BR>".mysql_error());

mysql_select_db( "mydb" ) or die("Error getting db:<BR><BR>".mysql_error()); 
if(!isset($_GET['post_id'])) {
    $query = mysql_query("SELECT * FROM mytable ORDER BY id DESC LIMIT 1") or die(mysql_error());
    $row = mysql_fetch_array($query);
    $id = stripslashes($row['id']); 
    $titulo = stripslashes($row['titulo']); 
    $texto = stripslashes($row['texto']); 

    $post = [
            'id' => $id,
            'titulo' => $titulo,
            'texto' => $texto
    ];

}else{
    // echo $_GET['post_id'];
    $post_id = $_GET['post_id'];
    $query = mysql_query("SELECT * FROM mytable WHERE id=$post_id ORDER BY id DESC LIMIT 1") or die(mysql_error());
    $row = mysql_fetch_array($query);
    if(empty($row)){
        die("404");
    }
    $id = stripslashes($row['id']); 
    $titulo = stripslashes($row['titulo']); 
    $texto = stripslashes($row['texto']); 


    $post = [
            'id' => $id,
            'titulo' => $titulo,
            'texto' => $texto
    ];
}


$query = mysql_query("SELECT * FROM mytable ORDER BY id DESC") or die(mysql_error());
while ($row = mysql_fetch_array($query) )
{

    $id = stripslashes($row['id']); 
    $titulo = stripslashes($row['titulo']); 

    $li = '<a class="text_decoration post_list_item" href="devocional.html?post_id='.$id.'"><li>'.$titulo.'</li></a>';

    $post_list[]= $li;
}

$response = [
    'post' => $post,
    'post_list' => $post_list
];

$json_response = json_encode($response);
print_r($json_response);
?>

实际上我无法访问我的 error_log。还尝试通过:

查看错误
error_reporting(E_ALL);
ini_set('display_errors' 1);

但是浏览器只显示一个空白页面。我在使用 PHP SDK 的 Facebook API 调用中也遇到了同样的问题。我真的不知道该怎么办。感谢您提前提供帮助。

PHP 在 5.4 之前不支持您当前使用的 shorthand 数组。 http://php.net/manual/en/migration54.new-features.php, http://php.net/manual/en/language.types.array.php

这是您的更新代码,它应该可以工作并与 5.6 向前兼容。

<?php
error_reporting(E_ALL);
ini_set('display_errors', 1); 

$l =  mysql_connect ( "localhost" , "myserver" , "mypass" ) or die("Error connecting:<BR><BR>".mysql_error());

mysql_select_db( "mydb" ) or die("Error getting db:<BR><BR>".mysql_error()); 
if(!isset($_GET['post_id'])) {
    $query = mysql_query("SELECT * FROM mytable ORDER BY id DESC LIMIT 1") or die(mysql_error());
    $row = mysql_fetch_array($query);
    $id = stripslashes($row['id']); 
    $titulo = stripslashes($row['titulo']); 
    $texto = stripslashes($row['texto']); 

    $post = array(
            'id' => $id,
            'titulo' => $titulo,
            'texto' => $texto
    );

}else{
    // echo $_GET['post_id'];
    $post_id = $_GET['post_id'];
    $query = mysql_query("SELECT * FROM mytable WHERE id=$post_id ORDER BY id DESC LIMIT 1") or die(mysql_error());
    $row = mysql_fetch_array($query);
    if(empty($row)){
        die("404");
    }
    $id = stripslashes($row['id']); 
    $titulo = stripslashes($row['titulo']); 
    $texto = stripslashes($row['texto']); 


    $post = array(
            'id' => $id,
            'titulo' => $titulo,
            'texto' => $texto
    );
}


$query = mysql_query("SELECT * FROM mytable ORDER BY id DESC") or die(mysql_error());
while ($row = mysql_fetch_array($query) )
{

    $id = stripslashes($row['id']); 
    $titulo = stripslashes($row['titulo']); 

    $li = '<a class="text_decoration post_list_item" href="devocional.html?post_id='.$id.'"><li>'.$titulo.'</li></a>';

    $post_list[]= $li;
}

$response = array(
    'post' => $post,
    'post_list' => $post_list
);

$json_response = json_encode($response);
print_r($json_response);
?>

此外,此处必须注意...

  1. 将您的 SQL 驱动程序从 mysql_ 更改为 mysqli 或 PDO。
  2. 将您的用户输入与您的查询分开,或者 最少使用 mysql_real_escape_string (该函数名称可能是 顺序颠倒)。您目前接受 SQL 次注射。