0

I've never tired this on another machine since I'm already sure it has to deal with my configuration but no idea how I'd approach it. Basically I have one file called info.php which contains:

<?php
    echo sqlite_libversion();
    echo "<br>";
    echo phpinfo();
    echo "test";
?>

Nothing gets outputed on the browser. I've followed this tutorial as well: Installing Lamp

4

1 回答 1

0

也许您的防火墙已打开?

请停止 iptables(Redhat/debian) 或 firewalld(fedora)

#service iptables stop

并再次检查

你应该安装 sqlite 包。

在 Redhat 之类的系统上

#yum install php5-sqlite

在 Debian/ubunutu 上

#apt-get install php5-sqlite
于 2013-10-26T08:46:39.660 回答