當我打開工作正常index.php
上本地主機 - 顯示全部或PHP錯誤,如(身份不明的變量等)和網頁在不工作的頁面所有。然而完全相同的PHP文件的遠程服務器(Godaddy的舉例)PHP腳本不工作WAMP本地主機,但遠程服務器
的index.php
文件開始與
<?
require_once ('templates/header.php');
?>
<div class='grid_12'>
<table>
<div id="form" > and son on....
的header.php
文件上工作的開頭:
<?php
session_start();
include('classes/secure.class.php'); // include the class
$secure = new secure(); // load the class
$secure->secureGlobals(); // run the main class function
require_once ('config.php');
require_once ('functions.php');
require_once ('templates/commonheader.php');
require_once ('lang.php');
header('Content-type: text/html; charset=$charset');
?> and so on...
我假設有一PHP SESSIONS
在localhost問題。我不知道爲什麼相同的腳本不能在localhost中工作。任何幫助表示讚賞。
J.
我認爲你的服務器是開發環境並顯示所有警告或錯誤,而你的localhost不顯示 – iatboy 2014-10-04 07:57:17