1
我必須部署一個應用程序在php上調試,它是使用一個wamp服務器開發的(在win上)。現在我必須將它部署在apache2 debian服務器上。該應用程序在使用wamp的開發人員PC上運行,但無法在debian服務器上運行。AJAX XMLHttpRequest給出錯誤
的問題是,所有的網格(jQuery的網格)的內容加載用ajax
grid.jqGrid({
datatype: "xml",
url:'../Controladores/cPedidos.php?action=lpd',
mtype: 'POST',
colNames:['FECHA','DEPOSITO','USUARIO'],
colModel:[
{name:'fecha_pedido',index:'fecha_pedido',width:120, sorttype: 'date'},
{name:'deposito',index:'deposito',width:500, editable:false},
{name:'usuario_id',index:'usuario_id',width:150, editable: false}
],
rowNum:10,
rowList:[10,20,40],
pager: '#paginacion',
gridview:true,
rownumbers:true,
ignoreCase:true,
sortname: 'fecha_pedido',
viewrecords: true,
sortorder: "asc",
caption:"Pedidos",
height: "100%",
subGrid : true,
subGridUrl: '../Controladores/cPedidos.php?action=lad',
subGridModel: [{ name : ['Codigo','Cantidad','Articulo','Estado','Categoria','Observaciones'],
width : [50,50,450,60,60,150] }],
editurl: '../Controladores/cPedidos.php?action=editar',
ondblClickRow: function(id, ri, ci) {
// edit the row and save it on press "enter" key
grid.jqGrid('editRow',id,true,null,null, 'clientArray');
},
onSelectRow: function(id) {
if (id && id !== lastSel) {
// cancel editing of the previous selected row if it was in editing state.
// jqGrid hold intern savedRow array inside of jqGrid object,
// so it is safe to call restoreRow method with any id parameter
// if jqGrid not in editing state
if (typeof lastSel !== "undefined") {
grid.jqGrid('restoreRow',lastSel);
}
lastSel = id;
}
}
}).jqGrid('navGrid','#pager',{add:false,edit:false},{},{},myDelOptions,{multipleSearch:true,overlay:false});
//grid.jqGrid('filterToolbar',{defaultSearch:'cn',stringResult:true});
$("#filtro").change(function(){
var valor = $("#filtro").val();
$("#tablapedidos").jqGrid().setGridParam({url:'../Controladores/cPedidos.php?action=lpd&filtro='+valor}).trigger('reloadGrid');
});
的問題是,什麼都不裝,使用Firebug我得到那個職位的url被中止。如果我直接在瀏覽器上輸入url(ff),我得到一個「連接已重置」錯誤,Chrome:「錯誤324(net :: ERR_EMPTY_RESPONSE)」。如果我這樣做對開發商的電腦我得到的XML文件的本地主機中,URL頁面使用回聲, 範例(未完成)
function getArticulosPendientes() {
if (stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml")) {
header("Content-type: application/xhtml+xml;charset=utf-8"); } else {
header("Content-type: text/xml;charset=utf-8");
}
$et = ">";
echo "<?xml version='1.0' encoding='utf-8'?$et\n";
echo "<rows>";
$lista = getListaArticulosPendientes($_POST);
$resultado = array();
for($i = 0; $i < count($lista); $i++) {
$fila = $lista[$i];
$dif = diferenciaCompradoPedido($fila['item_id']);
if($dif > 0) {
$fila['cantidad'] = $dif;
array_push($resultado, $fila);
}
else {
array_push($resultado, $fila);
}
}
for($a = 0; $a < count($resultado); $a++) {
$row = $resultado[$a];
$fecha = date("d/m/Y H:i", strtotime($row["fecha_pedido"]));
echo "<row id='". $row["item_id"]."'>";
echo "<cell>". $fecha."</cell>";
echo "<cell>". $row["cantidad"]."</cell>";
echo "<cell><![CDATA[". utf8_encode($row["descripcion"])."]]></cell>";
echo "<cell><![CDATA[". $row["categoria"]."]]></cell>";
echo "<cell><![CDATA[". $row["usuario_id"]."]]></cell>";
echo "<cell><![CDATA[". $row["estado"]."]]></cell>";
echo "<cell><![CDATA[". $row["observaciones"]."]]></cell>";
echo "</row>";
}
echo "</rows>";
}
任何想法創建XML文件
如果我使用瀏覽器導航到頁面(絕對路徑),我仍然得到相同的錯誤,例如:http://10.10.10.10/compras/Controladores/cPedidos.php?行動=棉卷 – EricGS 2013-03-25 13:15:10