我有一个带Ubuntu 12.04,Apache 2.2和PHP 5.3.10的家庭网络服务器。它还没有在线,我只是通过LAN从Windows机器连接到它。我没有Apache缓存模块,也没有PHP缓存(除非有一些我不知道的默认模块)。
更详细:
我有一个在php中生成的表单。在一个脚本中创建一个数组,它包含在视图php文件中并用于制作表单,并且包含在另一个文件中。我对数组进行了更改,但它没有显示在表单中。当文件在我的WAMP服务器上时,我没有这个问题。
到目前为止,我已尝试过:
EnableSendfile Off
添加到httpd.conf。sync; sudo echo 3 > /proc/sys/vm/drop_caches
缓存内存。我正式出于想法。还有其他人吗?
编辑: 数组加载的一部分:
$newAirmenMenu = array(
'New Ratings' => array(
'New Student Pilots' => 'new_s',
'Students Pilots who got their Private Airplane Single Engine Land' => 'new_s2pasel',
菜单是在一个遍历数组的函数中完成的。 html输出的开头是:
<div id='New-Ratings' class='panel-collapse collapse'>
<div class='panel-body'>
<input type='checkbox' name='newairmen[]' value='new student pilots'> New Student Pilots<br />
<input type='checkbox' name='newairmen[]' value='student to pasel'> Students Pilots who got their Private Airplane Single Engine Land<br />
这是数组中的旧信息。