GeoIP& fopen() - “fopen(GeoIP / GeoIP.dat)[function.fopen]:无法打开流”即使文件存在也会出现?

时间:2011-08-13 22:36:51

标签: php include fopen geoip

我一直在尝试调试此错误超过三个小时,更改文件名,尝试使用GeoIP Lite而不是GeoCity(后者有一个27mb文件要包括在内,所以这个想法fopen()已经有了最大),等等。

这是我的结构文件结构:index.php -> include("configuration/config.php") - config.php -> include("inc/geo_text.php") -> geo_text.php

geo_text.php的内容是:

$ip = $_SERVER['REMOTE_ADDR'];
include("GeoIP/geoip.inc");
$gi = geoip_open("GeoIP/GeoIP.dat",GEOIP_STANDARD);
$count_name = geoip_country_name_by_addr($gi, $ip);
geoip_close($gi);

echo($count_name);

现在,如果我访问geo_text.php,则不会出现任何错误,只是为了确保我将echo($count_name)放在geo_text.php中,然后我的国家/地区返回了它。

但是,当我运行config.php时,它会返回错误:

Warning: fopen(GeoIP/GeoIP.dat) [function.fopen]: failed to open stream: No such file or directory in /nfs/c09/h02/mnt/177978/domains/domain.com/html/labs/final/configuration/inc/GeoIP/geoip.inc on line 399 Can not open GeoIP/GeoIP.dat

有没有人知道为什么会这样?

2 个答案:

答案 0 :(得分:2)

SSH进入您的服务器并运行以下命令(假设它是Linux服务器):

cd /nfs/c09/h02/mnt/177978/domains/domain.com/html/labs/final/configuration/inc/GeoIP/
ls -lah

然后将输出粘贴到这里供我们查看。我的猜测是那条路不存在。


这很奇怪。作为测试,尝试将两个地理文件移动到与代码文件相同的目录中,然后相应地更改代码中的路径。


它正在检查domain.com中的文件,但你只是cd到了themeplated.com,这就是问题所在。您的代码需要指向themeplated.com目录。

/ NFS / C09 / H02 / MNT / 177978 /域/的 domain.com / HTML /实验室/最终/配置/ INC / GeoIP的/ /nfs/c09/h02/mnt/127878/domains/themeplated.com/html/labs/final/c onfiguration / INC / GeoIP的/

答案 1 :(得分:1)

这是一个路径问题。

  

geoip_open( “/绝对/路径/到/ GeoIP的/ GeoIP.dat”,GEOIP_STANDARD);

应该有用。